summaryrefslogtreecommitdiff
path: root/main.css
blob: 7714273dab90919edf6961df5c5b5721b33652c7 (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
@font-face {
    font-family: "Iosevka Comfy";
    src: url("assets/iosevka-comfy-regular.ttf") format("truetype");
}

html {
    font-family: "Iosevka Comfy";
    font-size: 16pt;
}

html, body {
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
    width: 100%;
}

body.lcolonq-index {
    font-family: "Iosevka Comfy";
    font-weight: bold;
    color: black;
    user-select: none;
    image-rendering: pixelated;
    background-color: #eeeeee;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, grey 1px, transparent 1px),
        linear-gradient(to bottom, grey 1px, transparent 1px);
}

body.lcolonq-obs {
    background-color: rbga(0,0,0,0);
}

#lcolonq-title {
    position: absolute;
    top: 2rem;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    font-size: 20vw;
}

.lcolonq-letter {
    display: inline-block;
}

.lcolonq-letter:hover {
    color: #333333;
}

#lcolonq-subtitle {
    font-size: 5vw;
    margin-top: -5vw;
    margin-right: 12vw;
    text-align: right;
}

#lcolonq-header {
    background-color: #cccccf;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 2rem;
    border-bottom: 0.2rem ridge;
}

#lcolonq-header a {
    color: black;
}

#lcolonq-header marquee {
    color: black;
    padding-top: 0.4rem;
}

#lcolonq-footer {
    background-color: #cccccf;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 2rem;
    border-top: 0.2rem groove;
}

#lcolonq-footer a {
    display: inline-block;
    color: black;
    margin-top: 0.2rem;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    padding: 0.1rem;
    text-decoration: none;
    border: 0.1rem outset;
}

#lcolonq-footer a:active {
    border: 0.1rem inset;
}

#lcolonq-canvas {
    position: absolute;
    bottom: 2rem;
    left: 0px;
    width: 832px;
    height: 832px;
}

.right {
    float: right;
}