-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
55 lines (48 loc) · 953 Bytes
/
styles.css
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
body {
min-width: 400px;
max-height: 600px;
overflow-y: auto;
}
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.modal-content {
width: 90%;
max-width: 500px;
}
.form-input, .form-textarea, .form-select {
width: 100%;
padding: 0.5rem;
border: 1px solid #e2e8f0;
border-radius: 0.375rem;
margin-top: 0.25rem;
}
.bookmark-item {
background: white;
padding: 1rem;
border-radius: 0.5rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.workspace-item, .folder-item {
background: white;
padding: 0.75rem;
border-radius: 0.375rem;
margin-bottom: 0.5rem;
cursor: pointer;
transition: all 0.2s;
}
.workspace-item:hover, .folder-item:hover {
background: #f7fafc;
}
.hidden {
display: none;
}