2019-10-24 13:50:51 +02:00
|
|
|
:root {
|
2020-08-14 04:57:02 +02:00
|
|
|
/* Darkmode colors */
|
2020-08-17 10:43:11 +02:00
|
|
|
--gray0: #d0d0d8;
|
|
|
|
--gray1: #8e8e93;
|
|
|
|
--gray2: #636366;
|
|
|
|
--gray3: #48484a;
|
|
|
|
--gray4: #3a3a3c;
|
|
|
|
--gray5: #2c2c2e;
|
|
|
|
--gray6: #1c1c1e;
|
|
|
|
--accent: #0a84ff;
|
|
|
|
|
|
|
|
--bg: #2c2c2e;
|
|
|
|
--navbarBg: #1c1c1e;
|
|
|
|
|
|
|
|
--fontFamily: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
|
|
--fontSize: 13px;
|
2019-10-24 13:50:51 +02:00
|
|
|
}
|
2019-12-05 21:10:45 +01:00
|
|
|
|
2019-10-30 23:40:36 +01:00
|
|
|
html {
|
2020-02-29 17:23:20 +01:00
|
|
|
height: 100%;
|
2019-10-30 23:40:36 +01:00
|
|
|
}
|
2019-10-24 13:50:51 +02:00
|
|
|
|
2015-03-31 20:15:22 +02:00
|
|
|
body {
|
2020-02-29 17:23:20 +01:00
|
|
|
padding-top: 70px;
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--bg);
|
|
|
|
color: var(--gray1);
|
2020-02-29 17:23:20 +01:00
|
|
|
height: 100%;
|
2020-08-17 10:43:11 +02:00
|
|
|
font-family: var(--fontFamily);
|
|
|
|
font-size: var(--fontSize);
|
2019-11-16 14:54:45 +01:00
|
|
|
}
|
2019-12-05 19:39:35 +01:00
|
|
|
|
2020-08-14 04:57:02 +02:00
|
|
|
.background {
|
2020-02-29 17:23:20 +01:00
|
|
|
position: absolute;
|
|
|
|
z-index: -1000;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
-webkit-filter: blur(2px) brightness(50%);
|
|
|
|
-moz-filter: blur(2px) brightness(50%);
|
|
|
|
-o-filter: blur(2px) brightness(50%);
|
|
|
|
-ms-filter: blur(2px) brightness(50%);
|
|
|
|
filter: blur(2px) brightness(50%);
|
2015-03-31 20:15:22 +02:00
|
|
|
}
|
|
|
|
|
2019-05-30 09:40:17 +02:00
|
|
|
.padding-top {
|
2020-02-29 17:23:20 +01:00
|
|
|
padding-top: 10px;
|
2019-05-30 09:40:17 +02:00
|
|
|
}
|
|
|
|
|
2015-03-31 20:15:22 +02:00
|
|
|
@media (min-width: 992px) {
|
2020-02-29 17:23:20 +01:00
|
|
|
.align-bottom {
|
|
|
|
margin-top: 2.5em;
|
|
|
|
}
|
2015-03-31 20:15:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.full-width {
|
2020-02-29 17:23:20 +01:00
|
|
|
width: 100%;
|
2015-03-31 20:15:22 +02:00
|
|
|
}
|
2015-06-24 22:10:26 +02:00
|
|
|
|
2019-12-06 12:32:51 +01:00
|
|
|
.time_data{
|
2020-02-29 17:23:20 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2019-12-06 12:32:51 +01:00
|
|
|
}
|
|
|
|
|
2019-05-31 19:05:40 +02:00
|
|
|
@media(min-width: 768px) and (max-width: 991px){
|
2020-02-29 17:23:20 +01:00
|
|
|
/* Make sure the small map in the location page has the same with as the block above */
|
|
|
|
.sm-no-side-padding {
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
2019-05-31 19:05:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media(min-width: 992px){
|
2020-02-29 17:23:20 +01:00
|
|
|
.md-no-right-padding {
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
2019-05-31 19:05:40 +02:00
|
|
|
}
|
2019-05-31 19:15:40 +02:00
|
|
|
|
2019-05-29 20:12:19 +02:00
|
|
|
a.divLink {
|
2020-02-29 17:23:20 +01:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
/* Makes sure the link doesn't get underlined */
|
|
|
|
z-index: 10;
|
|
|
|
/* raises anchor tag above everything else in div */
|
|
|
|
background-color: white;
|
|
|
|
/*workaround to make clickable in IE */
|
|
|
|
opacity: 0;
|
|
|
|
/*workaround to make clickable in IE */
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
/*workaround to make clickable in IE */
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.footerWrapper {
|
2020-02-29 17:23:20 +01:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin: 0 -1rem;
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
|
|
|
.footerWrapper>div{
|
2020-02-29 17:23:20 +01:00
|
|
|
margin: 0 1rem;
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
|
|
|
|
2019-10-30 23:40:36 +01:00
|
|
|
.hidden {
|
2020-02-29 17:23:20 +01:00
|
|
|
display: none;
|
2019-10-30 23:40:36 +01:00
|
|
|
}
|
|
|
|
|
2019-11-22 07:53:24 +01:00
|
|
|
.table-hover tbody tr:hover{
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray4);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
a {
|
2020-08-17 10:43:11 +02:00
|
|
|
color: var(--accent);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.btn-primary {
|
2020-08-17 10:43:11 +02:00
|
|
|
color: var(--gray6);
|
|
|
|
background-color: var(--accent);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
|
|
|
|
2019-11-22 07:53:24 +01:00
|
|
|
.navbar {
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--navbarBg);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2020-08-14 04:57:02 +02:00
|
|
|
.navbar-default .navbar-nav .active a {
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray5);
|
|
|
|
color: var(--gray1);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2020-08-14 04:57:02 +02:00
|
|
|
.navbar-default .navbar-nav .active a:hover,
|
|
|
|
.navbar-default .navbar-nav .active a:focus,
|
|
|
|
.navbar-default .navbar-nav > li > a:hover,
|
|
|
|
.navbar-default .navbar-nav > li > a:focus {
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray4);
|
|
|
|
color: var(--gray0);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2020-08-14 04:57:02 +02:00
|
|
|
.navbar-default .navbar-nav li a,
|
|
|
|
.navbar-default .navbar-brand {
|
2020-08-17 10:43:11 +02:00
|
|
|
color: var(--gray1);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2020-08-14 04:57:02 +02:00
|
|
|
.navbar-default .navbar-nav li a:hover,
|
|
|
|
.navbar-default .navbar-nav li a:focus,
|
|
|
|
.navbar-default .navbar-brand:hover,
|
|
|
|
.navbar-default .navbar-brand:focus {
|
2020-08-17 10:43:11 +02:00
|
|
|
color: var(--gray0);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2021-07-17 20:52:36 +02:00
|
|
|
hr {
|
2020-08-17 10:43:11 +02:00
|
|
|
border-top: 1px solid var(--gray2);
|
2021-07-17 20:52:36 +02:00
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 23px;
|
|
|
|
}
|
|
|
|
footer {
|
|
|
|
padding: 23px 0;
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
|
|
|
|
2019-11-22 07:53:24 +01:00
|
|
|
h1, h2, h3, h4, h5, h6{
|
2020-08-17 10:43:11 +02:00
|
|
|
color: var(--gray1);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
|
|
|
|
2020-08-14 04:57:02 +02:00
|
|
|
.jumbotron, .darker, .order_row {
|
2020-08-17 10:43:11 +02:00
|
|
|
background: var(--gray5);
|
2020-08-14 04:57:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.darker {
|
|
|
|
margin-top: 10px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2020-08-14 04:57:02 +02:00
|
|
|
|
2019-11-22 07:53:24 +01:00
|
|
|
.table tbody tr td {
|
2020-08-17 10:43:11 +02:00
|
|
|
border-top: 1px solid var(--gray3);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.table thead tr th {
|
2020-08-17 10:43:11 +02:00
|
|
|
border-bottom: 2px solid var(--gray2);
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.navbar-toggle .icon-bar {
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray0);
|
2020-02-29 17:23:20 +01:00
|
|
|
opacity: 0.5;
|
2019-10-28 16:09:21 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.select2-container--default .select2-selection--single{
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray3);
|
|
|
|
color: var(--gray0);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.select2-container--default .select2-selection--single .select2-selection__rendered{
|
2020-08-17 10:43:11 +02:00
|
|
|
color: var(--gray0);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.select2-results__option{
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray5);
|
|
|
|
color: var(--gray0);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray4);
|
|
|
|
color: var(--gray0);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
|
|
|
|
.bootstrap-datetimepicker-widget table td.day:hover,
|
|
|
|
.bootstrap-datetimepicker-widget table td.hour:hover,
|
|
|
|
.bootstrap-datetimepicker-widget table td.minute:hover,
|
|
|
|
.bootstrap-datetimepicker-widget table td span:hover,
|
|
|
|
.bootstrap-datetimepicker-widget table td.second:hover {
|
2020-08-17 10:43:11 +02:00
|
|
|
background: var(--gray4);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-10-28 16:09:21 +01:00
|
|
|
|
2019-11-22 07:53:24 +01:00
|
|
|
.select2-container--default .select2-results__option[aria-selected=true]{
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--accent);
|
|
|
|
color: var(--gray0);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.select2-search{
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray2);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2020-02-24 14:32:11 +01:00
|
|
|
.select2-selection--multiple .select2-search{
|
2020-02-29 17:23:20 +01:00
|
|
|
background-color: transparent;
|
2020-02-24 14:32:11 +01:00
|
|
|
}
|
|
|
|
.select2-selection--multiple .select2-search{
|
2020-02-29 17:23:20 +01:00
|
|
|
background-color: transparent;
|
2020-02-24 14:32:11 +01:00
|
|
|
}
|
|
|
|
.select2-selection--multiple .select2-search.select2-search--inline .select2-search__field{
|
2020-02-29 17:23:20 +01:00
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding-left: 0.3em;
|
|
|
|
box-sizing: content-box;
|
2020-02-24 14:32:11 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.select2-search input{
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray0);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.dropdown-menu{
|
2020-08-17 10:43:11 +02:00
|
|
|
background-color: var(--gray5);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.form-control{
|
2020-08-17 10:43:11 +02:00
|
|
|
color: var(--gray0);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2019-11-22 07:53:24 +01:00
|
|
|
.form-control::placeholder{
|
2020-08-17 10:43:11 +02:00
|
|
|
color: var(--gray2);
|
2019-10-29 10:23:54 +01:00
|
|
|
}
|
2020-02-29 22:26:00 +01:00
|
|
|
|
2020-08-15 17:46:51 +02:00
|
|
|
.dish-choices summary {
|
|
|
|
font-style: italic;
|
2020-08-21 15:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
details summary {
|
2020-08-15 17:46:51 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2020-08-21 15:17:10 +02:00
|
|
|
details summary:before {
|
2020-08-15 17:46:51 +02:00
|
|
|
font-style: normal;
|
|
|
|
content: "⯈";
|
2020-08-21 15:17:10 +02:00
|
|
|
padding-right: 0.4em;
|
2020-08-15 17:46:51 +02:00
|
|
|
}
|
2020-08-21 15:17:10 +02:00
|
|
|
details[open] summary:before {
|
2020-08-15 17:46:51 +02:00
|
|
|
content: "⯆";
|
|
|
|
}
|