mirror of
https://github.com/Unkn0wnCat/KevinK.dev.js.git
synced 2025-04-30 10:46:57 +02:00
74 lines
No EOL
1.4 KiB
SCSS
74 lines
No EOL
1.4 KiB
SCSS
@import "../variables";
|
|
|
|
.projectHeader {
|
|
> div {
|
|
padding-bottom: 0 !important;
|
|
}
|
|
|
|
.headerBackground {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 200px;
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
header {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 200px;
|
|
background: rgba(0, 0, 0, .5);
|
|
|
|
.headerInner {
|
|
max-width: $layoutWidth;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
padding: 65px 20px 0;
|
|
|
|
* {
|
|
margin: 0;
|
|
color: white;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2em;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.headerPlaceholder {
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
}
|
|
|
|
.projectAbout {
|
|
background: #060606;
|
|
color: white;
|
|
}
|
|
|
|
.projectLinks {
|
|
.linkList {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
a {
|
|
display: inline-block;
|
|
border: thin solid rgb(200, 200, 200);
|
|
border-radius: 5px;
|
|
padding: 10px 15px;
|
|
margin: 5px;
|
|
color: $textColor;
|
|
text-decoration-skip: none;
|
|
text-decoration: underline dotted currentColor;
|
|
|
|
i.fab, i.fas, i.fa, i.far, i.fal {
|
|
display: inline;
|
|
}
|
|
}
|
|
} |