-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (54 loc) · 1.27 KB
/
style.css
File metadata and controls
61 lines (54 loc) · 1.27 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
:root {
--bg-dark: #1e1e1e;
--sidebar-bg: #2d2d2d;
--accent: #0078d4;
--text: #e0e0e0;
}
body {
margin: 0;
display: flex;
height: 100vh;
background-color: var(--bg-dark);
color: var(--text);
font-family: 'Segoe UI', sans-serif;
}
.sidebar {
width: 250px;
background: var(--sidebar-bg);
padding: 20px;
display: flex;
flex-direction: column;
gap: 15px;
border-right: 1px solid #444;
}
.control-group {
display: flex;
flex-direction: column;
gap: 5px;
}
.workspace {
flex-grow: 1;
display: flex;
justify-content: center;
align-items: center;
overflow: auto;
padding: 40px;
}
canvas {
box-shadow: 0 0 20px rgba(0,0,0,0.5);
background-image: linear-gradient(45deg, #333 25%, transparent 25%),
linear-gradient(-45deg, #333 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #333 75%),
linear-gradient(-45deg, transparent 75%, #333 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
button {
background: var(--accent);
color: white;
border: none;
padding: 10px;
cursor: pointer;
border-radius: 4px;
}
button:hover { background: #005a9e; }