-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (84 loc) · 1.7 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
83
84
85
86
87
88
89
90
91
92
93
94
/* Normal tags */
body {
background-color: #0d0d0d;
font-family: 'Courier New', Courier, monospace;
}
h1 {
color: rgb(243, 134, 134);
}
ul {
list-style: none;
}
a {
color: #0d0d0d;
}
footer {
color: #0d0d0d;
background-color: rgb(66, 66, 66);
position: absolute;
bottom: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
padding: 5px;
font-size: 15px;
font-family: 'Courier New', Courier, monospace;
}
/* BIG wrappers */
#wholeWrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#mainWrapper {
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
}
/* buttons */
button {
width: 100px;
height: 30px;
border: 2px solid rgb(211, 211, 211);
background-color: #0d0d0d;
color: rgb(211, 211, 211);
border-radius: 8px;
font-family: 'Courier New', Courier, monospace;
}
button:hover {
width: 100px;
height: 30px;
border: 2px solid rgb(211, 211, 211);
background-color: rgb(211, 211, 211);
color: #0d0d0d;
border-radius: 8px;
font-family: 'Courier New', Courier, monospace;
}
button.active {
width: 100px;
height: 30px;
border: 2px solid rgb(211, 211, 211);
background-color: rgb(211, 211, 211);
color: #0d0d0d;
border-radius: 8px;
font-family: 'Courier New', Courier, monospace;
}
/* IDs */
#menu {
display: flex;
flex-direction: column;
align-items: center;
gap: 50px;
}
#grid {
background-color: rgb(211, 211, 211);
display: grid;
width: 500px;
height: 500px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}