source: imaps-frontend/src/components/RoomInfoPanel/RoomInfoPanel.module.css

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: 1.7 KB
Line 
1/* Panel styling */
2.roomInfoPanel {
3 position: fixed;
4 top: 0;
5 right: -350px;
6 width: 350px;
7 height: 100%;
8 background-color: #f7f9fc !important;
9 box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
10 transition: right 0.4s cubic-bezier(0.25, 0.8, 0.5, 1);
11 border-top-left-radius: 20px;
12 border-bottom-left-radius: 20px;
13 overflow-y: auto;
14 padding: 20px;
15 display: flex;
16 flex-direction: column;
17 align-items: center;
18 z-index: 6;
19}
20
21.open {
22 right: 0;
23}
24
25/* Close button styling */
26.closeButton {
27 position: absolute;
28 top: 15px;
29 right: 15px;
30 font-size: 28px;
31 background: none;
32 border: none;
33 color: #555;
34 cursor: pointer;
35 transition: color 0.3s;
36}
37
38.closeButton:hover {
39 color: #000 !important;
40}
41
42/* Room image styling */
43.roomImageWrapper {
44 width: 100%;
45 border-radius: 12px;
46 overflow: hidden;
47 margin: 20px 0;
48 box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
49}
50
51.roomImage {
52 width: 100%;
53 height: auto;
54 display: block;
55 border-radius: 12px;
56}
57
58.roomHeader h2 {
59 color: #333;
60 font-size: 1.5rem;
61 font-weight: 600;
62 text-align: center;
63 margin: 0;
64 color: black !important;
65}
66
67.roomDescription p {
68 color: #666 !important;
69 line-height: 1.6;
70 text-align: center;
71}
72/* Floor information styling */
73.floorInfo p {
74 color: #666 !important;
75 font-size: 1.1rem;
76 margin-top: 10px;
77 text-align: center;
78}
79
80/* Navigate button styling */
81.navigateButton {
82 display: flex;
83 align-items: center;
84 gap: 10px;
85 padding: 10px 20px;
86 margin-top: 20px;
87 background-color: #007bff;
88 color: #fff;
89 border: none;
90 border-radius: 8px;
91 cursor: pointer;
92 transition: background-color 0.3s;
93}
94
95.navigateButton:hover {
96 background-color: #0056b3;
97}
98
99.navigateIcon {
100 width: 20px;
101 height: 20px;
102}
103
Note: See TracBrowser for help on using the repository browser.