~mika/www.m1kadev.nl

ref: 4651d7b67838db738cd487552f89f8b77dfdca56 www.m1kadev.nl/src/index.css -rw-r--r-- 1.1 KiB
4651d7b6 — m1kadev update build script; change colours 7 months ago
                                                                                
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
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1&family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --bg-colour: #272640;
    --txt-colour: #fae9d3;
}

body,
html {
    background-color: var(--bg-colour);
    margin: 0px;
}

h1 {
    margin: 0px;
}

#mark {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    display: inline-block;
    color: var(--txt-colour);
    margin-top: 1em;
    margin-left: 1em;
}

#mark>h3 {
    margin: 0px;
    text-align: right;
    font-weight: 300;
}

#mark>h1 {
    font-weight: 400;
}

#content {
    font-family: "Gothic A1", sans-serif;
    color: var(--txt-colour);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
}

#main-focus>h2 {
    font-weight: normal;
}

#main-focus>p {
    font-weight: lighter;
}

#main-focus {
    background-color: #00000080;
    width: 50vw;
    margin: auto;
    padding: 2em;
}

footer {
    display: flex;
    justify-content: space-between;
}

#lynx {
    justify-content: right;
}