-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
134 lines (111 loc) · 1.76 KB
/
main.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Open+Sans:400,700);
*{
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
}
body {
min-height: 100%;
font-family: 'Droid Serif', serif;
font-size: 18px;
background-color: #ffffff;
}
header {
box-sizing: border-box;
background-color: #610047;
width: 100%;
height: 100%;
text-align: center;
padding-top: 150px;
}
header h1 {
font-size: 4em;
font-family: 'Open Sans', sans-serif;
color: #ff9b9d;
line-height: 1.75em;
text-transform: uppercase;
}
header p {
font-size: 1.75em;
font-family: 'Open Sans', sans-serif;
color: #ff1962;
line-height: 1.5em;
}
header img {
height: 300px;
}
#about {
position: relative;
box-sizing: border-box;
width: 900px;
height: 100%;
margin: 0 auto;
padding-top: 150px;
}
#about h2 {
font-size: 1.5em;
}
#about p {
font-size: 1.5em;
line-height: 1.75em;
padding-bottom: 30px;
}
.button {
padding: 5px 20px;
border: 2px solid #ff1962;
border-radius: 4px;
text-decoration: none;
font-size: 1.25em;
line-height: 5em;
}
.button:hover {
background-color: #ff1962;
color: #ffffff;
}
#themes {
padding: 50px 0;
background-color: #f0f0f0;
}
.theme {
position: relative;
width: 900px;
margin: 0 auto;
padding: 50px 0;
}
h2 {
font-family: 'Open Sans', sans-serif;
text-transform: uppercase;
line-height: 3em;
color: #610047;
}
h3 {
color: #260024;
line-height: 3em;
}
.theme h2 a {
color: #610047;
text-decoration: none;
}
.theme h2 a:hover {
color: #ff1962;
}
.theme p {
color: #260024;
line-height: 3em;
padding: 5px 0;
}
.theme img {
padding: 30px 0;
}
a {
color: #ff1962;
}
a:hover {
color: #ff9b9d;
}
span.bold {
font-weight: 700;
}