summaryrefslogtreecommitdiffstats
path: root/nfsw/static/terms.css
blob: 6ec8aa7d7dc24123d87af0f4fb4c65900d7f9fb9 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
 * 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-medium;
    src: url('/static/fonts/roboto-medium.ttf');
}

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

.terms-grid {
    display: grid;
    grid-template-rows: auto 100vh auto;
    grid-template-columns: auto 500px auto;
}

.terms-grid-item {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
}

header h1, header h2 {
    font-family: roboto-black;
}

p, .agree {
    font-family: roboto-regular;
}


.button-group {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}

input[type="submit"] {
    font-family: roboto-medium;
    font-size: 16px;
    border: 1px solid rgb(10, 10,10);
    background-color: rgb(10,10,10);
    color: rgb(240,240,240);
    border-radius: 5px;
    padding: 8px 10px 8px 10px;
    cursor: pointer;

}

@media (min-width: 100px) and (max-width: 650px) {
    .terms-grid {
        grid-template-columns: auto 85vw auto;
    }

    .button-group {
        flex-direction: column;
    }

    .button {
        width: 75vw;
    }
}