mirror of
https://github.com/FAUSheppy/flask-json-dream-website
synced 2025-12-06 00:01:36 +01:00
188 lines
2.9 KiB
CSS
188 lines
2.9 KiB
CSS
html {
|
|
height: 100vh;
|
|
overflow-y: unset !important;
|
|
}
|
|
body {
|
|
font-size: 20px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.flag{
|
|
height: 40px;
|
|
width: 70px;
|
|
background-repeat: round !important;
|
|
margin-left: 20px;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
body {
|
|
font-size: 25px;
|
|
}
|
|
.flag{
|
|
margin-left: unset;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
body {
|
|
font-size: 5vw;
|
|
}
|
|
h1{
|
|
font-size: 30px;
|
|
}
|
|
}
|
|
|
|
.title-responsive{
|
|
font-size: 25px !important;
|
|
padding-left: 40px;
|
|
}
|
|
|
|
@media (max-width: 1300px) {
|
|
.title-responsive{
|
|
font-size: 20px !important;
|
|
padding-left: unset;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1300px) and (min-width: 766px){
|
|
h1{
|
|
font-size: 3.5vw;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.title-responsive{
|
|
font-size: 2.2vw !important;
|
|
padding-left: unset;
|
|
}
|
|
}
|
|
|
|
.masthead {
|
|
/*height: 50vh; */
|
|
/* min-height: 250px; */
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.bg-special{
|
|
background-color: #eae9e9;
|
|
}
|
|
|
|
.text-color-special{
|
|
color: #eae9e9;
|
|
}
|
|
|
|
.stretched-link::after {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
pointer-events: auto;
|
|
content: "";
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
.hover-to-75:hover *{
|
|
opacity: 0.75;
|
|
display: unset;
|
|
}
|
|
|
|
.position-relative{
|
|
position: relative;
|
|
}
|
|
|
|
.centered-text-in-image{
|
|
position: absolute;
|
|
color: black !important;
|
|
font-weight: bold;
|
|
font-size: x-large;
|
|
top: 50%;
|
|
text-decoration: none !important;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
opacity: 0;
|
|
}
|
|
|
|
.centered-text-in-image:hover{
|
|
display: none;
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
.image-min-dimensions{
|
|
min-width: 330px;
|
|
/*min-height: 220px; */
|
|
}
|
|
|
|
.text-min-dimensions{
|
|
min-width: 300px;
|
|
}
|
|
|
|
.image-max-dimensions{
|
|
max-width: 400px;
|
|
}
|
|
|
|
.hover-to-75:hover{
|
|
opacity: 1 !important;
|
|
background: rgba(0,0,0,0.25) !important;
|
|
}
|
|
|
|
.force-fill{
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
border-radius: 5px;
|
|
background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wave {
|
|
width: 1000px;
|
|
height: 1025px;
|
|
position: absolute;
|
|
top: -25%;
|
|
left: 50%;
|
|
margin-left: -500px;
|
|
margin-top: -500px;
|
|
border-radius: 35%;
|
|
background: rgba(255, 255, 255, .75);
|
|
transform: rotate(30deg);
|
|
}
|
|
|
|
@media (min-width: 979px) {
|
|
.dropdown:hover .dropdown-menu {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
@media(max-width: 440px){
|
|
.event-responsive{
|
|
padding-left: 0;
|
|
font-size: 5vw;
|
|
}
|
|
.date-responsive{
|
|
margin-right: 4vw !important;
|
|
}
|
|
.container-responsive{
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
.mt-0-u440{
|
|
margin-top: 0 !important;
|
|
}
|
|
}
|