summaryrefslogtreecommitdiffstats
path: root/nfsw/static/epilogue.css
blob: 8694d26d83075e5e5cbe2816a21cacc810e4f5a2 (plain) (blame)
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
/**
 * SPDX-License-Identifier: ISC
 *
 * Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
 *
 * This file is part of dingy.
 */

@font-face {
    font-family: roboto-black;
    src: url('/static/fonts/roboto-black.ttf');
}

@font-face {
    font-family: roboto-regular;
    src: url('./fonts/roboto-regular.ttf');
}

body {
    background-color: rgb(0, 0, 0);
    color: rgb(250, 250, 250);
}

.epilogue-wrapper {
    display: none;
}

.epilogue-grid,
.noscript-grid {
    display: grid;
    grid-template-rows: 29vh 160px 29vh;
    grid-template-columns: auto 300px auto;
}

.epilogue-grid-item,
.noscript-grid-item {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
}

.epilogue-content {
    font-family: roboto-black;
    text-align: center;
}

.epilogue-content header h1 {
    font-size: 75px;
    margin-bottom: 10px;
}

.epilogue-content header h2 {
    font-size: 20px;
}