Initial
This commit is contained in:
24
src/scss/_app-header.scss
Normal file
24
src/scss/_app-header.scss
Normal 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
3
src/scss/_common.scss
Normal file
@ -0,0 +1,3 @@
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
2
src/scss/styles.scss
Normal file
2
src/scss/styles.scss
Normal file
@ -0,0 +1,2 @@
|
||||
@import "common";
|
||||
@import "app-header";
|
||||
Reference in New Issue
Block a user