46 lines
No EOL
710 B
CSS
46 lines
No EOL
710 B
CSS
@import url("./variables.css");
|
|
|
|
#index {
|
|
margin: 0;
|
|
padding: 0;
|
|
color: var(--primary-dark-300);
|
|
background-color: rgb(255, 190, 0);
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-image: var(--sunny);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: contain;
|
|
|
|
& footer {
|
|
bottom: 0;
|
|
}
|
|
|
|
& header {
|
|
top: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-self: center;
|
|
& a, img {
|
|
z-index: 1;
|
|
display: inherit;
|
|
flex-direction: inherit;
|
|
}
|
|
& span {
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
& footer,
|
|
header {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
text-align: center;
|
|
}
|
|
} |