-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (44 loc) · 932 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
body{
background-color: lemonchiffon;
}
#btn{
text-align: center;
margin: auto;
margin-top: 100px;
font-size: 150px;
font-family: "Londrina Solid", cursive;
background-color: lightcyan;
display: block;
}
#btn:active{
margin-top: 105px;
}
#btn{
cursor: pointer;
}
#cst{
font-size: 75px;
}
#score{
margin-top: 50px;
}
#time{
margin-top: 30px;
}
.hthree{
font-size: 50px;
}
.text{
margin: auto;
text-align: center;
font-family: "Hachi Maru Pop", cursive;
}
/* Makes text unselectable, credits to StackOverflow */
.noselect {
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}