-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (45 loc) · 968 Bytes
/
style.css
File metadata and controls
51 lines (45 loc) · 968 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
tr,
td {
border: solid 1px rgb(255, 255, 200);;
padding: 20px;
background-color: rgb(44, 44, 44);
border-radius: 8px;
white-space: nowrap;
transition: 0.3s;
}
table {
border: solid 2px rgb(255, 255, 180);
padding: 4px;
/* border-collapse: collapse; */
border-radius: 15px;
cursor: default;
user-select: none;
}
* {
font-family: 'Noto Sans Thai', sans-serif;
font-family: 'Mitr', sans-serif;
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 16px;
}
body {
background-color: rgb(24, 24, 24);
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
transition: 0.1s;
flex-direction: column;
}
tr,td:hover {
padding: 40px;
background-color: rgb(22, 22, 22);
font-size: 20px;
}
body:has(tr:hover) {
background-color: white;
}
.warning-container{margin-bottom: 20px;}
.warning-container > i {font-size: 80px}