-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (62 loc) · 1.43 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
:root {
--build-bg-color: #42e8a6a6;
}
body {
font-family: "Helvetica", "Arial", sans-serif;
margin: 0;
overflow: hidden;
/* background-color: #42e8a6a6; */
user-select: none;
cursor: auto;
}
input {
/* font-family: Monaco, monospace; */
padding: 0px 4px;
font-size: 0.8em;
border: 1.1px #333 solid;
border-radius: 4px;
/* margin: 0.2em; */
/* width: 38px; */
}
.game-icon {
border-radius: 30px;
width: 350px;
height: 350px;
}
.game-title {
font-size: 30px;
color: #3239b294;
text-align: center;
}
.game-tile {
background-color: #3239b294;
height: 466px;
width: 350px;
color: #3239b294;
border-radius: 30px;
-webkit-animation: scale-down-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
animation: scale-down-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.game-tile:hover {
text-decoration: none;
-webkit-animation: scale-up-center 0. 3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
animation: scale-up-center 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.game-link {
height: 400px;
width: 300px;
}
#mySearch {
width: 100%;
text-align: center;
font-size: 18px;
padding: 11px;
border: 3px solid #ddd;
border-radius: 30px;
}
.center {
text-align: center;
}
.text-center {
text-align: center;
}