-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
29 lines (29 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
29 lines (29 loc) · 1.26 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
body, html {
margin: 0; padding: 0; height: 100%; font-family: 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #ff00cc 0%, #333399 100%);
background-attachment: fixed; color: white;
}
.container { display: flex; flex-direction: column; height: 100vh; padding: 20px; box-sizing: border-box; }
header { text-align: center; margin-bottom: 10px; }
.toolbar {
display: flex; gap: 10px; margin-bottom: 10px; padding: 15px; border-radius: 15px;
background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px);
}
.toolbar button, .toolbar select {
padding: 8px 15px; border-radius: 8px; border: none;
background: rgba(255, 255, 255, 0.3); color: white; cursor: pointer; font-weight: bold;
}
select {
background: #4a148c !important;
color: white !important;
border: 1px solid rgba(255, 255, 255, 0.5) !important;
}
select option { background: #311b92; color: white; }
main { display: flex; flex: 1; overflow: hidden; }
#editor {
flex: 1; width: 100%; height: 100%; padding: 20px; border-radius: 15px;
background: #1e1e1e !important;
color: #d4d4d4;
border: 2px solid rgba(255, 255, 255, 0.2);
font-family: 'Consolas', 'Monaco', monospace; font-size: 14px; resize: none; outline: none;
}