2019-05-11 19:28:17 +02:00
|
|
|
@import url("fonts.css");
|
2020-05-05 16:09:33 +02:00
|
|
|
html {
|
|
|
|
box-sizing: border-box; }
|
|
|
|
|
|
|
|
*, *:before, *:after {
|
|
|
|
box-sizing: inherit; }
|
|
|
|
|
2019-05-11 19:28:17 +02:00
|
|
|
html {
|
|
|
|
background-color: #010018;
|
|
|
|
color: #e4e4e4;
|
|
|
|
height: 100%; }
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: Open Sans,Arial;
|
2020-05-05 16:09:33 +02:00
|
|
|
font-size: 10pt;
|
2019-05-11 19:28:17 +02:00
|
|
|
line-height: 1.4;
|
|
|
|
text-align: justify;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
min-height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column; }
|
2020-05-05 16:09:33 +02:00
|
|
|
@media (min-width: 650px) {
|
|
|
|
body {
|
|
|
|
font-size: 11pt; } }
|
|
|
|
@media (min-width: 1000px) {
|
|
|
|
body {
|
|
|
|
font-size: 12pt; } }
|
2019-05-11 19:28:17 +02:00
|
|
|
#head {
|
|
|
|
background-color: #178ca7;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0;
|
|
|
|
padding: 30px 60px;
|
|
|
|
color: #010018; }
|
|
|
|
#head .sitetitle {
|
|
|
|
font-size: 1.4em;
|
|
|
|
font-weight: bold; }
|
|
|
|
#head a, #head a:visited {
|
|
|
|
color: #010018; }
|
|
|
|
|
|
|
|
#ingredients {
|
2020-05-05 16:09:33 +02:00
|
|
|
margin: 30px 2vw;
|
2019-05-11 19:28:17 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 20px;
|
|
|
|
border: 1px solid #178ca7;
|
|
|
|
border-radius: 10px;
|
|
|
|
text-align: left; }
|
2020-05-05 16:09:33 +02:00
|
|
|
@media (min-width: 1000px) {
|
2019-05-11 19:28:17 +02:00
|
|
|
#ingredients {
|
|
|
|
float: left;
|
2020-05-05 16:09:33 +02:00
|
|
|
position: fixed;
|
2019-05-11 19:28:17 +02:00
|
|
|
margin-top: 30px;
|
2020-05-05 16:09:33 +02:00
|
|
|
margin-bottom: 0px; } }
|
|
|
|
@media (min-width: 1000px) {
|
|
|
|
#ingredients {
|
|
|
|
width: 250px;
|
|
|
|
margin-left: 25px;
|
|
|
|
margin-right: 25px; } }
|
|
|
|
@media (min-width: 1250px) {
|
|
|
|
#ingredients {
|
|
|
|
width: 300px;
|
2019-05-11 19:28:17 +02:00
|
|
|
margin-left: 50px;
|
2020-05-05 16:09:33 +02:00
|
|
|
margin-right: 50px; } }
|
2019-05-11 19:28:17 +02:00
|
|
|
#ingredients .ingred-title {
|
|
|
|
font-size: 1.3em;
|
|
|
|
font-weight: bold; }
|
2021-01-18 19:18:34 +01:00
|
|
|
#ingredients h2 {
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: bold; }
|
2019-05-13 13:43:42 +02:00
|
|
|
#ingredients .ingred-portions {
|
|
|
|
text-align: right;
|
|
|
|
font-style: italic; }
|
2019-05-11 20:53:33 +02:00
|
|
|
#ingredients .ingred-qt {
|
|
|
|
color: #efc586; }
|
2019-05-11 19:28:17 +02:00
|
|
|
#ingredients ul {
|
|
|
|
padding-left: 25px; }
|
|
|
|
|
|
|
|
#content {
|
2020-05-05 16:09:33 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 30px 2vw;
|
2019-05-11 19:28:17 +02:00
|
|
|
height: 100%; }
|
2020-05-05 16:09:33 +02:00
|
|
|
#content .content-inner {
|
|
|
|
width: 100%; }
|
|
|
|
@media (min-width: 1000px) {
|
|
|
|
#content {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 275px; }
|
|
|
|
#content .content-inner {
|
|
|
|
width: 650px; } }
|
|
|
|
@media (min-width: 1250px) {
|
|
|
|
#content {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 350px; }
|
|
|
|
#content .content-inner {
|
|
|
|
width: 800px; } }
|
|
|
|
@media (min-width: 1550px) {
|
|
|
|
#content {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0; } }
|
2019-05-11 19:28:17 +02:00
|
|
|
#content h1 {
|
2019-08-04 17:11:50 +02:00
|
|
|
font-size: 1.4em;
|
|
|
|
color: #ffc467; }
|
2019-05-11 19:28:17 +02:00
|
|
|
#content h2 {
|
|
|
|
font-size: 1.3em;
|
2019-08-04 17:11:50 +02:00
|
|
|
text-indent: 2ex;
|
|
|
|
color: #ffd89a; }
|
2019-05-11 19:28:17 +02:00
|
|
|
#content h3 {
|
|
|
|
font-size: 1.1em;
|
2019-08-04 17:11:50 +02:00
|
|
|
text-indent: 4ex;
|
|
|
|
color: #ffeccd; }
|
2020-05-05 20:56:43 +02:00
|
|
|
#content table {
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border: 2px solid #178ca7;
|
|
|
|
border-radius: 10px; }
|
|
|
|
#content table thead {
|
|
|
|
border-bottom: 2px solid #11667a; }
|
|
|
|
#content table td, #content table th {
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid #11667a; }
|
2019-05-11 19:28:17 +02:00
|
|
|
#content .pagenamerow {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between; }
|
|
|
|
#content #pagename {
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: bold; }
|
2021-01-30 21:28:00 +01:00
|
|
|
#content .source {
|
|
|
|
margin-top: 15px;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-style: italic; }
|
2019-05-11 19:28:17 +02:00
|
|
|
|
2021-01-10 18:17:55 +01:00
|
|
|
#main_photo {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
margin: 25px 0; }
|
|
|
|
@media (min-width: 1000px) {
|
|
|
|
#main_photo {
|
|
|
|
margin: 50px 0; } }
|
|
|
|
#main_photo a {
|
|
|
|
display: block;
|
|
|
|
width: 85%; }
|
|
|
|
@media (min-width: 1000px) {
|
|
|
|
#main_photo a {
|
|
|
|
width: 75%; } }
|
|
|
|
#main_photo img {
|
2021-01-10 18:31:24 +01:00
|
|
|
border-radius: 10px;
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto; }
|
2021-01-10 18:17:55 +01:00
|
|
|
|
2019-05-11 19:28:17 +02:00
|
|
|
#foot {
|
|
|
|
font-size: 0.7em;
|
2020-05-05 16:09:33 +02:00
|
|
|
color: #989898;
|
2019-05-11 19:28:17 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
2020-09-28 11:20:24 +02:00
|
|
|
flex-direction: column;
|
2019-05-11 19:28:17 +02:00
|
|
|
margin: 10px 20px;
|
|
|
|
margin-top: auto; }
|
2020-09-28 11:20:24 +02:00
|
|
|
@media (min-width: 650px) {
|
|
|
|
#foot {
|
|
|
|
flex-direction: row; } }
|
2019-05-11 19:28:17 +02:00
|
|
|
#foot > div {
|
2020-09-28 11:20:24 +02:00
|
|
|
margin: 5px 15px; }
|
|
|
|
@media (min-width: 650px) {
|
|
|
|
#foot > div {
|
|
|
|
margin: 0 15px; } }
|
2019-05-11 19:28:17 +02:00
|
|
|
a, a:visited {
|
2020-10-22 23:13:05 +02:00
|
|
|
color: #6ec1e1;
|
2019-05-11 19:28:17 +02:00
|
|
|
text-decoration: none; }
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style-type: circle; }
|
|
|
|
|
2021-12-17 19:56:29 +01:00
|
|
|
.with_abbrv {
|
|
|
|
text-decoration: underline dotted; }
|
|
|
|
|
2019-08-04 17:11:50 +02:00
|
|
|
.homepagecat {
|
|
|
|
margin-top: 50px; }
|
|
|
|
|
2019-05-11 19:28:17 +02:00
|
|
|
.headbadges {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 20px;
|
|
|
|
margin-left: 30px; }
|
|
|
|
|
|
|
|
.headbadge {
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 10px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-left: 10px;
|
|
|
|
/* Should be overriden */
|
|
|
|
border: 2px solid;
|
|
|
|
border-color: #178ca7;
|
|
|
|
color: #178ca7; }
|
|
|
|
.headbadge-veganness-vegan {
|
|
|
|
border-color: #40d540;
|
|
|
|
color: #40d540; }
|
|
|
|
.headbadge-veganness-veganisable {
|
|
|
|
border-color: #bfce2a;
|
|
|
|
color: #bfce2a; }
|
|
|
|
.headbadge-veganness-vege {
|
|
|
|
border-color: #ce8649;
|
|
|
|
color: #ce8649; }
|
|
|
|
.headbadge-season-winter {
|
|
|
|
border-color: #02bace;
|
|
|
|
color: #02bace; }
|
|
|
|
.headbadge-season-summer {
|
|
|
|
border-color: #ff3838;
|
|
|
|
color: #ff3838; }
|
2020-08-27 13:21:23 +02:00
|
|
|
.headbadge-quality {
|
|
|
|
border-color: #ffee00;
|
|
|
|
color: #ffee00; }
|
2019-05-11 19:28:17 +02:00
|
|
|
|
|
|
|
.badges {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 0.5ex; }
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
font-weight: bold;
|
|
|
|
display: inline-block;
|
|
|
|
border: 2px solid black;
|
|
|
|
padding: 0 0.5ex;
|
|
|
|
border-radius: 1.5ex;
|
|
|
|
margin: 0.2ex 0;
|
|
|
|
margin-left: 0.6ex;
|
|
|
|
font-size: 0.7em;
|
|
|
|
position: relative;
|
|
|
|
bottom: 0.2ex; }
|
|
|
|
.badge-veganness-vegan {
|
|
|
|
border-color: #40d540;
|
|
|
|
color: #40d540; }
|
|
|
|
.badge-veganness-veganisable {
|
|
|
|
border-color: #bfce2a;
|
|
|
|
color: #bfce2a; }
|
|
|
|
.badge-veganness-vege {
|
|
|
|
border-color: #ce8649;
|
|
|
|
color: #ce8649; }
|
|
|
|
.badge-season-winter {
|
|
|
|
border-color: #02bace;
|
|
|
|
color: #02bace; }
|
|
|
|
.badge-season-summer {
|
|
|
|
border-color: #ff3838;
|
|
|
|
color: #ff3838; }
|
2020-08-27 13:21:23 +02:00
|
|
|
.badge-quality {
|
|
|
|
border-color: #ffee00;
|
|
|
|
color: #ffee00; }
|
2021-01-10 18:17:55 +01:00
|
|
|
.badge-photo {
|
|
|
|
border-color: #7faca8;
|
|
|
|
color: #7faca8; }
|
2020-09-18 11:51:21 +02:00
|
|
|
|
|
|
|
.content-inner figure {
|
|
|
|
margin: 40px 0; }
|
|
|
|
|
|
|
|
.content-inner .invert_colors img {
|
|
|
|
filter: invert(100%);
|
|
|
|
-webkit-filter: invert(100%); }
|
|
|
|
|
|
|
|
.content-inner img {
|
|
|
|
max-width: 100%; }
|