-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (51 loc) · 758 Bytes
/
style.css
File metadata and controls
60 lines (51 loc) · 758 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
body {
font-family: Arial;
font-size: 14px;
}
.header {
min-height: 100px;
background-color: #EEE;
}
.container {
display: flex;
min-height: 400px;
}
.container__content {
flex: 1;
background-color: #DDD;
padding: 10px;
}
.container__sidebar {
width: 300px;
background-color: #D1D1D1;
padding: 10px;
}
.footer {
min-height: 100px;
background-color: #EEE;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
background-color: purple;
display: inline-block;
font-size: 20px;
margin-right: 10px;
margin-bottom: 10px;
border-radius: 33%;
padding-left: 5px;
padding-right: 5px;
}
a {
color: yellow;
text-decoration: none;
}
li:hover {
background-color: yellow;
}
li:hover a {
color: purple;
}