2020-10-30 00:17:25 +01:00
|
|
|
/* FONTS */
|
2020-10-30 18:27:59 +01:00
|
|
|
|
|
|
|
/* Überschrift Font */
|
|
|
|
|
2020-10-30 00:17:25 +01:00
|
|
|
/* im-fell-english-sc-regular - latin */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'IM Fell English SC';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: url('../fonts/im-fell-english-sc-v10-latin-regular.eot'); /* IE9 Compat Modes */
|
|
|
|
src: local('IM FELL English SC'), local('IM_FELL_English_SC'),
|
|
|
|
url('../fonts/im-fell-english-sc-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
|
|
|
url('../fonts/im-fell-english-sc-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
|
|
|
|
url('../fonts/im-fell-english-sc-v10-latin-regular.woff') format('woff'), /* Modern Browsers */
|
|
|
|
url('../fonts/im-fell-english-sc-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
|
|
|
|
url('../fonts/im-fell-english-sc-v10-latin-regular.svg#IMFellEnglishSC') format('svg'); /* Legacy iOS */
|
|
|
|
}
|
2020-10-30 18:27:59 +01:00
|
|
|
|
|
|
|
/* Fließtext Font */
|
|
|
|
|
2020-10-30 00:17:25 +01:00
|
|
|
/* im-fell-great-primer-regular - latin */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'IM Fell Great Primer';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: url('../fonts/im-fell-great-primer-v10-latin-regular.eot'); /* IE9 Compat Modes */
|
|
|
|
src: local('IM FELL Great Primer Roman'), local('IM_FELL_Great_Primer_Roman'),
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-regular.woff') format('woff'), /* Modern Browsers */
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-regular.svg#IMFellGreatPrimer') format('svg'); /* Legacy iOS */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* im-fell-great-primer-italic - latin */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'IM Fell Great Primer';
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: 400;
|
|
|
|
src: url('../fonts/im-fell-great-primer-v10-latin-italic.eot'); /* IE9 Compat Modes */
|
|
|
|
src: local('IM FELL Great Primer Italic'), local('IM_FELL_Great_Primer_Italic'),
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-italic.woff') format('woff'), /* Modern Browsers */
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
|
|
|
|
url('../fonts/im-fell-great-primer-v10-latin-italic.svg#IMFellGreatPrimer') format('svg'); /* Legacy iOS */
|
|
|
|
}
|
2020-10-30 18:27:59 +01:00
|
|
|
|
|
|
|
/* Festlegung Font */
|
|
|
|
|
2020-10-30 00:17:25 +01:00
|
|
|
body {
|
|
|
|
font-family: 'IM Fell Great Primer';
|
2020-10-30 18:27:59 +01:00
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
background-color: #000;
|
|
|
|
color: #f9f9ed;
|
2020-10-30 00:17:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5 {
|
|
|
|
font-family: 'IM Fell English SC'
|
|
|
|
}
|
2020-10-29 01:26:25 +01:00
|
|
|
|
2020-10-30 18:27:59 +01:00
|
|
|
/* Breitenanpassung */
|
2020-10-29 01:26:25 +01:00
|
|
|
|
|
|
|
@media only screen and (min-width: 1000px) {
|
|
|
|
div.collection {
|
|
|
|
width: calc(33.3333% - 8px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 600px) and (max-width: 999px) {
|
|
|
|
div.collection {
|
|
|
|
width: calc(50% - 8px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (max-width: 599px) {
|
|
|
|
div.collection {
|
|
|
|
width: calc(100% - 8px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-30 18:27:59 +01:00
|
|
|
/* Collection */
|
|
|
|
|
|
|
|
div.collection_container {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.collection {
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
|
2020-10-29 01:26:25 +01:00
|
|
|
div.collection h1 {
|
|
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.collection div.col-desc {
|
2020-10-30 01:12:05 +01:00
|
|
|
display: none;
|
2020-10-29 01:26:25 +01:00
|
|
|
padding: 10px;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
2020-10-30 18:27:59 +01:00
|
|
|
/* Img Collections + Slide in stuff */
|
2020-10-29 01:26:25 +01:00
|
|
|
|
2020-10-30 01:12:05 +01:00
|
|
|
.flexbox-col-img {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2020-10-29 01:26:25 +01:00
|
|
|
.col-img-container {
|
2020-10-30 01:12:05 +01:00
|
|
|
position: relative;
|
|
|
|
width: 350px;
|
|
|
|
height: 350px;
|
2020-10-29 01:26:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.col-image {
|
|
|
|
display: block;
|
2020-10-30 01:12:05 +01:00
|
|
|
width: 350px;
|
|
|
|
height: 350px;
|
|
|
|
border-radius: 50%;
|
2020-10-30 01:15:47 +01:00
|
|
|
border: 3px solid #f9f9ed;
|
2020-10-29 01:26:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.col-img-desc {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: rgba(51, 51, 51, 0.4);
|
|
|
|
overflow: hidden;
|
2020-10-30 01:12:05 +01:00
|
|
|
width: 350px;
|
|
|
|
height: 350px;
|
|
|
|
opacity: 0;
|
|
|
|
border-radius: 50%;
|
2020-10-29 01:26:25 +01:00
|
|
|
transition: .5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-img-container:hover .col-img-desc {
|
2020-10-30 01:12:05 +01:00
|
|
|
opacity: 1;
|
2020-10-29 01:26:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.col-img-desc div {
|
|
|
|
color: white;
|
|
|
|
font-size: 20px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
-webkit-transform: translate(-50%, -50%);
|
|
|
|
-ms-transform: translate(-50%, -50%);
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
text-align: center;
|
2020-10-30 01:15:47 +01:00
|
|
|
}
|