source: imaps-frontend/src/pages/MyMaps/CreateMaps.module.css@ 0c6b92a

main
Last change on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 2.5 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* {
11 font-family: "Exo", sans-serif;
12}
13
14.mapTitle {
15 color: #2c2f33;
16 text-transform: uppercase;
17}
18
19h1 {
20 font-size: 2.5rem;
21 color: black;
22 margin-bottom: 20px;
23}
24
25.categories {
26 margin-bottom: 20px;
27 text-align: start;
28 color: #333;
29}
30
31.actionButtons {
32 display: flex;
33 justify-content: center;
34 gap: 20px;
35 margin-bottom: 30px;
36}
37
38.createMapsButton {
39 padding: 10px 20px;
40 font-size: 16px;
41 background-color: #f1153b;
42 color: white;
43 border: none;
44 border-radius: 8px;
45 cursor: pointer;
46 transition: background-color 0.3s ease, transform 0.2s ease;
47}
48
49.createMapsButton:hover {
50 background-color: #b70526;
51 transform: translateY(-2px);
52}
53
54.searchBar {
55 margin-bottom: 30px;
56 text-align: center;
57}
58
59.searchBar input {
60 width: 300px;
61 padding: 10px;
62 font-size: 16px;
63 border: 1px solid #ccc;
64 border-radius: 8px;
65 outline: none;
66 transition: all 0.3s ease;
67}
68
69.searchBar input:focus {
70 border-color: #1e90ff;
71 box-shadow: 0 0 8px rgba(30, 144, 255, 0.5);
72}
73
74.mapsContainer {
75 display: flex;
76 justify-content: space-between;
77 gap: 20px;
78 margin-top: 30px;
79}
80
81.mapColumn {
82 flex: 1;
83 display: flex;
84 flex-direction: column;
85 align-items: center; /* Center items horizontally */
86 justify-content: flex-start; /* Ensure tiles stack from the top */
87 padding: 10px;
88 background-color: #f9f9f9;
89 border-radius: 8px;
90 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
91}
92
93.tile {
94 width: 90%; /* Adjust width to leave space around the tile */
95 display: flex;
96 flex-direction: column;
97 align-items: center;
98 justify-content: center;
99 color: #2c3e50;
100 background-color: #ffffff;
101 box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
102 transition: all 300ms ease-in-out;
103 padding: 10px;
104 border: 2px solid #232323;
105 border-radius: 12px;
106 margin-bottom: 20px;
107}
108
109.tile:hover {
110 transform: scale(1.05);
111 box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 18px;
112 background: #f1153b;
113}
114
115.imgStyle {
116 width: 80%;
117 margin-top: 10px;
118 margin-bottom: 5px;
119}
120
121.dragging {
122 background-color: #1e90ff;
123 transform: scale(1.06) rotate(3deg);
124 box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px,
125 rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px,
126 rgba(0, 0, 0, 0.09) 0px -3px 5px;
127}
128
129@media (max-width: 768px) {
130 .mapsContainer {
131 flex-direction: column;
132 }
133
134 .mapColumn {
135 width: 100%;
136 margin-bottom: 20px;
137 }
138
139 .searchBar input {
140 width: 100%;
141 }
142}
Note: See TracBrowser for help on using the repository browser.