templates/styles.html.twig line 1

  1. {% block styles %}
  2.     <style>
  3.         nav {
  4.             background-color: #4a5b95;
  5.             padding: 10px;
  6.             margin-left: 5px;
  7.             margin-bottom: 20px;
  8.         }
  9.         nav h1 {
  10.             font-size: 28px;
  11.             color: white;
  12.             margin-top: 0;
  13.             margin-bottom: 0;
  14.         }
  15.         nav .button {
  16.             display: block;
  17.             width: 12%;
  18.             padding: 15px;
  19.             background-color: #6b82d2;
  20.             color: white;
  21.             text-align: right;
  22.             text-decoration: none;
  23.             border-radius: 0;
  24.             box-sizing: border-box;
  25.             font-size: 18px;
  26.             float: right;
  27.             margin-right: 10px;
  28.             margin-top: -42px;
  29.         }
  30.         .button {
  31.             display: block;
  32.             width: 100%;
  33.             padding: 15px;
  34.             background-color: white;
  35.             color: black;
  36.             text-align: left;
  37.             text-decoration: none;
  38.             border-radius: 0;
  39.             box-sizing: border-box;
  40.             font-size: 18px;
  41.         }
  42.         .button:hover {
  43.             background-color: #6b82d2;
  44.             color: white;
  45.         }
  46.         ul {
  47.             list-style-type: none;
  48.             margin: 0;
  49.             padding-left: 5px;
  50.         }
  51.         li {
  52.             list-style-type: none;;
  53.             margin-bottom: 5px;
  54.         }
  55.         a {
  56.             color: #999999;
  57.             text-decoration: none;
  58.         }
  59.         a:hover {
  60.             color: #757575;
  61.         }
  62.         body {
  63.             font-family: Cambria;
  64.             background-color: #EDE9F5;
  65.         }
  66.         table {
  67.             border-collapse: collapse;
  68.             width: 100%;
  69.         }
  70.         th, td {
  71.             border: 1px solid #9799cb;
  72.             padding: 8px;
  73.             text-align: left;
  74.         }
  75.         th {
  76.             background-color: #9799cb;
  77.         }
  78.         .search-h1 {
  79.             text-align: right;
  80.         }
  81.         .search-container {
  82.             display: flex;
  83.             justify-content: left;
  84.             align-items: center;
  85.             margin: 20px 0;
  86.         }
  87.         .search-input {
  88.             padding: 8px;
  89.             font-size: 16px;
  90.             border-radius: 1px;
  91.             outline: none;
  92.             background-color: #f1f1f1;
  93.         }
  94.         .search-select {
  95.             padding: 10px;
  96.             font-size: 16px;
  97.             border-radius: 3px;
  98.             outline: none;
  99.             background-color: #f1f1f1;
  100.             -webkit-appearance: none;
  101.             -moz-appearance: none;
  102.             appearance: none;
  103.             background-size: 20px;
  104.             padding-right: 30px;
  105.         }
  106.         .search-select:hover {
  107.             background-color: #6b82d2;
  108.         }
  109.         .search-select option {
  110.             font-size: 16px;
  111.             background-color: #f1f1f1;
  112.         }
  113.         .search-button {
  114.             padding: 10px 20px;
  115.             background-color: #6b82d2;
  116.             border: none;
  117.             border-radius: 0 5px 5px 0;
  118.             font-size: 16px;
  119.             color: white;
  120.             transition: background-color 0.2s ease-in-out;
  121.             cursor: pointer;
  122.         }
  123.         .search-button:hover {
  124.             background-color: #337ab7;
  125.             color: white;
  126.         }
  127.         .title-container {
  128.             margin-left: auto;
  129.         }
  130.     </style>
  131. {% endblock %}