tverkettider/static/style.css
2024-11-05 22:41:56 +01:00

82 lines
No EOL
1.4 KiB
CSS
Executable file

* {
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 {
max-width: 800px;
background-color: #fff;
display: flex;
flex-direction: row;
width: 100%;
}
#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;
}
#search-container select {
width: 100%;
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: 4px 16px;
}
tr:nth-child(even) {
background-color: #00000010;
}