main
Last change
on this file was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago |
Pred finalna verzija
|
-
Property mode
set to
100644
|
File size:
2.3 KB
|
Line | |
---|
1 | .container {
|
---|
2 | max-width: 1200px;
|
---|
3 | margin: 0 auto;
|
---|
4 | padding: 20px;
|
---|
5 | text-align: center;
|
---|
6 | font-family: "Roboto", sans-serif;
|
---|
7 | overflow: hidden;
|
---|
8 | }
|
---|
9 |
|
---|
10 | h1 {
|
---|
11 | font-size: 2.5rem;
|
---|
12 | color: black;
|
---|
13 | margin-bottom: 20px;
|
---|
14 | }
|
---|
15 |
|
---|
16 | .mapsContainer {
|
---|
17 | display: flex;
|
---|
18 | flex-direction: column;
|
---|
19 | gap: 20px;
|
---|
20 | margin-top: 30px;
|
---|
21 | }
|
---|
22 |
|
---|
23 | .tile {
|
---|
24 | width: 90%;
|
---|
25 | margin: 0 auto;
|
---|
26 | display: flex;
|
---|
27 | flex-direction: column;
|
---|
28 | align-items: center;
|
---|
29 | justify-content: center;
|
---|
30 | color: #2c3e50;
|
---|
31 | background-color: #ffffff;
|
---|
32 | box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
|
---|
33 | transition: all 300ms ease-in-out;
|
---|
34 | padding: 10px;
|
---|
35 | border: 2px solid #232323;
|
---|
36 | border-radius: 12px;
|
---|
37 | margin-bottom: 20px;
|
---|
38 | }
|
---|
39 |
|
---|
40 | .tile:hover {
|
---|
41 | transform: scale(1.05);
|
---|
42 | box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 18px;
|
---|
43 | background: #eeeeee;
|
---|
44 | }
|
---|
45 |
|
---|
46 | .imgStyle {
|
---|
47 | width: 80%;
|
---|
48 | margin-top: 10px;
|
---|
49 | margin-bottom: 5px;
|
---|
50 | }
|
---|
51 |
|
---|
52 | .mapTitle {
|
---|
53 | color: #2c2f33;
|
---|
54 | text-transform: uppercase;
|
---|
55 | margin-bottom: 10px;
|
---|
56 | font-size: 1.2rem;
|
---|
57 | }
|
---|
58 |
|
---|
59 | .buttonContainer {
|
---|
60 | display: flex;
|
---|
61 | flex-direction: column;
|
---|
62 | gap: 10px;
|
---|
63 | width: 100%;
|
---|
64 | }
|
---|
65 |
|
---|
66 | .buttonsGroup {
|
---|
67 | display: flex;
|
---|
68 | justify-content: space-between;
|
---|
69 | gap: 10px;
|
---|
70 | width: 100%;
|
---|
71 | }
|
---|
72 |
|
---|
73 | .approveButton, .denyButton {
|
---|
74 | padding: 8px 16px;
|
---|
75 | font-size: 14px;
|
---|
76 | border: none;
|
---|
77 | border-radius: 8px;
|
---|
78 | cursor: pointer;
|
---|
79 | transition: background-color 0.3s ease, transform 0.2s ease;
|
---|
80 | }
|
---|
81 |
|
---|
82 | .approveButton {
|
---|
83 | background-color: #4caf50;
|
---|
84 | color: white;
|
---|
85 | }
|
---|
86 |
|
---|
87 | .approveButton:hover {
|
---|
88 | background-color: #388e3c;
|
---|
89 | transform: translateY(-2px);
|
---|
90 | }
|
---|
91 |
|
---|
92 | .denyButton {
|
---|
93 | background-color: #f44336;
|
---|
94 | color: white;
|
---|
95 | }
|
---|
96 |
|
---|
97 | .denyButton:hover {
|
---|
98 | background-color: #d32f2f;
|
---|
99 | transform: translateY(-2px);
|
---|
100 | }
|
---|
101 |
|
---|
102 | .viewPublishFormButton{
|
---|
103 | margin-bottom: 10px;
|
---|
104 | }
|
---|
105 |
|
---|
106 | .reasonInput {
|
---|
107 | width: 100%;
|
---|
108 | padding: 8px;
|
---|
109 | font-size: 14px;
|
---|
110 | border: 1px solid #ccc;
|
---|
111 | border-radius: 8px;
|
---|
112 | outline: none;
|
---|
113 | margin-bottom: 10px;
|
---|
114 | }
|
---|
115 |
|
---|
116 | .reasonInput:focus {
|
---|
117 | border-color: #1e90ff;
|
---|
118 | box-shadow: 0 0 8px rgba(30, 144, 255, 0.5);
|
---|
119 | }
|
---|
120 |
|
---|
121 | @media (max-width: 768px) {
|
---|
122 | .mapsContainer {
|
---|
123 | flex-direction: column;
|
---|
124 | }
|
---|
125 |
|
---|
126 | .tile {
|
---|
127 | width: 100%;
|
---|
128 | }
|
---|
129 |
|
---|
130 | .reasonInput {
|
---|
131 | width: 100%;
|
---|
132 | }
|
---|
133 |
|
---|
134 | .buttonsGroup {
|
---|
135 | flex-direction: column;
|
---|
136 | gap: 10px;
|
---|
137 | }
|
---|
138 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.