-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (91 loc) · 1.74 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (91 loc) · 1.74 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #333642;
}
.container {
height: 100vh;
width: 100vw;
display: grid;
}
.container.view1 {
grid-template-rows: repeat(2, 1fr);
grid-gap: 10px;
}
.container.view2 {
grid-template-columns: repeat(2, 1fr);
grid-gap: 10px;
}
.coder {
display: grid;
padding: 10px;
}
.coder.view1 {
height: 100%;
width: 100%;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
}
.coder.view2 {
height: 100vh;
width: 100%;
grid-template-rows: repeat(3, 1fr);
grid-gap: 20px;
}
.code-editor {
height: 100%;
width: 100%;
}
.code {
background-color: #1D1E22;
height: 100%;
width: 100%;
}
.code-type {
font-family: 'Roboto', sans-serif;
color: white;
height: fit-content;
width: 100%;
background-color: #1A1B1F;
padding: 10px;
border-bottom: 1px solid #333642;
}
.ace_gutter {
background-color: #1D1E22 !important;
}
.ace_gutter-cell.ace_gutter-active-line.ace_info {
background-color: #1D1E22 !important;
}
.ace-nord-dark .ace_gutter-active-line {
background-color: #1D1E22 !important;
}
.output {
background-color: #1D1E22;
}
.virtual-iframe {
height: 100%;
width: 100%;
}
.change-layout {
position: absolute;
height: fit-content;
width: fit-content;
border-radius: 7px;
background-color: #444857;
font-family: 'Roboto', sans-serif;
color: white;
padding: 10px 20px;
margin: auto;
bottom: 15px;
left: 15px;
cursor: pointer;
z-index: 20;
user-select: none;
}
.change-layout:hover {
background-color: #2d303a;
}