Compare commits
3 commits
90bcf4aac0
...
84040bc111
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84040bc111 | ||
|
|
569261e347 | ||
|
|
42a3b2d700 |
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -12,4 +12,7 @@ Thumbs.db
|
||||||
# Node modules and output
|
# Node modules and output
|
||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
src/_includes/css
|
src/_includes/css
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
_variables_old.scss
|
||||||
|
|
@ -8,5 +8,5 @@ classes: 'download-section'
|
||||||
<div class="flex-container justify-center">
|
<div class="flex-container justify-center">
|
||||||
<p>You want to print this document ?</p>
|
<p>You want to print this document ?</p>
|
||||||
<i>--></i>
|
<i>--></i>
|
||||||
<button type="button" onclick="window.print()" class="btn icon--right icon-download">Download as PDF</button>
|
<button type="button" onclick="window.print()" class="btn btn-download icon--right icon-download">Download as PDF</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -10,6 +10,8 @@
|
||||||
--secondary-light: rgb(var(--forest-200));
|
--secondary-light: rgb(var(--forest-200));
|
||||||
--secondary-dark: rgb(var(--forest-400));
|
--secondary-dark: rgb(var(--forest-400));
|
||||||
|
|
||||||
|
--bg-gradient: linear-gradient(180deg, rgb(var(--sand-400)) 0%, rgb(var(--sand-400)) 3%, rgb(var(--sand-300)) 20%, rgb(var(--sand-200)) 35%, rgb(var(--forest-200)) 60%, rgb(var(--forest-300)) 75%, rgb(var(--forest-400)) 98%, rgb(var(--forest-400)) 100%);
|
||||||
|
|
||||||
--background: var(--primary-light);
|
--background: var(--primary-light);
|
||||||
--text: var(--dark-1);
|
--text: var(--dark-1);
|
||||||
--text-2: var(--dark-2);
|
--text-2: var(--dark-2);
|
||||||
|
|
|
||||||
|
|
@ -16,11 +16,8 @@ html {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
/* --start: var(--primary-light);
|
|
||||||
--end: var(--secondary);*/
|
|
||||||
background: rgb(var(--sand-400));
|
background: rgb(var(--sand-400));
|
||||||
/*background: linear-gradient(180deg, var(--start) 0%, var(--start) 35%, var(--end) 100%); */
|
background: var(--bg-gradient);
|
||||||
background: linear-gradient(180deg, rgb(var(--sand-400)) 0%, rgb(var(--sand-400)) 3%, rgb(var(--sand-300)) 20%, rgb(var(--sand-200)) 35%, rgb(var(--forest-200)) 60%, rgb(var(--forest-300)) 75%, rgb(var(--forest-400)) 98%, rgb(var(--forest-400)) 100%);
|
|
||||||
|
|
||||||
header, footer {
|
header, footer {
|
||||||
padding: .5rem clamp(.2rem, 3vw, 2rem);
|
padding: .5rem clamp(.2rem, 3vw, 2rem);
|
||||||
|
|
@ -341,16 +338,15 @@ i {
|
||||||
gap: .8rem;
|
gap: .8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn {
|
|
||||||
color: rgb(var(--forest-200));
|
|
||||||
/* color: var(--secondary-light); */
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-download {
|
||||||
|
color: rgb(var(--forest-200));
|
||||||
|
}
|
||||||
|
|
||||||
.competences-section {
|
.competences-section {
|
||||||
margin-left: 4vw;
|
margin-left: 4vw;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue