source: imaps-frontend/src/pages/IMaps/components/Navbar.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: 1.4 KB
Line 
1.modern-navbar {
2 background: linear-gradient(90deg, #ffffff, #fffefe);
3 color: #ffffff;
4 /*color: #333333;*/
5 display: flex;
6 justify-content: center;
7 align-items: center;
8 padding: 0.8rem 1.5rem;
9 box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
10 position: sticky;
11 top: 0;
12 z-index: 1000;
13 border-radius: 8px;
14 margin: 5px;
15 height: 70px;
16 overflow: hidden;
17}
18
19.navbar-container {
20 display: flex;
21 justify-content: space-between;
22 align-items: center;
23 width: 100%;
24 max-width: 1200px;
25}
26
27.navbar-left {
28 display: flex;
29 align-items: center;
30 gap: 1rem;
31}
32
33.navbar-title {
34 font-size: 1.6rem;
35 font-weight: 700;
36 color: #ffffff;
37 margin: 0;
38 font-family: "exo", sans-serif;
39}
40
41.navbar-right {
42 display: flex;
43 align-items: center;
44 gap: 1rem;
45}
46
47.navbar-btn {
48 padding: 0.4rem 1.5rem;
49 font-size: 0.9rem;
50 border: 2px solid transparent;
51 border-radius: 20px;
52 text-decoration: none;
53 color: #ffffff;
54 font-weight: 500;
55 transition: all 0.3s ease-in-out;
56 font-family: "exo", sans-serif;
57 cursor: pointer;
58 margin-left: 4em;
59 margin-right: 1em;
60}
61
62.navbar-login {
63 background-color: #252627;
64 border: 2px solid #3f3232;
65}
66
67.navbar-login:hover {
68 background-color: #ffffff;
69 color: #212121;
70 border: 1px solid rgba(19, 18, 18, 0.82);
71}
72
73.navbar-signup {
74 background-color: #252627;
75 color: #ffffff;
76 border: 2px solid #343a40;
77}
78
79.navbar-signup:hover {
80 background-color: #ffffff;
81 color: #343a40;
82 border: 2px solid #343a40;
83}
Note: See TracBrowser for help on using the repository browser.