mirror of
https://github.com/Wessel/portfolio.git
synced 2026-07-28 11:12:14 +02:00
43 lines
829 B
SCSS
43 lines
829 B
SCSS
|
|
@use 'utilities/variables';
|
|
@use 'buttons.selected';
|
|
@use 'particles';
|
|
@use 'container';
|
|
@use 'text';
|
|
@use 'fonts';
|
|
@use 'font_devicon.part';
|
|
@use 'footer';
|
|
@use 'card.scss';
|
|
@use 'bootstrap_components';
|
|
|
|
|
|
:root {
|
|
font-size: 14px;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
min-height: 100vh;
|
|
|
|
font-family: Helvetica, sans-serif !important;
|
|
font-size: 1.4rem;
|
|
line-height: 1.3;
|
|
color: #F5F5F5;
|
|
|
|
background-image: url(https://images.unsplash.com/photo-1619204715997-1367fe5812f1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1889&q=80);
|
|
background-color: rgb(44, 47, 51);
|
|
background-size: cover;
|
|
background-position: center;
|
|
|
|
.background-darken {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
|
|
background: rgba(5, 5, 5, .6);
|
|
}
|
|
}
|
|
|