-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (69 loc) · 1.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
* {
font-size: 40px;
font-family: 'Pacifico', cursive;
text-align: center;
background: whitesmoke;
}
body {
margin: auto;
width: 90vw;
}
#game div {
border: 1px solid none;
width: 20vw;
height: 3em;
margin: 10px;
display: inline-block;
border-radius: 5px;
background: lightgray;
transform: scale(0.9); /* Animation */
transition: transform 0.2s;
perspective: 1000px;
backface-visibility: hidden;
}
#game div:hover {
transform: scale(1);
}
button {
font-family: 'Bakbak One', cursive;
font-size: 0.6em;
color: rgb(59, 47, 167);
padding: 0.3em;
border: 2px solid rgb(59, 47, 167);
border-radius: 16px;
}
button:hover {
background: rgb(59, 47, 167);
color: white;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
#restartGame {
display: none;
transform: scale(0.6);
}
/* #alert {
position: absolute;
top: 25%;
left: 15vw;
margin: 35px;
width: 60vw;
height: 200px;
background-color: cadetblue;
text-align: center;
}
#alert-text,
h1 {
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
text-align: center;
color: rgb(236, 226, 213);
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
}
reset {
width: 50%;
height: 40%;
font-size: 1.5rem;
border: solid rgb(236, 226, 213);
background-color: transparent;
} */