-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (76 loc) · 1.11 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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-size: 18px;
font-family: 'Roboto', sans-serif;
background: #f4f4f4;
margin: 0;
}
h1 {
font-family: 'Fredoka One', cursive;
font-size: 50px;
letter-spacing: 4px;
}
header {
text-align: center;
background: #fff;
margin-bottom: 30px;
padding: 20px;
}
.logo {
display: block;
margin: 0 auto;
}
.pane {
width: 32%;
padding: 10px;
background: #fff;
border-radius: 3px;
margin: 5px;
flex: 1;
box-shadow: 0 0 10px #ddd;
}
.pane:hover {
background: #5e889e;
box-shadow: 0 0 10px #eee;
color: #fff;
}
h3 {
margin: 0;
}
.pane h3 {
display: block;
background: #5e889e;
height: 40px;
text-align: center;
color: #fff;
line-height: 40px;
font-size: 20px;
font-weight: normal;
}
.pane a {
text-decoration: none;
color: #000;
}
section,
footer {
max-width: 800px;
margin: 0 auto;
}
footer {
text-align: center;
}
section {
display:flex;
justify-content: space-between;
}
p {
line-height: 150%;
font-size: 16px;
}
.center {
text-align: center;
}