blob: 6a62cb5a046e959671b71c5e7f9e6d89d41f3ef1 (
plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
:root {
--primary-1: #97ca96;
--primary-2: #c6eec5;
--primary-3: #d5e9d5;
--border: #445e43;
}
* {
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: var(--primary-3);
width: 100%;
min-height: 100vh;
}
main {
padding: 8px;
}
header {
background: linear-gradient(0deg, var(--primary-1), var(--primary-2));
border-bottom: 1px solid var(--border);
display: flex;
flex-direction: row;
padding: 2px 8px;
}
header .brand {
display: flex;
flex-direction: row;
gap: 8px;
align-items: end;
}
header .brand>a {
text-decoration: none;
color: black;
font-size: 12px;
}
.box {
background: var(--primary-1);
border: 1px solid var(--border);
padding: 8px;
border-radius: 4px;
}
.box:has(.content):has(.tab) {
background-color: unset;
border: unset;
padding: unset;
border-radius: unset;
}
.box>.tab {
display: inline-block;
background: var(--primary-1);
padding: 4px 8px;
border: 1px solid var(--border);
border-bottom: unset;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
margin-bottom: -1px;
}
.box>.content {
background: var(--primary-1);
border: 1px solid var(--border);
padding: 8px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.sound-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 16px;
}
.sound-item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.sound-item>.timestamp {
font-size: 12px;
}
.row {
display: flex;
flex-direction: row;
}
.column {
display: flex;
flex-direction: column;
}
.justify-center {
justify-content: center;
}
.align-center {
align-items: center;
}
.gap-8 {
gap: 8px;
}
.gap-16 {
gap: 16px;
}
|