Initial
This commit is contained in:
commit
542ca5a14e
7 changed files with 900 additions and 0 deletions
1
static/script.js
Normal file
1
static/script.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
console.log("Javascript is executing properly...");
|
||||
74
static/style.css
Normal file
74
static/style.css
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
* {
|
||||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue