blob: 9149aefc06663f2fb8a7732b63165d2da6ec3991 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// styles applied on :host are applied on the current component, "app" in this case
:host {
display: block;
}
header {
background-color: #fff;
padding: 16px;
position: fixed;
top: 0;
left: 0;
width: 100%;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
main {
font-family: Arial, Helvetica, sans-serif;
display: block;
}
footer {
text-align: center;
font-size: 0.8em;
}
|