43 lines
622 B
CSS
43 lines
622 B
CSS
#landing-wrapper{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#landing{
|
|
width: 820px;
|
|
min-height: 440px;
|
|
}
|
|
|
|
#landing-header{
|
|
text-align: center;
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
#landing-header-links a{
|
|
margin-left: 1em;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
#landing-buttons{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-top: 1rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
iframe{
|
|
margin-left: 0.5rem;
|
|
border: none;
|
|
}
|
|
|
|
@media only screen and (max-width: 1300px) {
|
|
iframe{
|
|
display: none;
|
|
}
|
|
}
|