-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 749 Bytes
/
style.css
File metadata and controls
52 lines (44 loc) · 749 Bytes
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
body {
background-color: #0e1217;
color: #fff;
}
main {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.card {
border: 1px solid grey;
padding: 24px;
border-radius: 10px;
background-color: rgb(56, 56, 56);
}
.grid {
display: grid;
gap: 10px;
grid-template-columns: repeat(4, 1fr);
}
button {
width: 64px;
height: 64px;
font-size: 1.5rem;
font-weight: bold;
border-radius: 100%;
cursor: pointer;
}
h1 {
text-align: right;
}
.orange {
background-color: rgb(255, 149, 3);
color: #fff;
}
.gray {
background-color: rgb(128, 128, 128);
color: #fff;
}
.gray-num {
background-color: rgb(97, 97, 97);
color: #fff;
}