1
0
web-semprace/sass/main.scss

87 lines
1.6 KiB
SCSS
Raw Permalink Normal View History

2023-11-20 16:52:40 +01:00
main {
2023-11-30 14:02:52 +01:00
display: flex;
gap: 2rem;
margin-top: 2rem;
margin-bottom: 2rem;
2023-12-01 03:23:59 +01:00
padding: 0 var(--container-size);
2023-11-30 14:02:52 +01:00
2023-12-01 03:23:59 +01:00
.aside-wrapper {
min-width: 20vw;
2023-11-30 14:02:52 +01:00
}
aside{
2023-11-20 16:52:40 +01:00
display: flex;
2023-11-30 14:02:52 +01:00
flex-direction: column;
align-items: center;
padding: 2rem;
background-color: var(--clr-LavenderLight);
border-radius: 15px;
top: 0;
section#vstupenky-wrapper {
display: flex;
justify-content: center;
width: 100%;
margin-bottom: 2rem;
}
2023-12-01 03:23:59 +01:00
2023-11-30 14:02:52 +01:00
a.vstupenky {
width: 80%;
background-color: var(--clr-Melon);
padding: 1rem 2rem;
color: var(--clr-Murrey);
text-decoration: none;
font-weight: bold;
font-size: 2rem;
text-align: center;
border-color: var(--clr-Murrey);
border-radius: 15px;
border-style: solid;
border-width: 3px;
2023-12-01 03:23:59 +01:00
display: flex;
justify-content: center;
align-items: center;
}
.vstupenky:hover span{
transform: translateX(0.5rem);
}
.vstupenky span {
transition: 300ms ease;
2023-11-30 14:02:52 +01:00
}
.infotable {
display: flex;
flex-direction: column;
gap: 2rem;
2023-11-20 16:52:40 +01:00
}
2023-11-30 14:02:52 +01:00
.info-wrapper {
display: flex;
align-items: center;
justify-content: center;
2023-12-01 03:23:59 +01:00
gap: 2rem;
2023-11-30 14:02:52 +01:00
color: var(--clr-Murrey);
text-align: left;
.text {
h3 {
font-weight: 900;
}
2023-12-01 03:23:59 +01:00
2023-11-30 14:02:52 +01:00
p {
font-weight: 500;
2023-11-20 16:52:40 +01:00
}
2023-11-30 14:02:52 +01:00
}
2023-11-30 14:02:52 +01:00
img {
width: 100px;
}
}
2023-11-30 14:02:52 +01:00
.info-wrapper:nth-child(even) {
flex-direction: row-reverse;
text-align: right;
}
2023-11-30 14:02:52 +01:00
}
2023-11-24 00:46:26 +01:00
}