This commit is contained in:
Eden Kirin
2024-01-24 10:50:02 +01:00
parent 5dad970d76
commit 64688a8eb7
13 changed files with 741 additions and 52 deletions

24
src/scss/_app-header.scss Normal file
View File

@ -0,0 +1,24 @@
.app-header {
background-color: #15232d;
color: whitesmoke;
padding: 1rem 0 1rem 0;
box-shadow: 0px 5px 11px 0px rgba(0, 0, 0, 0.31);
margin-bottom: 1rem;
h1 {
font-size: 2rem;
letter-spacing: 5px;
}
.icon {
color: #08ab08;
animation: rotation 3s infinite linear;
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
}
}

3
src/scss/_common.scss Normal file
View File

@ -0,0 +1,3 @@
body {
margin: 0;
}

2
src/scss/styles.scss Normal file
View File

@ -0,0 +1,2 @@
@import "common";
@import "app-header";