-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
69 lines (60 loc) · 1.21 KB
/
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
64
65
66
67
68
69
h1 {
color: rgb(0, 77, 112);
font-family: Haettenschweiler, 'Arial Narrow Bold', sans-serif;
margin-bottom: 0px;
}
h2 {
color: rgb(28, 139, 190);
font-family: Haettenschweiler, 'Arial Narrow Bold', sans-serif;
margin-bottom: 6px;
}
h4 {
margin-bottom: 3px;
}
h7 {
font-weight: bold;
font-size: 20px;
}
p {
margin-top: 0px;
margin-bottom: 3px;
}
.spacer {
margin-top: 0px;
margin-bottom: 20px;
}
.button2048 {
background-color: rgb(229, 202, 68);
color: white;
height: 64px;
width: 64px;
border-radius: 8px;
border-width: 0px;
font-size: 15px;
cursor: pointer;
transition: opacity 0.2s,
background-color 0.2s,
box-shadow 0.2s;
}
.button2048:hover {
opacity: 0.8;
background-color: rgb(27, 56, 205);
box-shadow: 3px 3px 1px rgba(50, 50, 50, 0.2);
}
.blueButton {
background-color: rgb(46, 170, 168);
color: white;
height: 36px;
width: 62px;
border-radius: 2px;
border-width: 0px;
font-size: 15px;
cursor: pointer;
transition: opacity 0.2s,
background-color 0.2s,
box-shadow 0.2s;
}
.blueButton:hover {
opacity: 0.9;
box-shadow: 3px 3px 0px rgb(57, 76, 171);
}