main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
1.7 KB
|
Line | |
---|
1 | .openButton {
|
---|
2 | padding: 10px 20px;
|
---|
3 | font-size: 16px;
|
---|
4 | background-color: #007bff;
|
---|
5 | color: white;
|
---|
6 | border: none;
|
---|
7 | border-radius: 5px;
|
---|
8 | cursor: pointer;
|
---|
9 | margin-top: 2em;
|
---|
10 | transition: background-color 0.3s ease;
|
---|
11 | }
|
---|
12 |
|
---|
13 | .openButton:hover {
|
---|
14 | background-color: #0056b3;
|
---|
15 | }
|
---|
16 |
|
---|
17 | .modalBackground {
|
---|
18 | position: fixed;
|
---|
19 | top: 0;
|
---|
20 | left: 0;
|
---|
21 | width: 100%;
|
---|
22 | height: 100%;
|
---|
23 | background-color: rgba(0, 0, 0, 0.5);
|
---|
24 | display: flex;
|
---|
25 | justify-content: center;
|
---|
26 | align-items: center;
|
---|
27 | z-index: 1000;
|
---|
28 | }
|
---|
29 |
|
---|
30 | .modalContent {
|
---|
31 | background-color: white;
|
---|
32 | padding: 20px;
|
---|
33 | border-radius: 10px;
|
---|
34 | width: 80%;
|
---|
35 | max-width: 600px;
|
---|
36 | position: relative;
|
---|
37 | }
|
---|
38 |
|
---|
39 | .heading {
|
---|
40 | font-size: 24px;
|
---|
41 | font-weight: bold;
|
---|
42 | margin-bottom: 15px;
|
---|
43 | color: #333;
|
---|
44 | }
|
---|
45 |
|
---|
46 | .cardContainer {
|
---|
47 | display: flex;
|
---|
48 | flex-wrap: wrap;
|
---|
49 | gap: 15px;
|
---|
50 | margin-top: 15px;
|
---|
51 | }
|
---|
52 |
|
---|
53 | .card {
|
---|
54 | background-color: #f9f9f9;
|
---|
55 | border: 1px solid #ddd;
|
---|
56 | border-radius: 8px;
|
---|
57 | padding: 15px;
|
---|
58 | flex: 1 1 calc(50% - 20px); /* Adjust the width for two columns */
|
---|
59 | max-width: calc(50% - 20px);
|
---|
60 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
---|
61 | }
|
---|
62 |
|
---|
63 | .cardTitle {
|
---|
64 | font-size: 18px;
|
---|
65 | font-weight: bold;
|
---|
66 | margin-bottom: 10px;
|
---|
67 | }
|
---|
68 |
|
---|
69 | .cardContent {
|
---|
70 | margin-bottom: 5px;
|
---|
71 | font-size: 14px;
|
---|
72 | color: #555;
|
---|
73 | }
|
---|
74 |
|
---|
75 | .cardFooter {
|
---|
76 | font-size: 12px;
|
---|
77 | color: #666;
|
---|
78 | }
|
---|
79 |
|
---|
80 | .noReports {
|
---|
81 | font-size: 16px;
|
---|
82 | color: #999;
|
---|
83 | text-align: center;
|
---|
84 | width: 100%;
|
---|
85 | }
|
---|
86 |
|
---|
87 | .closeButton {
|
---|
88 | margin-top: 15px;
|
---|
89 | padding: 10px 20px;
|
---|
90 | font-size: 16px;
|
---|
91 | background-color: #dc3545;
|
---|
92 | color: white;
|
---|
93 | border: none;
|
---|
94 | border-radius: 5px;
|
---|
95 | cursor: pointer;
|
---|
96 | transition: background-color 0.3s ease;
|
---|
97 | }
|
---|
98 |
|
---|
99 | .closeButton:hover {
|
---|
100 | background-color: #a71d2a;
|
---|
101 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.