-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS
More file actions
108 lines (94 loc) · 1.9 KB
/
Copy pathCSS
File metadata and controls
108 lines (94 loc) · 1.9 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
99
100
101
102
103
104
105
106
107
108
:root {
--primary-blue: #007bff;
--secondary-green: #28a745;
--neutral-gray-light: #f8f9fa;
--neutral-gray-medium: #e9ecef;
--neutral-gray-dark: #6c757d;
--text-color: #212529;
}
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
background-color: var(--neutral-gray-medium);
color: var(--text-color);
overflow: hidden;
}
.app-container {
display: flex;
height: 100vh;
}
.sidebar {
background-color: var(--neutral-gray-light);
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
z-index: 10;
}
#component-library {
width: 200px;
}
#inspector-panel {
width: 250px;
}
#component-library h3, #inspector-panel h3 {
margin-top: 0;
border-bottom: 1px solid var(--neutral-gray-medium);
padding-bottom: 10px;
}
.component-group {
margin-top: 20px;
}
button {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid var(--neutral-gray-medium);
background-color: white;
border-radius: 5px;
cursor: pointer;
font-family: 'Inter', sans-serif;
font-weight: 500;
}
button:hover {
background-color: var(--neutral-gray-light);
border-color: var(--primary-blue);
}
#workspace {
flex-grow: 1;
display: flex;
flex-direction: column;
}
#top-menu {
background-color: white;
padding: 10px 20px;
border-bottom: 1px solid var(--neutral-gray-medium);
display: flex;
gap: 20px;
align-items: center;
}
#top-menu span {
cursor: pointer;
}
#export-btn {
margin-left: auto;
width: auto;
padding: 5px 15px;
background-color: var(--primary-blue);
color: white;
border: none;
}
#canvas {
width: 100%;
height: 100%;
}
#properties-panel label {
display: block;
margin-top: 15px;
font-weight: 500;
}
#properties-panel input {
width: calc(100% - 10px);
margin-top: 5px;
padding: 5px;
}