1
0
web-semprace/sass/main.scss

74 lines
1.6 KiB
SCSS
Raw Normal View History

2023-11-20 16:52:40 +01:00
main {
display: flex;
gap: 2rem;
margin-top: 2rem;
2023-11-20 16:52:40 +01:00
section#news {
width: 60vw;
}
aside{
2023-11-20 16:52:40 +01:00
width: 40vw;
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
background-color: var(--clr-cards);
border-radius: 15px;
2023-11-20 16:52:40 +01:00
section#vstupenky-wrapper {
display: flex;
justify-content: center;
width: 100%;
margin-bottom: 2rem;
}
2023-11-20 16:52:40 +01:00
a.vstupenky {
width: 80%;
background-color: orange;
2023-11-20 16:52:40 +01:00
padding: 1rem 2rem;
color: var(--clr-murrey);
text-decoration: none;
font-weight: bold;
font-size: 2rem;
text-align: center;
2023-11-20 16:52:40 +01:00
border-color: var(--clr-murrey);
border-radius: 15px;
border-style: solid;
border-width: 3px;
}
.infotable {
display: flex;
flex-direction: column;
gap: 2rem;
}
.info-wrapper {
display: flex;
align-items: center;
justify-content: center;
gap: 4rem;
color: var(--clr-murrey);
text-align: left;
img {
width: 100px;
}
}
.info-wrapper:nth-child(even) {
flex-direction: row-reverse;
text-align: right;
}
}
footer {
display: flex;
justify-content: center;
a {
color: blue;
text-decoration: none;
}
2023-11-20 16:52:40 +01:00
}
}