Project

General

Profile

1
// styles applied on :host are applied on the current component, "app" in this case
2
:host {
3
  display: block;
4
}
5

    
6
header {
7
  background-color: #fff;
8
  padding: 16px;
9
  position: fixed;
10
  top: 0;
11
  left: 0;
12
  width: 100%;
13
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
14
}
15

    
16
main {
17
  padding: 1em;
18
  font-family: Arial, Helvetica, sans-serif;
19
  text-align: center;
20
  margin-top: 50px;
21
  display: block;
22
}
23

    
24
footer {
25
  text-align: center;
26
  font-size: 0.8em;
27
}
(3-3/7)