-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (89 loc) · 1.61 KB
/
style.css
File metadata and controls
93 lines (89 loc) · 1.61 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--botton-color: #363535;
}
header {
height: 70px;
background-color: rgb(14, 13, 13);
padding-top: 20px;
font-family: sans-serif;
padding-left: 30px;
color: white;
}
.container {
display: flex;
width: auto;
}
.editor {
flex:50;
height: 100%;
}
.code-editor {
height: 100%;
}
.selectLang {
background-color: #454545;
padding-left: 15px;
}
.lang {
display: inline-block;
margin: 3px 6px;
margin-bottom: 0;
padding: 10px;
font-family: sans-serif;
border-top: 4px solid var(--botton-color);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
cursor: pointer;
background-color: var(--botton-color);
}
.active {
border-top: 4px solid rgb(216, 177, 6);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: rgb(19, 18, 18);
color:white;
}
#runButton {
margin:5px 20px;
margin-bottom: 0;
padding: 9px 12px;
font-family: sans-serif;
color: white;
background-color: rgb(26, 224, 26);
box-shadow: 1px 3px 0 2px rgb(8, 53, 8);
border-radius: 5px;
cursor: pointer;
float: right;
}
.code {
background-color: rgb(19, 18, 18);
height: 83vh;
width: 100%;
color: rgb(177, 174, 9);
font-size: 20px;
padding: 5px;
overflow: auto;
outline: none;
}
.disableCode {
display: none;
}
#webview {
background-color: white;
height: 88vh;
width: 100%;
}
.output {
flex: 50;
padding: 5px;
height: 100%;
border: none;
}
textarea {
tab-size: 2;
}