-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
63 lines (53 loc) · 929 Bytes
/
main.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
* {
padding: 0;
margin: 0;
}
html, body {
width: 100%;
height: 100%;
background-color: #d7d7d8;
}
h1 {
margin-bottom: 20px;
font-family: 'Pacifico', cursive;
}
.container {
margin-top: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.buttons {
display: flex;
flex-wrap: wrap;
}
.btn:disabled {
opacity: 0.5;
}
.btn {
position: relative;
padding: 10px 40px;
margin: 0px 10px 10px 0px;
float: left;
border-radius: 10px;
font-family: 'Pacifico', cursive;
font-size: 25px;
color: #FFF;
text-decoration: none;
}
.btn:active {
transform: translate(0px,5px);
-webkit-transform: translate(0px,5px);
border-bottom: 1px solid;
}
.green {
background-color: #82BF56;
border-bottom: 5px solid #669644;
text-shadow: 0px -2px #669644;
}
.red {
background-color: #E74C3C;
border-bottom: 5px solid #BD3E31;
text-shadow: 0px -2px #BD3E31;
}