main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 2 weeks ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Rev | Line | |
---|
[79a0317] | 1 | .modalBackground {
|
---|
| 2 | position: fixed;
|
---|
| 3 | top: 0;
|
---|
| 4 | left: 0;
|
---|
| 5 | width: 100vw;
|
---|
| 6 | height: 100vh;
|
---|
| 7 | background: rgba(0, 0, 0, 0.5);
|
---|
| 8 | display: flex;
|
---|
| 9 | justify-content: center;
|
---|
| 10 | align-items: center;
|
---|
| 11 | z-index: 1000;
|
---|
| 12 | }
|
---|
| 13 |
|
---|
| 14 | .modalContent {
|
---|
| 15 | background: white;
|
---|
| 16 | padding: 20px;
|
---|
| 17 | border-radius: 8px;
|
---|
| 18 | width: 400px;
|
---|
| 19 | box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
---|
| 20 | animation: fadeIn 0.3s ease-out;
|
---|
| 21 | }
|
---|
| 22 | .reportButton {
|
---|
| 23 | background: none;
|
---|
| 24 | border: none;
|
---|
| 25 | cursor: pointer;
|
---|
| 26 | display: flex;
|
---|
| 27 | align-items: center;
|
---|
| 28 | justify-content: center;
|
---|
| 29 | padding: 0;
|
---|
| 30 | outline: none;
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | .reportIcon {
|
---|
| 34 | width: 40px;
|
---|
| 35 | height: 40px;
|
---|
| 36 | transition: transform 0.2s ease;
|
---|
| 37 | }
|
---|
| 38 |
|
---|
| 39 | .reportButton:hover .reportIcon {
|
---|
| 40 | transform: scale(1.1);
|
---|
| 41 | background: none;
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 |
|
---|
| 45 | .inputField,
|
---|
| 46 | .textareaField {
|
---|
| 47 | width: 100%;
|
---|
| 48 | padding: 10px;
|
---|
| 49 | margin-bottom: 10px;
|
---|
| 50 | border: 1px solid #ccc;
|
---|
| 51 | border-radius: 4px;
|
---|
| 52 | font-size: 14px;
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | .textareaField {
|
---|
| 56 | height: 100px;
|
---|
| 57 | resize: none;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | .buttonGroup {
|
---|
| 61 | display: flex;
|
---|
| 62 | justify-content: flex-end;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | .submitButton {
|
---|
| 66 | background: #4caf50;
|
---|
| 67 | color: white;
|
---|
| 68 | border: none;
|
---|
| 69 | padding: 10px 15px;
|
---|
| 70 | border-radius: 4px;
|
---|
| 71 | cursor: pointer;
|
---|
| 72 | margin-right: 10px;
|
---|
| 73 | }
|
---|
| 74 |
|
---|
| 75 | .cancelButton {
|
---|
| 76 | background: #f44336;
|
---|
| 77 | color: white;
|
---|
| 78 | border: none;
|
---|
| 79 | padding: 10px 15px;
|
---|
| 80 | border-radius: 4px;
|
---|
| 81 | cursor: pointer;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 |
|
---|
| 85 |
|
---|
| 86 | @keyframes fadeIn {
|
---|
| 87 | from {
|
---|
| 88 | opacity: 0;
|
---|
| 89 | }
|
---|
| 90 | to {
|
---|
| 91 | opacity: 1;
|
---|
| 92 | }
|
---|
| 93 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.