-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
98 lines (86 loc) · 1.48 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
padding: 20px;
max-width: 600px;
margin: 0 auto;
}
.container {
justify-content: center;
background-color: #1e1e1e;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
position: relative;
}
.header {
display: flex;
}
.back-button {
position: absolute;
color: #86d;
cursor: pointer;
transition: color 0.25s;
top: 15px;
left: 15px;
}
h1 {
text-align: center;
flex: 1;
color: #fff;
margin: 0px;
}
.subtitle {
color: #aaa;
text-align: center;
padding: 0px;
margin-bottom: 0px;
margin-top: 7.5px;
}
.button-container {
margin-top: 20px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
justify-content: center;
}
.button {
color: #fff;
padding: 10px;
border-radius: 5px;
text-align: center;
cursor: pointer;
text-decoration: none;
transition: background-color 0.25s;
}
.disabled {
background-color: #444;
color: #7f7f7f;
cursor: not-allowed;
}
/* Button colours */
.purple {
background-color: #86d;
}
.purple:hover {
background-color: #65c;
}
.pink {
background-color: #ff66b2;
}
.pink:hover {
background-color: #FF1A8C;
}
.blurple {
background-color: #5865F2;
}
.blurple:hover {
background-color: #4A57D3;
}
.grey {
background-color: #7f7f7f;
}
.grey:hover {
background-color: #666;
}