-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
126 lines (118 loc) · 2.23 KB
/
Copy pathindex.css
File metadata and controls
126 lines (118 loc) · 2.23 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body{
color: #e7e7e7;
font-family: monospace;
background: #111111;
margin: auto;
padding: 1em;
max-width: 1920px;
}
.separator{
height: 0.1em;
}
.hideable{
}
.hidden{
max-height: 0 !important;
overflow: hidden;
}
.readme{
color: #e7e7e7;
background: none;
/* border: solid #272727 3px; */
border-radius: 5px;
padding: 0 1em;
margin: 0 0 0.5em 0;
overflow: hidden;
}
.problem{
height: calc( 100vh - 8em );
}
footer{
color: #e7e7e7;
background: none;
/* border: solid #272727 3px; */
border-radius: 5px;
padding: .5em 1em;
margin: 0.5em 0 0.5em 0;
overflow: hidden;
text-align: center;
}
:any-link{
color: inherit;
}
:any-link:hover{
color: green;
}
.code-box{
font-family: monospace;
padding: 0;
color: #e7e7e7;
background: #272727;
border: solid #272727;
border-radius: 3px 3px 0 0;
box-sizing: border-box;
height: 60%;
overflow: hidden;
display: flex;
flex-direction: column;
}
.code-box-header{
box-sizing: border-box;
padding: .5em 1em;
border-bottom: solid 1px #e7e7e7;
}
.code-box-scroll{
box-sizing: border-box;
display: block;
padding: 0em 2em;
margin: .2em 0 0 0;
overflow: auto;
}
code{
font-family: monospace;
}
.console-box{
border: solid #272727;
background: #272727;
color: #e7e7e7;
font-family: monospace;
padding: 0;
border-radius: 0 0 3px 3px;
box-sizing: border-box;
height: 40%;
overflow: hidden;
display: flex;
flex-direction: column;
}
.console-box-header{
padding: .5em 1em;
border-bottom: solid 1px #e7e7e7;
}
.console-holder{
height: calc( 100% - 2em );
overflow: hidden;
}
.console{
height: 100%;
display: block;
width: 100%;
outline: none;
border: none;
overflow: auto;
margin: .2em 0 0 0;
}
/* SCROLLBARS */
::-webkit-scrollbar {
width: .4em;
height: .4em;
}
::-webkit-scrollbar-track {
display: none;
}
::-webkit-scrollbar-thumb {
background-color: #e7e7e7;
border-radius: 5px;
}
::-webkit-scrollbar-corner{
display: none;
}