source: imaps-frontend/src/components/Logo/Logo.module.css@ 79a0317

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: 566 bytes
Line 
1.logoContainer {
2 position: fixed;
3 top: 10px;
4 left: 10px;
5 cursor: pointer;
6 z-index: 1000;
7}
8
9.logoImage {
10 width: 80px;
11 height: auto;
12 transition: opacity 0.2s ease;
13 border-radius: 20px;
14}
15
16.logoImage:hover {
17 opacity: 0.8; /* Slight hover effect */
18}
19
20.fixedLogoContainer {
21 position: fixed;
22 top: 10px;
23 left: 10px;
24 cursor: pointer;
25 z-index: 1000;
26}
27
28.inlineLogoContainer {
29 display: inline-block; /* Allows the logo to be placed inline within other elements */
30 cursor: pointer;
31}
32
33.logoImage:hover {
34 opacity: 0.8; /* Hover effect */
35}
Note: See TracBrowser for help on using the repository browser.