-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (101 loc) · 1.66 KB
/
style.css
File metadata and controls
119 lines (101 loc) · 1.66 KB
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
body {
background: #0e1117;
color: #e6edf3;
font-family: Arial, sans-serif;
padding: 20px;
}
h1 { color: #4fd1c5; }
.subtitle {
color: #9da7b3;
margin-bottom: 20px;
}
section {
margin-bottom: 20px;
}
.bias {
border: 1px solid #30363d;
padding: 12px;
border-radius: 6px;
background: #111827;
}
.bias-form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-top: 10px;
}
.bias-form label {
display: flex;
flex-direction: column;
font-size: 0.95em;
}
.bias-form input, .bias-form select {
margin-top: 6px;
padding: 6px 8px;
border-radius: 4px;
border: 1px solid #2d3748;
background: #0b1220;
color: #e6edf3;
}
.bias-form button {
grid-column: 1 / -1;
justify-self: start;
margin-top: 6px;
}
.bias-log {
margin-top: 12px;
border-top: 1px dashed #24303a;
padding-top: 10px;
}
.bias-log .log-controls {
display: flex;
gap: 8px;
margin-bottom: 8px;
}
.bias-log ul {
list-style: none;
padding-left: 0;
max-height: 220px;
overflow: auto;
}
.bias-log li {
padding: 6px 8px;
border-radius: 4px;
background: rgba(255,255,255,0.02);
margin-bottom: 6px;
font-size: 0.95em;
}
button {
background: #2563eb;
border: none;
color: white;
padding: 10px 14px;
border-radius: 6px;
cursor: pointer;
}
button:hover {
background: #3b82f6;
}
.content {
display: none;
margin-top: 10px;
padding: 12px;
border: 1px solid #30363d;
border-radius: 6px;
}
.box {
border: 1px solid #374151;
padding: 10px;
margin-bottom: 10px;
background: #020617;
}
video {
max-width: 700px;
width: 100%;
margin: 10px 0;
border-radius: 6px;
}
.footer {
margin-top: 30px;
font-size: 0.9em;
}