-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
37 lines (30 loc) · 1.34 KB
/
Copy pathstyle.css
File metadata and controls
37 lines (30 loc) · 1.34 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
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;
}
.container { display: flex; flex-direction: column; height: 100vh; padding: 20px; box-sizing: border-box; }
header { color: white; text-align: center; margin-bottom: 10px; }
.toolbar {
display: flex; gap: 10px; margin-bottom: 10px;
padding: 10px; border-radius: 10px;
background: rgba(255, 255, 255, 0.2);
}
.toolbar button {
padding: 5px 15px; border-radius: 5px; border: none;
background: rgba(255, 255, 255, 0.3); color: white; cursor: pointer; font-weight: bold;
}
.toolbar button:hover { background: rgba(255, 255, 255, 0.5); }
main { display: flex; flex: 1; gap: 20px; overflow: hidden; }
#editor, #preview {
flex: 1; height: 100%; padding: 20px; border-radius: 15px;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
overflow-y: scroll;
}
#editor { border: none; outline: none; resize: none; font-family: monospace; font-size: 16px; color: white; }
#editor::placeholder { color: rgba(255, 255, 255, 0.6); }
#preview { background: rgba(255, 255, 255, 0.9); color: #333; }