templates/styles.html.twig line 1
{% block styles %}
<style>
nav {
background-color: #4a5b95;
padding: 10px;
margin-left: 5px;
margin-bottom: 20px;
}
nav h1 {
font-size: 28px;
color: white;
margin-top: 0;
margin-bottom: 0;
}
nav .button {
display: block;
width: 12%;
padding: 15px;
background-color: #6b82d2;
color: white;
text-align: right;
text-decoration: none;
border-radius: 0;
box-sizing: border-box;
font-size: 18px;
float: right;
margin-right: 10px;
margin-top: -42px;
}
.button {
display: block;
width: 100%;
padding: 15px;
background-color: white;
color: black;
text-align: left;
text-decoration: none;
border-radius: 0;
box-sizing: border-box;
font-size: 18px;
}
.button:hover {
background-color: #6b82d2;
color: white;
}
ul {
list-style-type: none;
margin: 0;
padding-left: 5px;
}
li {
list-style-type: none;;
margin-bottom: 5px;
}
a {
color: #999999;
text-decoration: none;
}
a:hover {
color: #757575;
}
body {
font-family: Cambria;
background-color: #EDE9F5;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #9799cb;
padding: 8px;
text-align: left;
}
th {
background-color: #9799cb;
}
.search-h1 {
text-align: right;
}
.search-container {
display: flex;
justify-content: left;
align-items: center;
margin: 20px 0;
}
.search-input {
padding: 8px;
font-size: 16px;
border-radius: 1px;
outline: none;
background-color: #f1f1f1;
}
.search-select {
padding: 10px;
font-size: 16px;
border-radius: 3px;
outline: none;
background-color: #f1f1f1;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-size: 20px;
padding-right: 30px;
}
.search-select:hover {
background-color: #6b82d2;
}
.search-select option {
font-size: 16px;
background-color: #f1f1f1;
}
.search-button {
padding: 10px 20px;
background-color: #6b82d2;
border: none;
border-radius: 0 5px 5px 0;
font-size: 16px;
color: white;
transition: background-color 0.2s ease-in-out;
cursor: pointer;
}
.search-button:hover {
background-color: #337ab7;
color: white;
}
.title-container {
margin-left: auto;
}
</style>
{% endblock %}