✨ Add map and company informations on Kontakt Page
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
.SocialMediaContainer {
|
||||
width: 80%;
|
||||
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
@@ -15,3 +15,75 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.TwoColumnLayout {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
width: 90vw;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
.columnChild {
|
||||
height: 40vh;
|
||||
width: 40vw;
|
||||
min-width: 600px;
|
||||
margin: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: row;
|
||||
border: 1px solid black;
|
||||
border-radius: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.mapouter {
|
||||
position: relative;
|
||||
text-align: right;
|
||||
height: 100%;
|
||||
width: 60%;
|
||||
border-radius: 0 0.5rem 0.5rem 0;
|
||||
}
|
||||
|
||||
.gmap_canvas {
|
||||
overflow: hidden;
|
||||
background: none !important;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border-radius: 0 0.5rem 0.5rem 0;
|
||||
}
|
||||
|
||||
.contactInfo {
|
||||
width: 40%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
p {
|
||||
transition: all 0.25s ease-in-out;
|
||||
&:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.TwoColumnLayout {
|
||||
flex-direction: column;
|
||||
.columnChild {
|
||||
width: 90vw;
|
||||
height: 40vh;
|
||||
min-width: 0;
|
||||
.mapouter {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.contactInfo {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user