-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (60 loc) · 1.19 KB
/
styles.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
audio {
display: none;
}
body {
font-family: 'Press Start 2P', cursive;
margin: 0;
padding: 0;
background-color: #000;
color: #fff;
}
header {
background-color: #3498db;
color: #fff;
padding: 10px;
text-align: center;
}
.user-info {
display: flex;
justify-content: space-between;
padding: 10px;
}
/* Add this style to strikeout text */
.strike {
text-decoration: line-through;
}
.level-timeline {
display: flex;
flex-direction: row; /* Arrange buttons in a row */
justify-content: space-between; /* Add space between buttons */
align-items: center;
padding: 20px;
}
button {
font-family: 'Press Start 2P', cursive;
font-size: 16px;
padding: 10px 20px;
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:disabled {
background-color: #555;
cursor: not-allowed;
}
button:hover {
background-color: #45a049;
}
/* Add more styling as needed */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}