52 lines
928 B
CSS
52 lines
928 B
CSS
html {
|
|
font-size: 14px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
|
|
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
|
}
|
|
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
a{
|
|
text-decoration: none;
|
|
}
|
|
|
|
.resultgrid {
|
|
display: flex;
|
|
grid-auto-flow: column;
|
|
grid-gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.card-control {
|
|
width: 25rem;
|
|
border-radius: 1rem;
|
|
background-color: #cbcbcb;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
}
|
|
|
|
.card-control img {
|
|
width: 100%;
|
|
border-radius: 1rem;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
}
|
|
|
|
.card-control p{
|
|
color: black;
|
|
text-align:center;
|
|
text-decoration:none;
|
|
} |