forked from iamshaunjp/CSS-Variables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
83 lines (69 loc) · 1.11 KB
/
styles.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* --- Variables --- */
/* --- Main styles --- */
h1, h2, h3{
font-weight: normal;
}
body{
margin: 0;
font-family: Verdana;
}
nav.main-nav ul{
width: 600px;
margin: 30px auto;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
list-style-type: none;
padding: 0;
text-align: center;
}
nav a{
color: #daa33e;
}
.banner{
background: #3e84da;
color: #fff;
font-size: 1.6em;
text-align: center;
padding: 100px 0 160px;
}
.content{
width: 760px;
margin: 0 auto;
position: relative;
top: -100px;
padding: 40px 60px;
background: #fff
}
.spot{
margin: 0 40px 80px;
text-align: center;
}
.spot h2{
color: #3e84da;
}
.spot p{
color: #333;
line-height: 2em;
font-size: 0.9em
}
.content a{
color: #daa33e;
font-size: 1.2em;
}
footer{
background: #ddd;
padding: 60px 0
}
footer .blurbs{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
max-width: 760px;
margin: 0 auto;
grid-gap: 40px;
}
footer .blurb{
text-align: center;
color: #333;
line-height: 2em;
font-size: 0.9em
}