-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebconsole.css
More file actions
79 lines (67 loc) · 1.09 KB
/
webconsole.css
File metadata and controls
79 lines (67 loc) · 1.09 KB
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
79
:root {
--background: white;
--focus: #f8f8f8;
--border: black;
--link: #808080;
--link-hover: #494949;
--text: black;
}
.dark {
--background: #242424;
--focus: #2f2f2f;
--border: black;
--link: #DBDBDB;
--link-hover: #494949;
--text: #DBDBDB;
}
#webconsole-out {
max-height: 85vh;
overflow: auto;
}
#webconsole-in {
width: 100%;
font-size: inherit;
background-color: var(--background);
border: none;
border-bottom: 0.15em solid var(--link);
outline: none;
color: inherit;
transition: 0.4s;
padding: 0.15em;
}
#webconsole-in:focus {
background: var(--focus);
}
* {
font-family: 'Source Code Pro', monospace;
}
.main, footer {
max-width: 40em;
margin: auto;
}
.main {
margin-top: 1vh;
padding: 1em;
border: 1px solid var(--border);
}
body {
color: var(--text);
background: var(--background);
transition: 0.4s;
}
a {
color: var(--link);
}
footer, footer a {
margin-top: 2em;
text-align: center;
}
a:hover {
color: var(--link-hover);
}
#toggle-theme {
cursor: pointer;
text-decoration: underline;
float: right;
margin-top: 0em;
}