-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
60 lines (52 loc) · 831 Bytes
/
app.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* app css stylesheet */
.header{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 10%;
background-color: rgb(43, 74, 99);
color: white;
text-align: center;
}
.menu {
position: fixed;
top: 58px;
left: 0;
width: 100%;
height: 3%;
background-color: rgb(248, 249, 250);
color: white;
text-align: left;
list-style: none;
border-bottom: 0px solid rgb(120, 120, 120);
margin-bottom: 2em;
padding: 10px 20px 10px;
}
.menu:before {
content: "|";
}
.menu:after {
content: "|";
}
.menu > li {
display: inline;
}
.menu > li + li:before {
content: "|";
padding-right: 0.3em;
}
.view {
position: fixed;
left: 0;
top: 120px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(120, 120, 120);
color: white;
text-align: center;
}