-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
228 lines (192 loc) · 3.47 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/* Fonts */
@font-face {
font-family: 'HelveticaNeue';
src: url('./fonts/HelveticaNeue.eot');
src: local('HelveticaNeue'),
url('./fonts/HelveticaNeue.woff') format('woff'),
url('./fonts/HelveticaNeue.ttf') format('truetype');
}
body {
font-family: Georgia, "Times New Roman", Times, serif;
color: #000;
/*background-color: #E4E4E4;*/
font-size: 1.15em;
padding: 0px;
margin: 0px;
background: #43cea2;
background: -webkit-linear-gradient(to bottom, #43cea2 , #185a9d);
background: linear-gradient(to bottom, #43cea2 , #185a9d);
}
.brand-text {
color: #fff;
font-family: "HelveticaNeue";
}
#logo {
width: 80%;
margin: 0px auto;
z-index: 1;
}
#logo img {
display: inline-block;
width: 50px;
margin: 25px 0px;
}
#logo span {
display: inline-block;
vertical-align: top;
margin: 0;
line-height: 100px;
font-size: 40px;
margin-left: 20px;
font-weight: normal;
}
#site {
width: 80%;
background-color: white;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
padding-top: 10px;
border-color: #b9bebc;
border-width: 1px;
border-style: solid;
margin: 0px auto 0px auto;
-moz-border-radius:8px;
-webkit-border-radius:8px;
box-sizing: border-box;
}
#footer {
text-align: right;
padding-top: 10px;
width: 80%;
margin: 0px auto 65px auto;
}
#footer img {
width: 25px;
display: inline-block;
vertical-align: top;
}
#footer span {
font-size: 25px;
display: inline-block;
vertical-align: top;
line-height: 25px;
margin-left: 10px;
}
h1 {
font-size: 1.3em;
}
h2 {
font-size: 1.2em;
margin-bottom: 7px;
margin-top: 35px;
font-family: Helvetica, Arial, sans-serif;
}
p {
word-break: break-word;
}
.boxed {
padding-left: 15px;
padding-bottom: 10px;
padding-right: 10px;
padding-top: 10px;
font-size: 1.3em;
border-color: #cdcac8;
border-width: 1px;
border-style: solid;
color: black;
background-color: #fefce9;
-moz-border-radius:4px;
-webkit-border-radius:4px;
}
.bigger {
font-size: 1.4em;
}
li {
margin-bottom:.5em;
}
/* For smaller devices */
@media (max-width: 768px) {
#logo {
padding: 0px 30px;
}
#logo img {
width: 40px;
margin: 30px 0px;
}
#logo span {
font-size: 26px;
margin-left: 10px;
}
#site {
width: 100%;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
}
h1 {
font-size: 1em;
}
h2 {
font-size: 0.9em;
}
.bigger {
font-size: 1.1em;
}
.boxed {
font-size: 1em;
}
}
/* Carbon */
p.center {
text-align: center;
}
#carbonads {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#carbonads {
display: flex;
max-width: 330px;
background-color: hsl(0, 0%, 98%);
box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
}
#carbonads a {
color: inherit;
text-decoration: none;
}
#carbonads a:hover {
color: inherit;
}
#carbonads span {
position: relative;
display: block;
overflow: hidden;
}
#carbonads .carbon-wrap {
display: flex;
}
.carbon-img {
display: block;
margin: 0;
line-height: 1;
}
.carbon-img img {
display: block;
}
.carbon-text {
font-size: 13px;
padding: 10px;
line-height: 1.5;
text-align: left;
}
.carbon-poweredby {
display: block;
padding: 8px 10px;
background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
text-align: center;
text-transform: uppercase;
letter-spacing: .5px;
font-weight: 600;
font-size: 9px;
line-height: 1;
}