forked from selombanybah/Learncode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlc.css
More file actions
96 lines (77 loc) · 1.69 KB
/
Copy pathlc.css
File metadata and controls
96 lines (77 loc) · 1.69 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
93
94
95
96
body {
overflow-x: hidden;
overflow-y: hidden;
background-color: #272822;
}
.header {
padding: 15px;
color: #404040;
}
p {
font-weight: 500;
padding: 15px;
}
.lc_head *{
padding:4px;
padding-left: 6px;
border-bottom: 2px white;
}
.lc_nav {
height: 100%;
border-right: 5px solid #212121;
overflow: scroll;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e0e0e0+100 */
background: rgb(255,255,255); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(224,224,224,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(224,224,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(224,224,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */
}
.lc_con {
background-color:#272822;
height: 100%;
}
.lc_con .CodeMirror {
height: 90%;
}
.toastSuccess {
background-color:#4caf50 ;
}
.toastFailure {
background-color:#c62828 ;
}
.toastHint {
color: #000;
background-color:#fff;
}
.lc_theory {
font-weight: 500;
padding: 15px;
}
.lc_task {
font-weight: 500;
padding: 15px;
}
.lc_task h5 {
}
.lc_task p {
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-button {
width: 6px;
height:5px;
}
::-webkit-scrollbar-track {
background:#eee;
border: thin solid lightgray;
box-shadow: 0px 0px 3px #dfdfdf inset;
}
::-webkit-scrollbar-thumb {
background:#d9d9d9;
border: thin solid gray;
}
::-webkit-scrollbar-thumb:hover {
background:#d9d9d9;
}