-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (50 loc) · 911 Bytes
/
style.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
body {
margin: 0px;
font-family: "Raleway",sans-serif;
}
.header {
width: 100%;
height: 50px;
background: #111;
display: flex;
justify-content: center;
align-items: center;
}
.header button{
padding: 10px 20px;
background: #f5f5f5;
color: #111;
font-size: 16px;
font-weight: 600;
border: none;
outline: none;
border-radius: 0px;
cursor: pointer;
}
.editor {
width: 100%;
height: calc(100vh - 50px);
display: flex;
}
.editor .code{
width: 500px;
border-right: 1px solid #888;
}
.editor .code > div {
width: 100%;
height: 33.33%;
border-bottom: 1px solid #888;
}
.editor .preview{
width: calc(100% - 500px);
height: 100%;
}
.editor .preview iframe{
width: 100%;
height: 100%;
border: none;
outline: none;
}
.CodeMirror {
height: auto;
}