-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditorStyle.css
More file actions
92 lines (88 loc) · 1.57 KB
/
editorStyle.css
File metadata and controls
92 lines (88 loc) · 1.57 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
.code_editor-outer {
/* border: .1rem solid black; */
width: 90%;
margin: 2.5rem auto;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Bree Serif';
}
.code_editor-outer h1{
font-size: 4rem;
}
.code_editor-inner{
border: .1rem solid black;
background-color: grey;
padding: 3rem .75rem;
border-radius: .25rem;
}
.code_editor-box{
width: 100%;
height: 100%;
}
.code_editor-outer h1{
margin: 0 auto;
}
.code_editor-outer h3{
margin-top: 0;
}
.btn0{
font-family: 'Bree Serif';
padding: .125rem .75rem;
font-size: 1.25rem;
margin-right: .25rem;
}
.live{
display: flex;
align-items: center;
border: .25rem solid red;
background-color: white;
}
.live label{
font-size: 1.75rem;
font-weight: bold;
}
.editor_menu {
display: flex;
}
.container {
/* border: .1rem solid black; */
display: flex;
justify-content: space-between;
height: 100%;
margin-top: .25rem;
background-color: white;
border-radius: .25rem;
}
.bar {
/* width: .03125rem; */
width: .25px;
background-color: black
}
.left,
.right {
border: .1rem solid black;
width: 50%;
font-family: 'Fira Code';
font-weight: bold;
text-align: left;
}
.left{
border-radius: .25rem 0 0 .25rem;
border-left: .25rem solid green;
}
.right{
border-radius: 0 .25rem .25rem 0;
}
.editor {
height: 98%;
padding: .25rem;
outline: none;
}
iframe{
width: 100%;
height: 100%;
}