-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (86 loc) · 1.84 KB
/
style.css
File metadata and controls
91 lines (86 loc) · 1.84 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body{
background-image: url("memphis-pattern_1045-810.png");
}
@font-face{
src:url("fredoka-one-v7-latin-regular.woff");
font-family: 'XOXO';
}
@font-face{
src: url("roboto-mono-v7-latin-regular.woff");
font-family: 'GameFont';
}
.copy{
position: relative;
display: inline-block;
height: 30px;
background-color: springgreen;
margin-top:30px;
width: 40%;
font-size:62%;
text-align: center;
vertical-align: middle;
border-radius: 8px;
overflow: auto;
}
.gameTitle{
font-family: 'XOXO';
font-size: 60px;
border-bottom:20px solid springgreen;
width: 40%;
margin:auto;
}
*{
text-align: center;
font-weight: 700;
font-family: 'GameFont';
font-size: 30px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}
button{
border-radius: 8px;
color:#45ff8f;
background-color: #00010f;
border:none;
outline: none;
margin-bottom:20px;
cursor: pointer;
}
.tabletic{
padding-left: auto;
padding-right: auto;
margin: auto;
}
.tabletic td{
background-color: #45ff8f;
height: 75px;
width: 75px;
text-align: center;
font-weight: 700;
font-family: 'XOXO';
font-size: 50px;
border-radius: 20px;
transition-duration: 0.5s;
box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
}
.tabletic td:active{
font-size:60px;
transform: scale(1.05);
transition-duration: 0.2s;
}
#score{
border-radius: 8px;
color:#45ff8f;
background-color: #00010f;
border:none;
outline: none;
padding-left: auto;
padding-right: auto;
width: 40%;
margin: auto;
margin-top: 50px;
}