-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeplayer.css
71 lines (50 loc) · 893 Bytes
/
codeplayer.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
body {
margin: 0;
}
.col {
padding-right: 0.5%;
}
.textarea {
resize: none;
margin: 0;
height: 79vh;
border-radius: 1%;
font-size: 15px;
}
iframe {
height: 79vh;
width: 100%;
border: 1px dashed black;
border-radius: 1%;
}
.hidden {
display: none;
}
.ace_editor.fullScreen {
height: auto;
width: auto;
border: 0;
margin: 0;
position: fixed !important;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 10;
}
.fullScreen {
overflow: hidden
}
::-webkit-scrollbar {
width: 0.5em;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
background: rgba(100, 100, 100, 0.8);
}
::-webkit-scrollbar-corner,
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(100, 100, 100, 0.4);
}