-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (87 loc) · 1.76 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (87 loc) · 1.76 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
97
98
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #1e1e1e, #3e3e3e);
color: white;
transition: background 0.5s ease;
}
.hidden {
display: none;
}
.editor-mode {
width: 100%;
height: 80vh;
}
.sed {
display: flex;
height: 80vh;
width: 100%;
}
.editor-column {
flex: 1;
display: flex;
flex-direction: column;
height: 100%;
}
.editor-label {
padding: 6px;
background: #2c2c2c;
font-weight: bold;
text-align: center;
border-bottom: 1px solid #444;
}
.editor-box {
flex: 1;
height: 100%;
overflow: hidden;
}
.CodeMirror {
height: 100% !important;
width: 100% !important;
font-size: 14px;
background-color: #1e1e1e;
color: white;
}
.custom-select-wrapper {
display: inline-block;
position: relative;
font-family: Arial, sans-serif;
}
.custom-select-wrapper select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
padding: 10px 16px 10px 16px;
font-size: 16px;
border-radius: 8px;
background-color: #333;
color: #f9f9f9;
cursor: pointer;
outline: none;
transition: border 0.3s ease;
}
.custom-select-wrapper::after {
content: "▼";
position: absolute;
right: 14px;
top: 50%;
transform: translateY(-50%);
font-size: 16px;
color: darkslateblue;
pointer-events: none;
}
.custom-select-wrapper select:hover {
border-color: darkslateblue;
}
.custom-select-wrapper select:focus {
border-color: darkslateblue;
box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
}
/* @import url(./components/css/header.css); */
/* @import url(./components/css/layout.css); */
/* @import url(./components/css/editor.css); */
/* @import url(./components/css/output.css); */
/* @import url(./components/css/setting.css); */