mirror of
https://github.com/DerTyp7/dertyp7.github.io.git
synced 2025-11-01 22:22:32 +01:00
Add Skills component and SectionLine component
This commit is contained in:
23
src/styles/SectionLine.scss
Normal file
23
src/styles/SectionLine.scss
Normal file
@@ -0,0 +1,23 @@
|
||||
.sectionLine {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
hr {
|
||||
width: 60%;
|
||||
border: 1px solid var(--color-border);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
hr {
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 480px) {
|
||||
hr {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
}
|
||||
2
src/styles/Skills.scss
Normal file
2
src/styles/Skills.scss
Normal file
@@ -0,0 +1,2 @@
|
||||
.skills {
|
||||
}
|
||||
@@ -8,7 +8,7 @@
|
||||
--color-font: #ffffff;
|
||||
--color-font-muted: #a0a0a0;
|
||||
|
||||
--color-border: #1c1c1c;
|
||||
--color-border: #2b2b2b;
|
||||
|
||||
--color-danger: #cf000f;
|
||||
--color-success: #009944;
|
||||
|
||||
Reference in New Issue
Block a user