-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
142 lines (122 loc) · 2.63 KB
/
Copy pathstyle.css
File metadata and controls
142 lines (122 loc) · 2.63 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
: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;
overflow-y: auto;
}
#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;
}
.component-btn {
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;
text-align: left;
}
.component-btn:hover, .component-btn.active {
background-color: #e7f1ff;
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;
position: relative;
z-index: 20;
}
#export-btn {
margin-left: auto;
width: auto;
padding: 5px 15px;
background-color: var(--primary-blue);
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#properties-panel label {
display: block;
margin-top: 15px;
font-weight: 500;
}
#properties-panel input {
width: calc(100% - 10px);
margin-top: 5px;
padding: 5px;
}
.menu-item {
position: relative;
display: inline-block;
}
.menu-btn {
cursor: pointer;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 100;
border-radius: 4px;
padding: 5px 0;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
}
.show {
display: block;
}