summaryrefslogtreecommitdiffstats
path: root/nfsw/static/io.css
blob: de7483086e145623229a254651bc6394d9843804 (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
@font-face {
    font-family: noto-mono;
    src: url('/static/fonts/noto-mono.ttf');
}

body {
    font-family: noto-mono;
    font-size: 0.88em;
    overflow: hidden;
    margin: 0 0 0 0;
}

.io-block {
    height:98vh;
    display:flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.console {
    overflow-y: auto;
    flex: 1 0 80vh;
    margin-left: 15px;
    margin-bottom: 10px;
}

.console pre.concierge {
    font-family: noto-mono;
    margin: 0 0 0 0;
    border-left: 2px solid rgb(180,180,240);
    padding-left: 5px;
}

.console pre.error {
    margin: 0 0 0 0;
    border-left: 2px solid rgb(240,180,180);
    padding-left: 5px;
}

.console pre.blank {
    margin: 0 0 0 0;
    border-left: 2px solid rgb(255,255,255);
    padding-left: 5px;
}

.prompt {
    flex: 1 0 auto;
}

.prompt form {
    display:flex;
    flex-direction: row;
    justify-content: center;

    height: 98%;
}

.prompt input {
    width: 95%;
    height: 98%;
    font-size: 1.2em;
    padding-left: 5px;
    border: 2px solid rgb(230,230,230);
    font-family: noto-mono;
}

.prompt input:focus {
    outline-width: 0px;
}