-
Notifications
You must be signed in to change notification settings - Fork 0
/
editor-main.css
83 lines (67 loc) · 1.71 KB
/
editor-main.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
75
76
77
78
79
80
81
82
83
/* Copyright (c) 2022 arminsarkozi (MIT License): https://raw.githubusercontent.com/arminsarkozi/html-css-javascript-editor/main/LICENSE */
/* ==== GENERAL STYLES ==== */
* {
box-sizing: border-box;
}
fieldset[class="editor"], #editor-A001Beta-html, #editor-A001Beta-css, #editor-A001Beta-javascript, fieldset[class="editor"] > legend, body[id="editor-A001Beta-BODY"] {
background-color: rgb(50, 45, 45);
color: white;
}
fieldset[class="editor"] > legend {
border-radius: 4px;
}
#editor-result-embed-A001Beta, #editor-result-parent-element-A001Beta, #editor-result-parent-element-A001Beta > legend {
background-color: white;
color: black;
}
#editor-result-parent-element-A001Beta > legend {
border-radius: 4px;
}
.editor {
display: inline-block;
width: calc(100% / 3 - 1%);
height: 45vh;
outline: none;
margin-bottom: 2%;
}
@media screen and (max-width: 768px) {
.editor {
display: block;
width: 100%;
margin-bottom: 9px;
}
}
.editor textarea {
width: 100%;
height: 100%;
}
#editor-result-embed-A001Beta {
width: 100%;
height: 58vh;
border: 1.8px solid black;
}
#copyProjectLink-A001 {
margin: 10px;
margin-left: 0;
padding: 6px;
background-color: rgb(111, 177, 207);
border: none;
cursor: pointer;
font-weight: 700;
}
#copyProjectLink-A001:hover {
background-color: rgb(69, 122, 172);
}
#path-label-project-link {
display: none;
}
#license-text-A001 {
margin-top: 20px;
margin-bottom: 20px;
}
#license-text-A001 > label, #license-text-A001 > label > a {
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px;;
font-weight: 400;
}