-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
82 lines (68 loc) · 1.04 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
79
80
81
82
* {
margin: 0;
padding: 0;
}
img {
width: 50%;
}
body {
width: 100%;
height: 100vh;
background-color: black;
}
div img {
position: absolute;
}
.start {
position: relative;
height: 100%;
width: 100%;
}
.title {
top: 60px;
left: 0;
right: 0;
margin-inline: auto;
width: inherit;
}
.controls {
bottom: 0;
left: 10px;
width: 30%;
}
.toad {
bottom: 0;
right: 0;
}
.hidden {
display: none;
}
.button {
background-color: black;
border: 1.5px solid #981618;
border-radius: 8px;
color: white;
padding: 30px 40px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
font-family: 'Courier';
position: absolute;
top: 300px;
left: 600px;
right: 0;
width: max-content;
z-index: 100;
}
h3 {
font-size: 20px;
color: white;
position: absolute;
bottom: 10px;
right: 10px;
font-family: 'Courier New', Courier, monospace;
}
.button:hover {
background-color: #981618;
}