Last change
on this file was d7b7f00, checked in by Gorazd Biskoski <gorazdbiskoskii@…>, 4 weeks ago |
Add project
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | .modalOverlay {
|
---|
2 | position: fixed;
|
---|
3 | top: 0;
|
---|
4 | left: 0;
|
---|
5 | right: 0;
|
---|
6 | bottom: 0;
|
---|
7 | background: rgba(0, 0, 0, 0.5);
|
---|
8 | display: flex;
|
---|
9 | align-items: center;
|
---|
10 | justify-content: center;
|
---|
11 | z-index: 1000;
|
---|
12 | }
|
---|
13 |
|
---|
14 | .modalContent {
|
---|
15 | background: white;
|
---|
16 | padding: 20px;
|
---|
17 | border-radius: 8px;
|
---|
18 | width: 400px;
|
---|
19 | text-align: center;
|
---|
20 | box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
|
---|
21 | }
|
---|
22 |
|
---|
23 | .modalButton {
|
---|
24 | margin-top: 15px;
|
---|
25 | padding: 8px 16px;
|
---|
26 | font-size: 0.9em;
|
---|
27 | border: none;
|
---|
28 | border-radius: 4px;
|
---|
29 | cursor: pointer;
|
---|
30 | transition: background-color 0.3s ease, transform 0.2s ease;
|
---|
31 | box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
|
---|
32 | }
|
---|
33 |
|
---|
34 | .modalButton:hover {
|
---|
35 | transform: scale(1.05);
|
---|
36 | }
|
---|
37 |
|
---|
38 | .modalButton:active {
|
---|
39 | transform: scale(0.95);
|
---|
40 | }
|
---|
41 |
|
---|
42 | .modalButtonClose {
|
---|
43 | background-color: #FFA550;
|
---|
44 | color: white;
|
---|
45 | margin: 10px;
|
---|
46 | }
|
---|
47 |
|
---|
48 | .modalButtonClose:hover {
|
---|
49 | background-color: #FF8C00;
|
---|
50 | }
|
---|
51 |
|
---|
52 | .modalButtonDelete {
|
---|
53 | background-color: #FF5A5F;
|
---|
54 | color: white;
|
---|
55 | }
|
---|
56 |
|
---|
57 | .modalButtonDelete:hover {
|
---|
58 | background-color: #FF3333;
|
---|
59 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.