-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (65 loc) · 1.09 KB
/
style.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
61
62
63
64
65
body {
margin: 0 auto;
padding: 1em;
background-color: #C2CAD0;
}
h1, h2, h3, a {
color: #7E685A;
}
.header img {
float: left;
margin-right: 1em;
}
.nav {
float: right;
}
.nav ul, footer ul {
list-style-type: none;
}
.nav li {
display: inline-block;
margin-right: 1.5em;
font-size: 1.5em;
text-transform: uppercase;
}
.section {
padding: 1em;
width: 50%;
float: left;
box-sizing: border-box;
}
.aside-left {
background-color: #AFD275;
border: 0.1em solid #334499;
padding: 1em;
width: 25%;
float: left;
box-sizing: border-box;
}
.aside-left img {
max-width: 100%;
}
.aside-right {
background-color: #AFD275;
border: 0.1em solid #334499;
padding: 1em;
width: 25%;
float: right;
box-sizing: border-box;
}
.aside-right img {
max-width: 100%;
}
.footer:before {
content: "";
display: table;
clear: both;
}
.footer {
width: 100%;
text-align: center;
}
.footer li {
display: inline-block;
margin-right: 1.5em;
}