-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (57 loc) · 801 Bytes
/
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
body {
font-family: 'Open Sans', sans-serif;
}
a {
text-decoration: none;
}
#main {
text-align: center;
}
h1 {
font-size: 36px;
font-size: 5.4vw;
}
h3 {
font-size: 20px;
font-size: 3vw;
}
h5{
font-size: 12px;
font-size: 1vw;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0;
}
.hasImage {
width: 5vw;
}
.buttonWrapper {
width: 600px;
margin: 0 auto;
overflow: hidden;
}
.btn {
border-radius: 5px;
color: #fff;
font-size: 30px;
font-size: 1.5vw;
position: relative;
display: inline-block;
background-color: #2ecc71;
}
.btn_big {
padding: 20px 30px;
padding: 1vw 1.5vw;
margin: 20px;
margin: 1vw;
}
.btn_small {
padding: 10px 15px;
padding: 0.5vw 0.75vw;
margin: 10px;
margin: 0.5vw;
}
.btn:hover {
background-color: #48E68B;
}