-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
96 lines (80 loc) · 1.19 KB
/
main.css
File metadata and controls
96 lines (80 loc) · 1.19 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body {
font-family: 'Montserrat', sans-serif;
background-color: #111;
color: #fff;
}
.clear {
clear: both;
}
.logo {
float: left;
width: 15%;
}
.header {
background-color: #111;
padding: 3%;
color: #fff;
}
.header h1, p {
padding: 0 0 0 5%;
float: left;
width: 80%;
}
.buttons {
background-color: rgba(56, 79, 17, 0.55);
float: left;
width: 25%;
margin: 0 auto;
padding: 5% 0;
}
.buttons h1 {
text-align: center;
}
.button {
display: block;
color: #fff;
font-size: 1em;
border: 2px solid #fff;
border-radius: 10px;
background-color: transparent;
margin: 2% auto;
padding: 3%;
margin-bottom: 5%;
}
.button:active {
background-color: rgba(222,222,222,0.6);
}
.backImage {
background-image: url(img/blur.jpg);
background-size: cover;
}
.showBox {
float: left;
text-align: center;
width: 65%;
padding: 1% 5%;
}
.list {
clear: both;
}
.list li {
padding-right: 1em;
clear: both;
display: inline-block;
list-style: none;
font-size: 2em;
}
.swap {
color: #C40000;
}
.footer {
font-size: 0.8em;
width: 100%;
text-align: right;
padding-top: 5%;
}
.clearfix:after {
content: ' ';
display: block;
clear: both;
}