-
Notifications
You must be signed in to change notification settings - Fork 61
/
style.css
108 lines (92 loc) · 1.56 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
max-width: 600px;
margin: 50px auto 300px;
font-family: sans-serif;
line-height: 1.6;
}
h2 {
border-top: 4px solid #eee;
padding-top: 40px;
margin-top: 40px;
text-transform: uppercase;
letter-spacing: 1px;
}
h2 span {
font-family: georgia, serif;
font-style: italic;
font-size: 18px;
font-weight: normal;
color: #999;
display: inline-block;
margin-left: 10px;
margin-top: 5px;
text-transform: lowercase;
}
p {
color: #666;
}
.boxes {
height: 50px;
margin-bottom: 20px;
}
.box {
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
border-radius: 3px;
margin-right: 20px;
color: #fff;
font-size: 24px;
font-weight: 300;
float: left;
background-color: hsla(44, 85%, 58%, 1);
position: relative;
}
.box:nth-child(1) {
background-color: hsla(40, 85%, 58%, 1);
}
.box:nth-child(2) {
background-color: hsla(36, 87%, 58%, 1);
}
.box:nth-child(3) {
background-color: hsla(32, 87%, 58%, 1);
}
.box:nth-child(4) {
background-color: hsla(28, 87%, 58%, 1);
}
.box:nth-child(5) {
background-color: hsla(24, 87%, 58%, 1);
}
ul {
list-style: none;
margin: 0;
padding: 0;
margin-bottom: 20px;
}
li {
background-color: #eee;
border-radius: 2px;
margin-bottom: 10px;
padding: 10px;
}
.lead{
font-size: 18px;
font-weight: bold;
}
.blue,
li a {
color: #4285f4;
}
input {
border: 2px solid #999;
padding: 10px 20px;
font-size: 16px;
margin-bottom: 30px;
border-radius: 3px;
box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
outline: none;
}
input:focus {
border-color: #4285f4;
}