Add final touches
This commit is contained in:
parent
b1fd2f372f
commit
0429ea7f72
64 changed files with 576 additions and 444 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { Header } from '../../model/portfolio';
|
||||
import { html } from '../../model/misc';
|
||||
import { html } from '../../framework/model/misc';
|
||||
|
||||
import './about.scss';
|
||||
|
||||
|
|
|
|||
|
|
@ -1,23 +1,16 @@
|
|||
@import '../../style/mixins';
|
||||
@import '../../style/vars';
|
||||
@use '../../style/include' as *;
|
||||
|
||||
@include responsive() using ($vars) {
|
||||
#about {
|
||||
section#about {
|
||||
@include card-base($vars);
|
||||
|
||||
background-color: map_get($vars, $important-card-color);
|
||||
|
||||
* {
|
||||
color: map_get($vars, $important-card-text-color);
|
||||
}
|
||||
background-color: map_get($vars, $accent-color);
|
||||
font-size: 0;
|
||||
|
||||
$img-size: 125px;
|
||||
|
||||
h1,
|
||||
img,
|
||||
.placeholder,
|
||||
& {
|
||||
@include title-font();
|
||||
.placeholder {
|
||||
@include title-font($vars);
|
||||
}
|
||||
|
||||
img {
|
||||
|
|
@ -26,19 +19,18 @@
|
|||
}
|
||||
|
||||
p {
|
||||
@include main-font();
|
||||
@include main-font($vars);
|
||||
text-align: justify;
|
||||
margin-top: map_get($vars, $small-margin);
|
||||
}
|
||||
|
||||
h1 {
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
@include on-small-screen {
|
||||
h1 {
|
||||
margin-top: map_get($vars, $small-margin);
|
||||
}
|
||||
p,
|
||||
h1 {
|
||||
color: map_get($vars, $very-light-text-color);
|
||||
margin-top: map_get($vars, $small-margin);
|
||||
}
|
||||
|
||||
@include on-large-screen {
|
||||
|
|
@ -69,6 +61,7 @@
|
|||
|
||||
h1 {
|
||||
text-align: left;
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
import { PageContent } from '../content/content';
|
||||
import { Header } from '../../model/portfolio';
|
||||
import { PageElement } from '../../framework/page-element';
|
||||
|
||||
import { generate } from './about.html';
|
||||
import { createElement } from '../../framework/helper/create-element';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue