blob: e9098f299ee29b62eede6bb8ce1349bd14eb1e9b (
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
|
/* Sidebar and channel selector */
#sidebar {
background-color: var(--colour-background-alt);
}
.list-nav ul {
padding: 0.5rem;
}
.list-nav li {
padding: 0.5rem;
border-radius: 0.5rem;
border: 1px solid var(--colour-border);
margin: 0.25rem;
}
.list-nav li.active {
background-color: var(--colour-okay);
}
.list-nav li:hover {
background-color: var(--colour-warn);
}
/* create channel form */
.create-channel form {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
}
.create-channel input {
padding: 0.5rem;
border-radius: 0.5rem 0 0 0.5rem;
border: 1px solid var(--colour-border);
z-index: 1; /* Just to make the focus-active border go over the following button. */
flex-grow: 1;
background-color: var(--colour-text);
color: var(--colour-background);
}
.create-channel button {
border-radius: 0 0.5rem 0.5rem 0;
border: 1px solid var(--colour-border);
background-color: var(--colour-text);
color: var(--colour-background);
}
/* TODO: media-query stuff. Margin-left at a constant zero? */
|