-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
executable file
·91 lines (77 loc) · 1.38 KB
/
main.css
File metadata and controls
executable file
·91 lines (77 loc) · 1.38 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
83
84
85
86
87
88
89
90
91
body {
background-image: linear-gradient(#d1dbbd, #fcfff5);
background-repeat: no-repeat;
color: #3e606f;
font: normal 18px "Roboto Condensed", sans-serif;
}
header {
box-sizing: border-box;
display: flex;
justify-content: space-between;
margin: 0 auto;
padding: 20px 20px 0;
width: 960px;
}
h1 {
background-image: url("logo.png");
background-repeat: no-repeat;
color: #193441;
font-size: 36px;
font-weight: normal;
padding: 45px 0 15px 110px;
}
nav {
padding-top: 75px;
}
nav li {
display: inline-block;
}
nav a {
background-color: #fcfff5;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
color: #91aa9d;
display: block;
padding: 10px 40px 14px 40px;
text-decoration: none;
}
nav a.active {
background-color: #91aa9d;
color: #fcfff5;
}
main {
background-color: #fff;
box-shadow: 0px 5px 5px #b5b5b5;
box-sizing: border-box;
margin: 0 auto;
padding: 30px 30px 45px;
width: 960px;
}
main::after {
clear: both;
content: "";
display: block;
}
img.masthead {
margin-bottom: 40px;
}
h2 {
font-size: 32px;
font-weight: normal;
margin-bottom: 25px;
}
p {
margin: 20px 0;
}
figure {
float: right;
font-size: 0;
padding-left: 30px;
}
footer {
margin: 15px auto 35px;
width: 960px;
}
small {
font-size: 14px;
}