second screen draft

This commit is contained in:
Sahej Panag
2024-04-12 15:23:40 -04:00
parent 78988ed5ce
commit 443bc2e13e
8 changed files with 246 additions and 25 deletions

View File

@@ -15,9 +15,16 @@ html, body {
justify-content: center;
padding: 20px;
background: #B1D4E0;
gap: 15;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* shadow */
}
.logo {
height: 100px; /* Adjust this value as needed */
width: auto; /* Keep the logo's aspect ratio */
margin-bottom: 15px; /* Gap between logo and search box */
}
.filter-item + .filter-item {
margin-top: 20px; /* space between filter items */

View File

@@ -0,0 +1,57 @@
.wrapper {
display: flex;
flex-direction: column;
height: 100vh;
color: #FFFFFF;
}
.header {
display: flex;
justify-content: space-between;
padding: 10px 20px;
position: fixed;
width: 100%;
top: 0;
left: 0;
background-color: #145DA0;
}
.logo {
height: 80px; /* Adjust according to preference */
margin-right: auto;
}
.resultsContainer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 100px; /* Adjust based on header height to ensure content doesn't overlap */
margin: auto;
width: 90%;
max-width: 600px;
}
.resultsTable {
/* to be filled out */
width: 100%;
}
.searchAgainButton {
height: 50px;
padding: 4px 8px;
background-color: #0C2D48;
color: white;
border: none;
border-radius: 4px;
font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
cursor: pointer;
margin-right: 35px;
margin-top: 15px;
}
.searchAgainButton:hover {
background-color: #B1D4E0; /* lighter shade for hover effect */
}