-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (69 loc) · 1.16 KB
/
style.css
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
html, body {
margin: 0;
padding: 0;
background-color: black;
color: white;
font-family: DejaVu Sans Mono, monospace;
}
.scrollback {
flex: 1;
white-space: pre-line;
border: 1px solid #ccc;
padding: 5px;
font-size: 16px;
font-family: sans-serif;
line-height: 1.4;
height: 150px;
overflow: none;
}
.scrollback > kbd {
font-family: inherit;
font-weight: bold;
}
.scrollback > kbd::before {
content: '> ';
display: inline;
}
.Modal {
position:fixed;
bottom: 10px;
top: 10px;
left: 10px;
right: 10px;
display: flex;
/* width: 50vw; */
justify-content: center;
/* align-content: center; */
flex-direction: column;
}
.Modal-content {
margin: 0 auto;
/* max-width: 80%; */
}
input {
color: white;
background-color: black;
/* border: 0px; */
width: 100%;
padding-left: 20px;
}
.input-left {
position: relative;
}
.input-left::before {
content: '> ';
color: white;
display: block;
position: absolute;
top: 0px;
left: 5px;
}
input:focus {
outline-width: 0;
}
.picture {
width: 554px;
height: 305px;
image-rendering: pixelated
}
.border { border-width: 1px; border-color: white; border-style: solid; }