@@ -0,0 +1,77 @@
|
||||
:root {
|
||||
--secondary-color: #ff6700 /* Rot */
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: Geist-Bold;
|
||||
src: url(/fonts/Geist-Bold.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Geist-Medium;
|
||||
src: url(/fonts/Geist-Medium.ttf);
|
||||
}
|
||||
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: Geist-Bold;
|
||||
font-weight: 100;
|
||||
color: white;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: transparent;
|
||||
color: #8D19FF;
|
||||
text-shadow: none !important;
|
||||
animation: none !important;
|
||||
transition: none !important;
|
||||
|
||||
}
|
||||
|
||||
body{
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.imprint{
|
||||
width: 94%;
|
||||
max-width: 1500px;
|
||||
margin: auto;
|
||||
margin-top: 20vh;
|
||||
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.imprint p.big{
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
h2{
|
||||
font-size: 3em;
|
||||
line-height: 83%;
|
||||
padding-bottom: 1%;
|
||||
}
|
||||
|
||||
h3{
|
||||
padding-bottom: 5%;
|
||||
}
|
||||
|
||||
h4{
|
||||
padding-top: 5%;
|
||||
font-size: 2em;
|
||||
padding-bottom: 1%;
|
||||
}
|
||||
|
||||
.text{
|
||||
padding-bottom: 20%;
|
||||
}
|
||||
|
||||
a#back-home{
|
||||
font-size: 2em;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
+424
@@ -0,0 +1,424 @@
|
||||
/* Fullscreen-Menü */
|
||||
|
||||
:root {
|
||||
--secondary-color: #ff6700 /* Rot */
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: Geist-Bold;
|
||||
src: url(/fonts/Geist-Bold.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Geist-Medium;
|
||||
src: url(/fonts/Geist-Medium.ttf);
|
||||
}
|
||||
|
||||
|
||||
html.menu-open, body.menu-open {
|
||||
overflow: hidden;
|
||||
height: 100dvh;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#menu {
|
||||
display: flex; /* Stelle sicher, dass es nicht 'none' ist */
|
||||
flex-direction: column;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
transform: translateY(-100%);
|
||||
transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: fixed; /* Setzt das Menü über den gesamten Bildschirm */
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: #00000090;
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
|
||||
|
||||
|
||||
justify-content: flex-end;
|
||||
align-items: space-between;
|
||||
gap: 10px;
|
||||
z-index: 10; /* Stellt sicher, dass es über allem liegt */
|
||||
|
||||
}
|
||||
|
||||
#menu.active {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
|
||||
#menu .menu-header .logo{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 17dvh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: flex-end;
|
||||
padding-bottom: 3dvh;
|
||||
|
||||
}
|
||||
|
||||
#menu .menu-header .logo img{
|
||||
height: 40%;
|
||||
}
|
||||
|
||||
|
||||
#menu .menu-header{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: row;
|
||||
height: 20dvh;
|
||||
width: 100%;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
#menu .menu-header .first-block{
|
||||
width: 97%;
|
||||
height: 100%;
|
||||
background-color: var(--secondary-color);
|
||||
}
|
||||
|
||||
#menu .menu-header .second-block{
|
||||
width: 3%;
|
||||
height: 100%;
|
||||
background-color: var(--secondary-color);
|
||||
}
|
||||
|
||||
#menu .menu-center{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: row;
|
||||
height: 50dvh;
|
||||
width: 100%;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
|
||||
#menu .menu-center .first-block{
|
||||
width: 3%;
|
||||
height: 100%;
|
||||
background-color: var(--secondary-color);
|
||||
}
|
||||
|
||||
#menu .menu-center .second-block{
|
||||
width: 97%;
|
||||
height: 100%;
|
||||
background-color: var(--secondary-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
#menu nav {
|
||||
width: 94%;
|
||||
height: 44dvh;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 1.5%;
|
||||
align-items: flex-end;
|
||||
flex-direction: column;
|
||||
padding: 3%;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
#menu a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
font-size: clamp(1.2rem, 7.5dvh, 14dvw);
|
||||
line-height: 83%;
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
#menu nav .sitelinks{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
|
||||
}
|
||||
|
||||
#menu nav .webshop-container{
|
||||
width: min-content;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#menu nav .webshop-container a{
|
||||
|
||||
color: white;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
#coming-soon{
|
||||
color: #8D19FF;
|
||||
position: absolute;
|
||||
align-self: center;
|
||||
rotate: -30deg;
|
||||
font-size: clamp(1rem, 5vh, 5vw);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
#menu .webshop-container .logo-and-claim{
|
||||
width: min-content;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#menu .webshop-container .logo-and-claim .sr-logo{
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-left: 1%;
|
||||
margin-right: 1%;
|
||||
|
||||
}
|
||||
|
||||
#menu .webshop-container .logo-and-claim .sr-logo img{
|
||||
width: auto;
|
||||
height: clamp(1rem, 7vh, 7vw);
|
||||
|
||||
}
|
||||
|
||||
|
||||
#menu .webshop-container .logo-and-claim p{
|
||||
text-align: right;
|
||||
color: white;
|
||||
font-size: clamp(1.5rem, 3vh, 3vw);
|
||||
line-height: 83%;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#menu .webshop-container .logo-and-claim #stoned-rocks-1{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#menu .imprint{
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding-right: 3%;
|
||||
}
|
||||
#menu .imprint a{
|
||||
color: white;
|
||||
font-family: Geist-Medium;
|
||||
font-weight: 100;
|
||||
font-size: clamp(1rem, 2vh, 2vw);
|
||||
}
|
||||
|
||||
#menu .lower-part{
|
||||
height: 30vh;
|
||||
}
|
||||
|
||||
#menu .contact-links{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
padding: 3%;
|
||||
|
||||
}
|
||||
|
||||
#menu .contact-links a{
|
||||
line-height: 100%;
|
||||
color: white;
|
||||
font-size: clamp(1.4rem, 3vh, 3vw);
|
||||
font-family: Geist-Medium;
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
#menu .contact-links .left{
|
||||
height: 6vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
#menu .contact-links .right{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
height: 6vh;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
#menuPlayPause {
|
||||
background: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
#menuPlayPause img {
|
||||
background:none;
|
||||
border: none; /* Entfernt den grauen Hintergrund */
|
||||
width: 40px; /* Passe die Größe an */
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-music-control{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-top: 5vh;
|
||||
padding-bottom: 5vh;
|
||||
}
|
||||
|
||||
/* Soundwave-Button */
|
||||
#soundwaveButton {
|
||||
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
z-index: 30;
|
||||
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
|
||||
box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
|
||||
border-radius: 50%;
|
||||
|
||||
}
|
||||
|
||||
.wave-line {
|
||||
width: 45px;
|
||||
height: 5px;
|
||||
background-color: white;
|
||||
|
||||
transition: all 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
/* Weichere, harmonische Wellenbewegung */
|
||||
@keyframes waveMotion {
|
||||
0%, 100% { transform: translateY(0) scaleY(1); }
|
||||
25% { transform: translateY(-4px) scaleY(1.15); }
|
||||
50% { transform: translateY(3px) scaleY(0.95); }
|
||||
75% { transform: translateY(-2px) scaleY(1.1); }
|
||||
}
|
||||
|
||||
/* Linien bewegen sich leicht zeitversetzt */
|
||||
#soundwaveButton.playing .wave-line:nth-child(1) {
|
||||
animation: waveMotion 1.2s infinite ease-in-out alternate;
|
||||
}
|
||||
|
||||
#soundwaveButton.playing .wave-line:nth-child(2) {
|
||||
animation: waveMotion 1.2s infinite ease-in-out alternate;
|
||||
animation-delay: 0.2s;
|
||||
}
|
||||
|
||||
#soundwaveButton.playing .wave-line:nth-child(3) {
|
||||
animation: waveMotion 1.2s infinite ease-in-out alternate;
|
||||
animation-delay: 0.4s;
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 1000px){
|
||||
|
||||
#menu nav{
|
||||
|
||||
flex-direction: row-reverse;
|
||||
justify-content: space-between;
|
||||
|
||||
align-items: center;
|
||||
width: 94vw;
|
||||
padding: 0;
|
||||
padding-right: 3%;
|
||||
padding-left: 3%;
|
||||
height: 49vh;
|
||||
|
||||
}
|
||||
|
||||
#menu nav .sitelinks{
|
||||
width: 50%;
|
||||
}
|
||||
#menu nav .webshop-container{
|
||||
margin-left: 6%;
|
||||
width: 35%;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#menu nav .webshop-container a{
|
||||
font-size: clamp(2rem, 8vh, 8vw);
|
||||
|
||||
}
|
||||
|
||||
#menu .webshop-container .logo-and-claim{
|
||||
justify-content: center;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
#menu a{
|
||||
font-size: clamp(2rem, 10vh, 10vw);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
#menu a:hover{
|
||||
color: white;
|
||||
}
|
||||
|
||||
#menu #imprint{
|
||||
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#menu #webshop-link:hover{
|
||||
color: yellow;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#menu .contact-links a:hover{
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
+1364
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,464 @@
|
||||
:root {
|
||||
--secondary-color: #ff6700 /* Rot */
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: Geist-Bold;
|
||||
src: url(/fonts/Geist-Bold.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Geist-Medium;
|
||||
src: url(/fonts/Geist-Medium.ttf);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: Geist-Bold;
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
body{
|
||||
background-color: black;
|
||||
|
||||
}
|
||||
|
||||
|
||||
header{
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
color: white;
|
||||
width: 100%;
|
||||
height: 5vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
z-index: 40;
|
||||
background-color: transparent;
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
header.menu-open {
|
||||
backdrop-filter:none;
|
||||
-webkit-backdrop-filter: none;
|
||||
|
||||
color: black;
|
||||
}
|
||||
|
||||
header #logo{
|
||||
font-size: 1em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
h2{
|
||||
font-size: 3em;
|
||||
margin-top: 10vh;
|
||||
color: white;
|
||||
padding-left: 3%;
|
||||
padding-right: 3%;
|
||||
margin-bottom: 3vh;
|
||||
line-height: 83%;
|
||||
}
|
||||
|
||||
.partners{
|
||||
padding-left: 3%;
|
||||
padding-right: 3%;
|
||||
margin-bottom: 1vh;
|
||||
}
|
||||
|
||||
.partners p{
|
||||
color: white;
|
||||
font-family: Geist-Medium;
|
||||
font-weight: 100;
|
||||
margin-bottom: 1vh;
|
||||
}
|
||||
|
||||
.partners a{
|
||||
text-decoration: none;
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
|
||||
.partners ul li{
|
||||
color: white;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.visual .subtitle{
|
||||
padding-left: 3%;
|
||||
padding-right: 3%;
|
||||
margin-top: 1vh;
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.row{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
|
||||
}
|
||||
|
||||
.text-box{
|
||||
color: white;
|
||||
padding-left: 3%;
|
||||
padding-right: 3%;
|
||||
margin-bottom: 5vh;
|
||||
margin-top: 10vh;
|
||||
}
|
||||
|
||||
.text-box h3{
|
||||
font-size: 2em;
|
||||
line-height: 83%;
|
||||
margin-bottom: 1vh;
|
||||
|
||||
}
|
||||
|
||||
.text-box h4{
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 2vh;
|
||||
line-height: 83%;
|
||||
font-family: Geist-Medium;
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
.text-box h5{
|
||||
line-height: 83%;
|
||||
margin-bottom: 1vh;
|
||||
|
||||
font-size: 2.5em;
|
||||
}
|
||||
|
||||
.text-box p{
|
||||
font-family: Geist-Medium;
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
.visual{
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: 2vh;
|
||||
}
|
||||
|
||||
.visual-stars-range{
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: 2vh;
|
||||
|
||||
}
|
||||
.visual-stars-range #stars-range{
|
||||
object-fit: contain;
|
||||
|
||||
|
||||
width: 110%;
|
||||
padding-left: 3%;
|
||||
padding-right: 3%;
|
||||
margin-bottom: 1vh;
|
||||
margin-top: 1vh;
|
||||
}
|
||||
|
||||
|
||||
.visual video{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#youre-id{
|
||||
width: 80%;
|
||||
padding-left: 10%;
|
||||
padding-right: 10%;
|
||||
margin-bottom: 3vh;
|
||||
|
||||
}
|
||||
|
||||
.visual p{
|
||||
font-size: 1em;
|
||||
color: white;
|
||||
line-height: 83%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.visual img{
|
||||
height: 100%;
|
||||
width: auto;
|
||||
|
||||
}
|
||||
|
||||
.visual-contain{
|
||||
object-fit: contain;
|
||||
width: 100vw;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.visual-contain img{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.double-visual{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-around;
|
||||
width: 94%;
|
||||
padding-left: 3%;
|
||||
padding-right: 3%;
|
||||
}
|
||||
|
||||
.double-visual .dv-child{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.double-visual .dv-child img{
|
||||
width: 20vw;
|
||||
}
|
||||
|
||||
.double-visual .dv-child p{
|
||||
font-family: Geist-Medium;
|
||||
margin-top: 2vh;
|
||||
margin-bottom: 5vh;
|
||||
color: white;
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
|
||||
#tge-keyvisual{
|
||||
padding-left: 3%;
|
||||
padding-right: 3%;
|
||||
margin-bottom: 1vh;
|
||||
margin-top: 1vh;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.visual .visual-row{
|
||||
width: 100vw;
|
||||
margin-bottom: 0.5vw;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.visual-row video{
|
||||
height: auto;
|
||||
object-fit: cover;
|
||||
width: 33vw;
|
||||
}
|
||||
.visual-row img{
|
||||
height: auto;
|
||||
object-fit: cover;
|
||||
width: 33vw;
|
||||
}
|
||||
.visual-row .cad-models{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 33vw;
|
||||
|
||||
}
|
||||
|
||||
.visual-row .cad-models img{
|
||||
width: 100%;
|
||||
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
|
||||
|
||||
footer {
|
||||
height: 20vh;
|
||||
background-color: black;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
footer a{
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 1500px){
|
||||
|
||||
.row{
|
||||
max-width: 1500px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
h2{
|
||||
font-size: 8em;
|
||||
max-width: 1500px;
|
||||
margin: auto;
|
||||
margin-bottom: 3vh;
|
||||
margin-top: 10vh;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
.visual .subtitle{
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
margin-top: 1vh;
|
||||
margin-bottom: 1vh;
|
||||
font-size: 1.5em;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.text-box{
|
||||
padding-left: 0%;
|
||||
}
|
||||
|
||||
.text-box h3{
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.text-box h4{
|
||||
font-size: 1.8em;
|
||||
}
|
||||
|
||||
.text-box h5{
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.text-box p{
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.partners{
|
||||
padding-left: 0%;
|
||||
padding-right: 0%;
|
||||
margin-bottom: 1vh;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-width: 1500px;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.partners p{
|
||||
color: white;
|
||||
font-family: Geist-Medium;
|
||||
font-weight: 100;
|
||||
margin-bottom: 1vh;
|
||||
}
|
||||
|
||||
.partners ul li{
|
||||
color: white;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
|
||||
#tge-visual-box{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 5vh
|
||||
}
|
||||
|
||||
#tge-keyvisual{
|
||||
width: 30vw;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 5vh;
|
||||
}
|
||||
|
||||
.visual-stars-range #stars-range{
|
||||
object-fit: contain;
|
||||
|
||||
|
||||
width: 1470px;
|
||||
padding-left: 3%;
|
||||
padding-right: 3%;
|
||||
margin-bottom: 1vh;
|
||||
margin-top: 1vh;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.visual img, .visual video{
|
||||
object-fit: cover;
|
||||
|
||||
max-height: 70vh;
|
||||
}
|
||||
|
||||
.visual-contain{
|
||||
width: 100%;
|
||||
|
||||
max-height: 70vh;
|
||||
margin: auto;
|
||||
margin-bottom: 1vh;
|
||||
}
|
||||
|
||||
.visual-contain img{
|
||||
object-fit: contain;
|
||||
max-height: 70vh;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#youre-id{
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#event-concept{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.visual .visual-row{
|
||||
width: 49.5%;
|
||||
justify-content: space-between;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.visual .visual-row video{
|
||||
width: 11vw;
|
||||
height: 40vh;
|
||||
object-fit: cover;
|
||||
}
|
||||
.visual .visual-row img{
|
||||
width: 11vw;
|
||||
object-fit: cover;
|
||||
height: 40vh;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.visual .visual-row .cad-models{
|
||||
object-fit: cover;
|
||||
width: 11vw;
|
||||
|
||||
}
|
||||
|
||||
.visual .visual-row .cad-models img{
|
||||
object-fit: cover;
|
||||
height: 20vh;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user