-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (42 loc) · 660 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (42 loc) · 660 Bytes
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
.header{
overflow: hidden;
background-color: #f1f1f1;
padding: 20px 10px;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header a.active {
background-color: dodgerblue;
color: white;
}
.header-right {
float: right;
}
.content{
padding: 1px 16px;
height: 1000px;
width:100%;
background-color: #aaa;
}
.footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height:5%;
background-color: #f1f1f1;
color: black;
text-align: center;
}