Newer
Older
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
a {
color: $blue_2;
text-decoration: none;
&:hover {
color: $blue_3;
}
}
blue {
color: $blue_2;
}
emoji {
font-style: initial;
font-size: 25px;
}
img.pixelated {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
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
.warning-banner {
background: url("/assets/images/wallpaper_warning.svg");
width: 100%;
height: 40px;
padding: 20px 10%;
@include flex-center;
strong {
font-size: 18px;
color: $blue_1;
}
}
.image-carousel {
overflow: hidden;
@include flex-center;
background-color: black;
position: relative;
img {
position: absolute;
max-width: 100%;
max-height: 400px;
}
.carousel-bullets {
position: absolute;
bottom: 0;
padding: 20px;
display: flex;
gap: 10px;
.bullet {
cursor: pointer;
width: 8px;
height: 8px;
background-color: $medium_grey;
border-radius: 100%;
box-shadow: 0 0 3px black;
&.active {
background-color: $light_0;
}
}
}
@media screen and (max-width: $screen_l) {
img {
max-height: 100%;
}
.carousel-bullets {
.bullet {
width: 12px;
height: 12px;
}
}
}
}
background-color: white;
position: sticky;
position: -webkit-sticky;
top: 0;
z-index: 10;
display: flex;
align-items: center;
height: $navbar_height;
.home {
margin: 0 10px;
a {
display: flex;
align-items: center;
gap: 10px;
img {
height: 40px;
width: auto;
}
img.logo-text {
width: 120px;
height: auto;
}
ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
.burger {
display: none;
}
@media screen and (max-width: $screen_s) {
justify-content: space-between;
.burger {
font-weight: bold;
border: 1px solid;
margin: 0 20px;
cursor: pointer;
border-radius: 100%;
}
ul {
display: none;
&.responsive-show {
display: flex;
position: absolute;
right: 0;
max-width: 100vw;
min-width: 50vw;
top: $navbar_height;
background-color: white;
box-shadow: 0 4px 6px 2px #0000000a;
li {
&.active {
a {
border: none;
}
}
.submenu {
display: flex;
visibility: visible;
position: relative;
height: unset;
max-height: unset;
transition: max-height 0.6s;
top: unset;
left: unset;
li {
a {
font-weight: 400;
color: $light_1;
}
}
margin-left: 20px;
}
}
}
}
}
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
background-image: url("/assets/images/wallpaper_binary.png");
padding: 50px 0;
h1 {
padding: 15px 40px 0;
font-size: 25px;
color: $blue_2;
margin: 0 auto;
}
p {
color: $blue_3;
* {
color: $blue_3;
}
font-style: italic;
padding: 15px 40px 15px 100px;
margin: 0 auto;
font-size: 18px;
}
.big-logo {
@include flex-center;
gap: 20px;
padding: 20px;
img {
width: 200px;
max-width: 100%;
&.logo-text {
width: 300px;
max-width: 100%;
}
}
}
.logo {
padding-left: 30px;
@include flex-center;
img {
width: 100%;
}
}
@media screen and (max-width: $screen_s) {
h1 {
padding: 15px 20px 0;
}
p {
padding: 20px 20px 30px 40px;
text-align: justify;
}
.big-logo {
flex-direction: column;
}
}
&.logo-left {
.grid-wrapper {
h1 {
width: 100%;
}
display: grid;
grid-template-columns: 120px 1fr;
grid-template-rows: auto 1fr;
.logo {
grid-column: 1;
grid-row: 1;
width: 100%;
}
p {
margin: 0;
grid-column: 1 / span 2;
}
}
@media screen and (max-width: $screen_m) {
.grid-wrapper {
h1 {
padding: 0 20px;
}
.logo {
padding: 0 20px;
}
}
}
}
background-image: url("/assets/images/wallpaper_binary.png");
padding: 120px 30px;
p {
width: 100%;
max-width: 600px;
font-size: 18px;
color: $light_2;
* {
color: $light_2;
}
text-align: center;
font-style: italic;
font-weight: bold;
}
@include page-contents-center;
}
h2.page-section-title {
color: $blue_2;
padding: 20px 0 10px;
@include page-contents-center;
@import "./pages/software-development/software-development.scss";
gap: 10px;
img {
width: 35px;
&.text-logo {
width: 100px;
}
}
}
.social {
@include flex-center;
gap: 20px;
a {
background-color: $dark_3;
@include flex-center;
width: 25px;
height: 25px;
font-weight: bold;
font-size: 16px;
border-radius: 100%;
}
}