-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
100 lines (82 loc) · 1.45 KB
/
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
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
93
94
95
96
97
98
99
100
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #272822;
}
a {
color: inherit;
text-decoration: none;
border-bottom: 1px dotted #8E8F88;
}
a:hover {
color: #F8F8F2;
border-bottom: 1px solid #F8F8F2;
}
#editor {
margin: 0;
position: absolute;
top: 51px;
bottom: 0;
left: 0px;
right: 227px;
background: #272822;
}
.ace_gutter,
.ace_gutter-layer {
background: #2F3129;
}
.ace_gutter {
border-right: 1px solid #202020;
}
.ace_active-line {
background: rgba(0,0,0,.05) !important;
}
.Modal {
position: relative;
box-shadow: 2px 16px 60px 10px rgba(4,4,0,.8);
border-radius: 4px;
padding: 5px;
/*overflow: hidden;*/
top: 15% !important;
// height: 70%;
max-width: 600px;
// max-height: 70%;
background: #2F3129;
}
.Modal.hide {
opacity: 0;
}
.Overlay {
top: 51px;
//background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}
.scrollpane {
height: 100%;
}
.Modal .scrollbar-padding {
padding: 15px;
}
.scrollbar-handle {
background: rgba(140, 140, 130, .4);
}
::-webkit-scrollbar {
width: 7px;
height: 7px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-track:hover {
background: rgba(0, 0, 0, .15);
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background: #59584E;
}
::-webkit-scrollbar-corner,
::-webkit-scrollbar-thumb:window-inactive {
background: #59584E;
}