-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
66 lines (55 loc) · 900 Bytes
/
index.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
body {
background-color: #d3d3d3;
display: flex;
align-items: center;
}
button {
margin: 5px;
width: 80%;
}
input {
margin: 5px;
width: 80%;
}
.leaderBoardPanel {
padding-left: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.startGame {
height: 50px;
width: 80px;
}
.shadow {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.gapRight {
margin-right: 10px;
}
.game {
background-color: #70c5ce;
}
.pipe {
fill: url(#pipeGradient);
stroke: black;
}
.cloud {
fill: white;
stroke: black;
stroke-width: 0.5;
}
@font-face {
font-family: Freshman;
src: url(./Assets/Freshman.ttf);
}
.score {
font-family: Freshman;
font-size: 30px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}