-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (54 loc) · 1.05 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
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');
body {
font-family:'Space Mono', sans-serif;
background-color:rgb(216, 195, 195);
color:white;
}
h1 {
font-size:3rem;
}
h2 {
font-size:3.5rem;
}
#dontclickme {
background-color:rgb(255, 83, 83);
}
#nimage {
background-color:transparent;
box-shadow:0px 0px 0px 0px transparent;
}
img {
border-radius:20px;
transition:ease all 0.4s;
box-shadow:0px 1px 20px 0px rgba(0, 0, 0, 0.581);
}
img:hover {
transform:scale(95%);
box-shadow:0px 0px 0px 0px transparent;
}
button {
background-color:white;
color:black;
border-radius:5px;
padding-right:45px;
padding-left:45px;
padding-top:10px;
padding-bottom:10px;
transition:ease all 0.3s;
}
button:hover {
transform:scale(110%);
}
button:active {
transform:scale(95%);
}
#shop {
display:none;
}
#game {
display:block;
}
#ts {
font-size:1.5rem;
text-shadow:2px 2px 2px rgba(0, 0, 0, 0.581);
}