thsf.net/src/thsf/static/css/wrappers.css

134 lines
2.8 KiB
CSS
Raw Normal View History

2023-04-11 09:21:10 +02:00
@media screen and (min-width: 45em) {
.page_wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
text-align: center;
padding-bottom: 5em;
2023-04-11 10:05:13 +02:00
/* background-color: green; */
2023-04-11 09:21:10 +02:00
}
.center_wrapper,
.header_wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.logo_wrapper {
margin-top: 1em;
width: 40em;
}
.navbar_wrapper {
position: fixed;
bottom: 0;
padding: 1em 0;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 2em;
background-color: var(--main-bg-color);
width: 100vw;
2023-04-11 11:06:18 +02:00
transform: translateZ(2);
2023-04-11 09:21:10 +02:00
}
.content {
font-size: 2em;
font-family: pfdintextcompprothin;
color: var(--main-color);
width: 20em;
text-align:justify;
text-justify: inter-word;
}
.partners {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
2023-04-11 11:02:04 +02:00
margin-bottom: 2em;
2023-04-11 09:21:10 +02:00
}
.subpartners {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
}
2023-04-10 01:32:35 +02:00
}
2023-04-11 09:21:10 +02:00
@media screen and (max-width: 44em) {
.page_wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
text-align: center;
padding-bottom: 2em;
2023-04-11 10:10:25 +02:00
width: 21em;
2023-04-11 10:05:13 +02:00
/* background-color: green; */
}
.center_wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
2023-04-11 10:10:25 +02:00
width: 21em;
2023-04-11 10:05:13 +02:00
/* background-color: blue; */
2023-04-11 09:21:10 +02:00
}
.header_wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
2023-04-11 10:10:25 +02:00
width: 21em;
2023-04-11 10:05:13 +02:00
/* background-color: orangered; */
2023-04-11 09:21:10 +02:00
}
.logo_wrapper {
margin-top: 0.5em;
2023-04-11 10:10:25 +02:00
width: 21em;
2023-04-11 10:05:13 +02:00
/* background-color: red; */
2023-04-11 09:21:10 +02:00
}
.navbar_wrapper {
position: fixed;
bottom: 0;
padding: 0.5em 0;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 1em;
background-color: var(--main-bg-color);
2023-04-11 10:10:25 +02:00
width: 21em;
2023-04-11 11:04:42 +02:00
transform: translateZ(2);
2023-04-11 10:05:13 +02:00
/* background-color: white; */
2023-04-11 09:21:10 +02:00
}
.content {
font-size: 1em;
font-family: pfdintextcompprothin;
color: var(--main-color);
2023-04-11 10:10:25 +02:00
width: 21em;
2023-04-11 09:21:10 +02:00
text-align:justify;
text-justify: inter-word;
}
.partners {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
2023-04-11 11:02:04 +02:00
margin-bottom: 2em;
2023-04-11 09:21:10 +02:00
}
.subpartners {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
}
2023-04-10 01:50:02 +02:00
}