74 lines
1.3 KiB
CSS
74 lines
1.3 KiB
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
font-family: arial, sans-serif;
|
||
|
/* font-family: Nunito, sans-serif; */
|
||
|
}
|
||
|
|
||
|
#header {
|
||
|
/* border: 1px dotted green; */
|
||
|
width: 100%;
|
||
|
height: 100px;
|
||
|
background-color: #fff;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
#site-container {
|
||
|
/* border: 3px dotted blue; */
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
/* justify-content: top; */
|
||
|
align-items: center;
|
||
|
background-color: #f1f1f1;
|
||
|
}
|
||
|
|
||
|
#search-container {
|
||
|
background-color: #fff;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
#search-container input {
|
||
|
border: 1px dotted red;
|
||
|
width: 100%;
|
||
|
height: 50px;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 5px;
|
||
|
padding: 0 20px;
|
||
|
font-size: 16px;
|
||
|
margin: 1px;
|
||
|
}
|
||
|
|
||
|
#search-container button {
|
||
|
border: 1px dotted red;
|
||
|
width: 100%;
|
||
|
height: 50px;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 5px;
|
||
|
padding: 0 20px;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
#results-container {}
|
||
|
|
||
|
table {
|
||
|
border-collapse: collapse;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
th,
|
||
|
td {
|
||
|
border-bottom: 1px solid #ddd;
|
||
|
text-align: center;
|
||
|
padding: 16px;
|
||
|
}
|
||
|
|
||
|
tr:nth-child(even) {
|
||
|
background-color: #00000010;
|
||
|
}
|