-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (96 loc) · 1.67 KB
/
Copy pathstyles.css
File metadata and controls
111 lines (96 loc) · 1.67 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
.color-picker-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 2147483647;
}
.color-picker-container {
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
min-width: 300px;
}
.color-picker-header {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: #333;
text-align: center;
}
.color-picker-body {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.color-circle {
width: 80px;
height: 80px;
border-radius: 50%;
border: 3px solid #ddd;
cursor: pointer;
transition: transform 0.2s;
}
.color-circle:hover {
transform: scale(1.05);
}
.hex-input-container {
display: flex;
align-items: center;
gap: 10px;
width: 100%;
justify-content: center;
}
.hex-input-container label {
font-weight: 500;
color: #555;
}
.hex-input {
padding: 8px 12px;
border: 2px solid #ddd;
border-radius: 6px;
font-size: 14px;
width: 120px;
text-align: center;
font-family: monospace;
}
.hex-input:focus {
outline: none;
border-color: #4caf50;
}
.button-container {
display: flex;
gap: 10px;
margin-top: 10px;
}
.apply-btn,
.cancel-btn {
padding: 10px 20px;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: background-color 0.2s;
}
.apply-btn {
background-color: #4caf50;
color: white;
}
.apply-btn:hover {
background-color: #45a049;
}
.cancel-btn {
background-color: #f44336;
color: white;
}
.cancel-btn:hover {
background-color: #da190b;
}