|
@@ -1,5 +1,10 @@
|
1
|
1
|
@use "../../scss/abstracts/colors" as *;
|
2
|
|
-@use "../../scss/abstracts/fonts" as *;
|
|
2
|
+// @use "../../scss/abstracts/fonts" as *;
|
|
3
|
+
|
|
4
|
+@font-face {
|
|
5
|
+ font-family: CutiveMono;
|
|
6
|
+ src: url(../../fonts/CutiveMono-Regular.ttf);
|
|
7
|
+}
|
3
|
8
|
|
4
|
9
|
#navbar-container {
|
5
|
10
|
clear: both;
|
|
@@ -32,11 +37,11 @@ nav {
|
32
|
37
|
}
|
33
|
38
|
}
|
34
|
39
|
|
35
|
|
-.title-and-menu {
|
36
|
|
- margin: 0 auto;
|
|
40
|
+ .title-and-menu {
|
|
41
|
+ margin: 0 auto;
|
37
|
42
|
|
38
|
43
|
#navbar-title {
|
39
|
|
- font-family: "Cutive Mono";
|
|
44
|
+ font-family: CutiveMono;
|
40
|
45
|
font-size: 2.5rem;
|
41
|
46
|
font-weight: bold;
|
42
|
47
|
color: $dark;
|
|
@@ -47,11 +52,11 @@ nav {
|
47
|
52
|
padding: 0;
|
48
|
53
|
}
|
49
|
54
|
}
|
50
|
|
-
|
51
|
|
- .menu-toggle-container {
|
52
|
|
- display: none;
|
|
55
|
+
|
|
56
|
+ .menu-toggle-container {
|
|
57
|
+ display: none;
|
|
58
|
+ }
|
53
|
59
|
}
|
54
|
|
-}
|
55
|
60
|
#contact-btn {
|
56
|
61
|
margin-right: 1.5rem;
|
57
|
62
|
padding-left: 99px;
|
|
@@ -96,8 +101,7 @@ nav {
|
96
|
101
|
flex-direction: column-reverse;
|
97
|
102
|
align-items: center;
|
98
|
103
|
}
|
99
|
|
-
|
100
|
|
-
|
|
104
|
+
|
101
|
105
|
.details {
|
102
|
106
|
position: absolute;
|
103
|
107
|
display: flex;
|
|
@@ -115,7 +119,7 @@ nav {
|
115
|
119
|
position: absolute;
|
116
|
120
|
display: flex;
|
117
|
121
|
flex-direction: column;
|
118
|
|
- align-items:center;
|
|
122
|
+ align-items: center;
|
119
|
123
|
top: 4.5rem;
|
120
|
124
|
background-color: white;
|
121
|
125
|
width: 100%;
|
|
@@ -126,14 +130,15 @@ nav {
|
126
|
130
|
display: flex;
|
127
|
131
|
justify-content: center;
|
128
|
132
|
|
129
|
|
- &:hover, &:focus{
|
|
133
|
+ &:hover,
|
|
134
|
+ &:focus {
|
130
|
135
|
background-color: $light;
|
131
|
136
|
}
|
132
|
137
|
}
|
133
|
138
|
}
|
134
|
139
|
|
135
|
140
|
.title-and-menu {
|
136
|
|
- margin-left: .5rem;
|
|
141
|
+ margin-left: 0.5rem;
|
137
|
142
|
display: flex;
|
138
|
143
|
width: 100%;
|
139
|
144
|
z-index: 2;
|
|
@@ -150,7 +155,8 @@ nav {
|
150
|
155
|
border-radius: 0.25rem;
|
151
|
156
|
transition: box-shadow 0.15s ease-in-out;
|
152
|
157
|
|
153
|
|
- &:hover, &:focus {
|
|
158
|
+ &:hover,
|
|
159
|
+ &:focus {
|
154
|
160
|
cursor: pointer;
|
155
|
161
|
box-shadow: 0 0 1px 1px $dark;
|
156
|
162
|
}
|