31 lines
620 B
SCSS
31 lines
620 B
SCSS
@import "vars";
|
|
|
|
.app-header {
|
|
background-color: $header-background;
|
|
color: whitesmoke;
|
|
padding: 1rem 0 1rem 0;
|
|
box-shadow: 0px 5px 11px 0px rgba(0, 0, 0, 0.31);
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-input {
|
|
background-color: whitesmoke;
|
|
margin-left: auto;
|
|
}
|
|
}
|