102 lines
1.5 KiB
SCSS
102 lines
1.5 KiB
SCSS
.SocialMediaContainer {
|
|
width: 80%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
|
|
div {
|
|
a {
|
|
> span {
|
|
> img {
|
|
filter: drop-shadow(1px 1px 4px #4444dd);
|
|
}
|
|
transition: all 0.5s;
|
|
}
|
|
:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.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;
|
|
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 15px;
|
|
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%;
|
|
}
|
|
.SocialMediaContainer {
|
|
justify-content: center;
|
|
div {
|
|
flex-basis: 50%;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|