-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
65 lines (57 loc) · 886 Bytes
/
style.scss
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
body {
background: rgb(163, 163, 163);
}
table,
thead,
tr,
th,
td {
border: 1px solid black;
border-collapse: collapse;
text-align: center;
}
th {
color: white;
padding: 5px;
}
table {
background-color: rgb(230, 230, 230);
min-width: 1500px;
width: 100%;
}
thead {
background: rgba(0, 36, 168, 0.653);
border-bottom: 2px solid rgb(255, 0, 170);
}
#sort {
text-align: center;
outline: 0;
border: 1px solid;
margin-bottom: 10px;
padding: 8px 8px;
border-radius: 3px;
color: white;
background-color: rgb(7, 79, 173);
max-width: 200px;
font-size: 20px;
cursor: pointer;
}
.container {
display: grid;
justify-content: center;
margin-inline: auto;
width: 1500px;
overflow: scroll;
}
.active_btn {
background-color: teal;
}
#slotBtn {
display: flex;
margin-top: 10px;
gap: 5px;
}
button {
padding: 15px;
width: 40px;
}