-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (32 loc) · 576 Bytes
/
style.css
File metadata and controls
35 lines (32 loc) · 576 Bytes
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
/* ===== GENERAL ===== */
body, html {
font-family:'Gotham Rounded A', 'Gotham Rounded B', sans-serif;
font-size: 24px;
}
div {
background-color: #E0E0E0;
padding: 10px 10px 10px 10px;
margin: 10px 10px 10px 10px;
width: 500px;
display: inline-block;
}
div.gr {
background-color: #4CAF50;
color: #fff;
padding: 10px;
float: left;
width: 100px;
}
div.rd {
color: #fff;
float: left;
background-color: #AF4C50;
padding: 10px;
width: 100px;
}
div.bl {
color: #fff;
background-color: #4C50AF;
padding: 10px;
width: 200px;
}