@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
40 lines (35 loc) • 687 B
CSS
/* SPDX-License-Identifier: Apache-2.0 */
.container {
background-color: white;
border-radius: 8px;
filter: drop-shadow(0px 4px 7px #0004382c);
display: flex;
flex-direction: column;
padding: 1em;
}
.container:active {
background-color: #c6ceda;
}
.container > button {
flex: 1;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
border: none;
background: transparent;
}
.container > button > img {
width: 25%;
opacity: 0.7;
padding-bottom: 1em;
}
.container > button > span {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2em;
font-weight: 600;
color: #3f68a7;
}