-
Notifications
You must be signed in to change notification settings - Fork 621
Expand file tree
/
Copy pathDrawing.razor.css
More file actions
47 lines (43 loc) · 919 Bytes
/
Drawing.razor.css
File metadata and controls
47 lines (43 loc) · 919 Bytes
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
.canvas-container {
position: relative;
}
.overlay-info {
position: absolute;
top: 12px;
left: 50%;
transform: translateX(-50%);
z-index: 1;
background: rgba(0, 0, 0, 0.5);
border: 1px solid rgba(0, 0, 0, 0.4);
border-radius: 8px;
padding: 6px 16px;
backdrop-filter: blur(4px);
color: white;
font-size: 0.85rem;
font-weight: 500;
}
.overlay-toolbar {
position: absolute;
bottom: 16px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
align-items: center;
z-index: 1;
background: rgba(0, 0, 0, 0.5);
border: 1px solid rgba(0, 0, 0, 0.4);
border-radius: 8px;
padding: 8px 16px;
backdrop-filter: blur(4px);
}
.color-swatch {
width: 26px;
height: 26px;
border-radius: 50%;
cursor: pointer;
border: 2px solid transparent;
}
.color-swatch.selected {
border-color: white;
}