31 lines
535 B
SCSS
Executable file
31 lines
535 B
SCSS
Executable file
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
|
|
|
|
$primary: #4ba05f;
|
|
$secondary: #a04b8c;
|
|
|
|
@import './reset.scss';
|
|
@import './components/profile.scss';
|
|
@import './components/projects.scss';
|
|
@import './components/technologies.scss';
|
|
@import './components/typography.scss';
|
|
|
|
p {
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
.container {
|
|
width: 70%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
//#2e7d32
|
|
|
|
|
|
.typo, body {
|
|
font-family: 'Libre Baskerville', serif;
|
|
}
|
|
|
|
section {
|
|
border-bottom: 1px solid gray;
|
|
padding-bottom: 1em;
|
|
}
|