-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
58 lines (49 loc) · 871 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
body {
margin: 0;
padding: 0;
font-family: "Helvetica", "sans-serif";
text-align: center;
}
a {
text-decoration: none;
color: black;
}
header {
background: #f3976c;
}
header,
h1 {
text-align: center;
padding: 30px 0;
}
.div-choice {
display: flex;
justify-content: space-around;
padding: 30px 0;
}
.btn-main {
padding: 20px;
border-radius: 40px;
font-size: 16px;
box-shadow: 1px 1px 10px #202020;
text-transform: uppercase;
}
.btn-old {
border: 2px solid #f3976c;
background-color: #f3976c;
color: #fff;
}
.btn-old:hover {
background-color: white;
color: #f3976c;
box-shadow: 2px 2px 20px #404040;
}
.btn-new {
border: 2px solid #f3976c;
color: #f3976c;
}
.btn-new:hover {
background-color: #f3976c;
color: white;
box-shadow: 2px 2px 20px #404040;
}