summaryrefslogtreecommitdiff
path: root/Static/Css/navbar.css
blob: 327cde8b2010e32777d5a0be3076824af7f3ed44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128

.showNav {
    top: 0vh !important;
}

.navLinkClicked {
    transform: scale(1.2) rotate(90deg);
    color: var(--mainSiteColor) !important;
}

.headerInfoAdmin {
    color: darkblue;
}

.headerInfoPro {
    color: brown;
}

.headerInfoClient {
    color: darkolivegreen;
}

header {
    z-index: 1;
    display: flex;
    justify-content: space-around;
    height:           10vh;
    text-align: center;
    background-color: var(--headerBg);
    border-top:       var(--mainSiteColor) solid 6px;
    border-bottom:    var(--mainSiteColor) solid 3px;
}

header h2 {
    font-family: akira;
    color:       var(--mainSiteColor) !important;
    margin:      0px;
}

header a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align:       center;
    flex-grow:       1;
    color:           var(--navbarTextColor);
    text-decoration: none;
    transition:      all 0.1s ease-in-out;
}

header form {
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    flex-grow:       1;
}

header a:hover {
    transform: scale(1.1);
}

header i {
    all:          revert;
    margin-right: 0.4em;
    font-size:    var(--fontSizeI);
}

header a:first-child {
    border-right: 3px solid var(--mainSiteColor);
    background-color: var(--navBg);
}

header a:first-child:hover {
    transform: none;
}

header a:first-child i {
    color:      #404040;
    font-size:  var(--fontSizeLarge);
    margin:     0px;
    transition: all 0.1s ease-in-out;
}

header a:first-child i:hover {
    cursor: pointer;
}

nav {
    top:              -10.5vh;
    display:          flex;
    position:         relative;
    justify-content:  space-around;
    height:           10vh;
    border-bottom:    var(--mainSiteColor) solid 3px;
    background-color: var(--navBg);
    box-shadow:       0px 0px 6px #0e0e0e;
    transition:       all 0.1s ease-in-out;
}

nav a {
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    text-align:      center;
    flex-grow:       1;
    color:           var(--navbarTextColor);
    text-decoration: none;
    transition:      all 0.1s ease-in-out;
}

nav a:hover {
    color:     var(--mainSiteColor);
    transform: scale(1.2);
}

nav p {
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    text-align:      center;
    flex-grow:       1;
}

@media screen and (max-width: 768px) {
    header a:first-child {
        min-width: 20%;
    }
}