-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (63 loc) · 1.15 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #333;
color: #F4F4F4;
}
img {
position: absolute;
top: 40%;
left: 49%;
transform: translate(-50%, -50%);
max-width: 100%;
max-height: 50vh;
width: auto;
height: auto;
z-index: 1;
border: 0;
margin: 0;
padding: 0;
display: block;
background: transparent;
transition-duration: .4s;
cursor: pointer;
}
img:active {
transform: translate(-50%, -50%) scale(1.1);
}
h1 {
text-align: center;
margin-top: 5vh;
}
#upgradeButtons {
position: absolute;
top: 80%;
right: 50%;
transform: translate(50%, -50%);
display: flex;
gap: 20px;
}
#upgradeButtons > button {
background: #ddb800;
color: #333;
border: 0;
padding: 1vh 2vh;
font-size: 1.5em;
cursor: pointer;
transition-duration: .4s;
}
#upgradeButtons > button:hover {
background: #c6a501;
}
#upgradeButtons > button:active {
background: #836d00;
}
a {
color: #ccccff;
text-decoration: underline;
position: absolute;
top: 90%;
right: 50%;
transform: translate(50%, -50%);
}