summaryrefslogtreecommitdiffstats
path: root/src/css/code-viewer.css
blob: 40b5114487db1c1fa7334ceb686c596158e0a1a0 (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
body {
    border: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
        height: 100svh;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100vw;
    }
#header {
    background-color: var(--cm-gutter-surface);
    border-bottom: 1px solid var(--surface-1);
    padding: var(--default-gap-xsmall);
    position: relative;
    z-index: 1000000;
    }
#header input[type="url"] {
    box-sizing: border-box;
    font-size: var(--font-size-smaller);
    width: 100%;
    }
#header:focus-within #pastURLs {
    display: flex;
    }
#currentURL {
    display: flex;
    gap: 0.5rem;
    }
#currentURL > .fa-icon {
    padding: 0 0.5rem;
    }
#currentURL > .fa-icon:hover {
    background-color: var(--surface-3);
    }
#pastURLs {
    background-color: var(--surface-0);
    border: 1px solid var(--border-1);
    display: none;
    flex-direction: column;
    font-size: var(--font-size-smaller);
    position: absolute;
    }
#pastURLs > span {
    cursor: pointer;
    overflow: hidden;
    padding: 2px 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75vw;
    }
#pastURLs > span.selected {
    font-weight: bold;
    }
#pastURLs > span:hover {
    background-color: var(--surface-1);
    }
#content {
    flex-grow: 1;
    }

.cm-href {
    cursor: pointer;
    }
.cm-href:hover {
    text-decoration: underline;
    }