website/_src/assets/css/default/index.css

46 lines
710 B
CSS
Raw Normal View History

@import url("./variables.css");
2025-06-11 09:36:54 +03:00
#index {
2025-09-11 19:30:58 +03:00
margin: 0;
padding: 0;
2025-08-10 17:05:40 +03:00
color: var(--primary-dark-300);
background-color: rgb(255, 190, 0);
2025-06-11 09:36:54 +03:00
width: 100%;
2025-09-11 19:30:58 +03:00
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;
2025-06-11 09:36:54 +03:00
display: flex;
flex-direction: column;
2025-09-11 19:30:58 +03:00
justify-self: center;
& a, img {
z-index: 1;
display: inherit;
flex-direction: inherit;
}
& span {
2025-06-25 14:01:36 +03:00
position: absolute;
2025-09-11 19:30:58 +03:00
width: 0;
height: 0;
overflow: hidden;
}
2025-06-11 09:36:54 +03:00
}
2025-09-11 19:30:58 +03:00
& footer,
header {
position: absolute;
2025-09-11 19:30:58 +03:00
left: 0;
right: 0;
text-align: center;
}
2025-09-11 19:30:58 +03:00
}