source: imaps-frontend/src/components/SaveMap/SaveMap.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: 1023 bytes
Line 
1.saveMapContainer {
2 display: flex;
3 flex-direction: column;
4 align-items: center;
5 margin: 10% 10px;
6}
7
8.saveMapForm {
9 display: flex;
10 flex-direction: column;
11 gap: 10px;
12 align-items: center;
13}
14
15.saveMapInput {
16 padding: 5px;
17 border: 1px solid #ccc;
18 border-radius: 5px;
19 width: 100%;
20}
21
22.saveMapButton {
23 width: 100%;
24 height: 50px;
25 background-color: #e67e22 !important;
26 color: #ffffff !important;
27 border: none;
28 border-radius: 8px;
29 font-size: 20px;
30 font-weight: bold;
31 cursor: pointer;
32 display: flex;
33 justify-content: center;
34 align-items: center;
35 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
36 transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
37 appearance: none;
38 -webkit-appearance: none;
39}
40
41.saveMapButton:hover {
42 background-color: #d2691e !important;
43 transform: scale(1.05);
44 box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
45}
46
47.saveMapButton:active {
48 background-color: #b35418 !important;
49 transform: scale(0.98);
50 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
51}
Note: See TracBrowser for help on using the repository browser.