-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
66 lines (56 loc) · 1005 Bytes
/
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
html, body{
height: 100%;
width: 100%;
padding: 0px;
margin: 0px;
}
.navbar{background: rgb(0, 0, 0);}
.row{
height: 92.7%;
margin-bottom: -3%;
}
#editor-side{
height: 100%;
padding: 0px !important;
border-right: 2px solid #333;
box-sizing: border-box;
}
#html-box, #css-box, #js-box{
height: 33.33%;
box-sizing: border-box;
}
.box-heading{
padding: 3px 0 3px 20px;
background-color: #333;
color: white;
}
#html-editor, #css-editor, #js-editor{
height: 87.3%;
width: 100%;
font-size: 14px;
}
::-webkit-scrollbar {
width: 0.9em;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
background: rgba(100, 100, 100, 0.7);
}
::-webkit-scrollbar-corner,
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(100, 100, 100, 0.4);
}
#preview-box{
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
#preview-target{
height: 95.7%;
width: 100%;
border: none;
margin-bottom: -0.6%;
}