tverkettider/static/style.css

82 lines
1.4 KiB
CSS
Raw Normal View History

2023-04-11 21:05:35 +02:00
* {
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 {
2023-04-29 13:59:36 +02:00
max-width: 800px;
2023-04-11 21:05:35 +02:00
background-color: #fff;
display: flex;
flex-direction: row;
2023-04-29 13:59:36 +02:00
width: 100%;
2023-04-11 21:05:35 +02:00
}
#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;
}
2023-04-29 13:59:36 +02:00
#search-container select {
width: 100%;
padding: 0 20px;
font-size: 16px;
}
2023-04-11 21:05:35 +02:00
#results-container {}
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
border-bottom: 1px solid #ddd;
text-align: center;
2023-04-29 13:59:36 +02:00
padding: 4px 16px;
2023-04-11 21:05:35 +02:00
}
tr:nth-child(even) {
background-color: #00000010;
}