39 lines
1015 B
CSS
39 lines
1015 B
CSS
/****************************************************************************
|
|
* Containers. *
|
|
****************************************************************************/
|
|
|
|
.centered-container {
|
|
width: 100%;
|
|
text-align: center;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.background {
|
|
background-color: lightgray;
|
|
}
|
|
|
|
.image-container {
|
|
height: 75vh;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Content. *
|
|
****************************************************************************/
|
|
|
|
.image {
|
|
height: 100%;
|
|
}
|
|
|
|
.mauto {
|
|
margin: auto;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Grid. *
|
|
****************************************************************************/
|
|
|
|
.column {
|
|
text-align: center;
|
|
border: black 1px solid;
|
|
}
|