forked from Codi-B07/HTML-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
82 lines (68 loc) · 1.21 KB
/
stylesheet.css
File metadata and controls
82 lines (68 loc) · 1.21 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
* {box-sizing: border-box;}
body {
background-color: #f1f1f1;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.header {
overflow: hidden;
background-color: #f1f1f1;
padding: 20px 10px;
}
.header a {
float: left;
color: black;
text-align: center;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
padding-top: 20px;
padding-bottom: 10px;
padding-left: 150px;
padding-right: 60px;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: rgba(221, 221, 221, 0.747);
color: black;
}
.header a.active {
background-color: dodgerblue;
color: white;
}
.header-right {
float: right;
}
footer {
text-align: center;
padding: 3px;
background-color: rgb(122, 161, 233);
color: rgb(255, 255, 255);
}
.header-right {
float: none;
}
ol {
list-style-type: none;
margin: 777;
padding: 0;
background-color: #f1f1f1;
}
li a {
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}
li a.active {
background-color: #4c77af;
color: white;
}
li a:hover:not(.active) {
background-color: #555;
color: white;
}