htdocs/theunderlandcouk/search/style.css
2024-01-12 23:07:46 +00:00

46 lines
780 B
CSS
Executable File

.search-wrapper {
display: flex;
flex-direction: column;
gap: .25rem;
}
input {
font-size: 1rem;
}
.user-cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: .25rem;
margin-top: 1rem;
}
.card {
border: 1px solid black;
background-color: white;
padding: .5rem;
}
.card > .header {
margin-bottom: .25rem;
}
.card > .body {
font-size: .8rem;
color: #777;
}
.hide {
display: none;
}
body {
font-family: 'Trebuchet MS', Arial;
background-image: url('../images/TheUnderland.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
.bigDivToFillOutSpace {
height: 1000px;
}