47 lines
782 B
CSS
Executable File
47 lines
782 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 white;
|
|
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;
|
|
}
|