-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
76 lines (64 loc) · 1.07 KB
/
main.css
File metadata and controls
76 lines (64 loc) · 1.07 KB
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
@import url(http://fonts.googleapis.com/css?family=Slabo+13px|Stint+Ultra+Expanded);
body {
font-family: Arial;
color: #FFF;
text-align: center;
background-color: #565656
}
ul {
list-style: none;
font-size: 24px;
font-family: 'Slabo 13px', serif;
text-align: center;
}
li {
display: inline;
padding: 10px;
}
p {
font-size: 14px;
text-align: left;
font-family: 'Slabo 13px', serif;
line-height: 1.65em;
word-spacing: .15em;
}
h1 {
font-size: 36px;
font-family: 'Stint Ultra Expanded', cursive;
}
h2 {
font-size: 18px;
font-family: 'Stint Ultra Expanded', cursive;
color: #19D1A3;
}
.change {
color: #EF5CEF;
}
.section {
width: 45%;
padding-top: 50px;
}
.left {
float: left;
padding-left: 20px;
}
.right {
float: right;
padding-right: 20px;
}
#sort {
padding: 10px 30px;
font-size: 14px;
margin-top: 5px;
border-radius: 15px;
border: 2px solid #FFF;
cursor: pointer;
background-color: #565656;
color: #FFF;
outline: 0;
font-family: 'Slabo 13px', serif;
}
#sort:hover {
background-color: #FFF;
color: #565656;
}