2022-02-06 01:47:08 +01:00
|
|
|
/* file: style3.css
|
|
|
|
* date: 2022-02-06
|
|
|
|
* user: bernd@nr18.space
|
|
|
|
*/
|
2022-02-04 20:43:06 +01:00
|
|
|
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
/*** general ***/
|
2022-02-04 20:43:06 +01:00
|
|
|
|
2022-02-05 01:25:55 +01:00
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-collapse: collapse;
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
|
2022-02-04 20:43:06 +01:00
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
color: #333333;
|
|
|
|
background-color: #ffffff;
|
2022-02-06 01:47:08 +01:00
|
|
|
font-size: 100%;
|
|
|
|
line-height: 1.5;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2022-02-05 01:25:55 +01:00
|
|
|
ul.indent {
|
|
|
|
padding-left: 2em;
|
2022-02-04 23:13:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-04 20:43:06 +01:00
|
|
|
a {
|
2022-02-06 01:47:08 +01:00
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
a:hover, a:focus {
|
|
|
|
text-decoration: underline;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden, hr {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-02-08 12:34:40 +01:00
|
|
|
h1 {
|
|
|
|
font-size: 130%;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
.center-content {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.max-width {
|
|
|
|
max-width: 72em;
|
|
|
|
}
|
|
|
|
|
2022-02-08 12:34:40 +01:00
|
|
|
.flex-box {
|
2022-02-04 20:43:06 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2022-02-08 12:34:40 +01:00
|
|
|
.row {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column {
|
2022-02-04 20:43:06 +01:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2022-02-08 12:34:40 +01:00
|
|
|
.center {
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
border-radius: 0.5em;
|
|
|
|
background-color: #ffffff;
|
|
|
|
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2022-02-04 20:43:06 +01:00
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
/*** head with navigation menu ***/
|
2022-02-04 20:43:06 +01:00
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
header {
|
2022-02-04 20:43:06 +01:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
2022-02-06 01:47:08 +01:00
|
|
|
color: #ffffff;
|
|
|
|
background-color: #333333;
|
|
|
|
box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.6);
|
|
|
|
z-index: 50;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
div#headline {
|
|
|
|
padding: 0 1em 0 1em;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-08 12:34:40 +01:00
|
|
|
div#status-div {
|
|
|
|
width: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#status-div:hover {
|
|
|
|
width: 10em;
|
|
|
|
z-index: 150;
|
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
a#banner:hover,
|
|
|
|
a#banner:focus {
|
|
|
|
text-decoration: none;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
nav#menu {
|
|
|
|
/* 'height: 100%' geht nur mit 'position: fixed'. mit 'position: absolute'
|
|
|
|
* wird nur der teil innerhalb der headline angezeigt. dann muß 'height:
|
|
|
|
* 100%' entfernt werden und das menu nimmt sich den platz, den es
|
|
|
|
* braucht. */
|
|
|
|
position: fixed;
|
2022-02-04 20:43:06 +01:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2022-02-06 01:47:08 +01:00
|
|
|
height: 100%;
|
2022-02-04 20:43:06 +01:00
|
|
|
display: none;
|
2022-02-06 01:47:08 +01:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-end;
|
|
|
|
padding: 0 1em 2em 2em;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
nav#menu ul {
|
|
|
|
margin: initial;
|
|
|
|
padding: 0;
|
|
|
|
text-align: right;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
nav#menu li {
|
|
|
|
padding: 1em;
|
|
|
|
border-top: 1px solid #999999;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
nav#menu a {
|
|
|
|
color: #ffffff;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
/* changed by clicking menu button */
|
2022-02-04 20:43:06 +01:00
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
nav#menu:target {
|
|
|
|
display: flex;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: scroll;
|
|
|
|
background: black;
|
|
|
|
background: rgba(50, 50, 50, 0.85);
|
|
|
|
z-index: 100;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**** startimage ****/
|
|
|
|
|
|
|
|
#start-image-container {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2022-02-19 22:41:06 +01:00
|
|
|
min-height: 70vh;
|
|
|
|
max-height: 80vh;
|
|
|
|
margin: 3em 0 0 0;
|
2022-02-04 20:43:06 +01:00
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
2022-02-08 22:52:04 +01:00
|
|
|
background: url('./images/background.jpg') no-repeat center;
|
2022-02-04 20:43:06 +01:00
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**** main ****/
|
|
|
|
|
|
|
|
main {
|
|
|
|
min-height: 100px;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
position: relative;
|
|
|
|
padding: 0 2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-overlay {
|
|
|
|
position: relative;
|
2022-02-08 12:34:40 +01:00
|
|
|
top: -50px;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-wrapper {
|
|
|
|
margin: 1% 1% 5% 1%;
|
|
|
|
padding: 3.5em 2em 7em 1.5em;;
|
|
|
|
background-color: #ffffff;
|
|
|
|
box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub-panel {
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: 1em 1em 1em 1.5em;
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2022-02-04 23:13:23 +01:00
|
|
|
div#map img {
|
2022-02-04 20:43:06 +01:00
|
|
|
width: 100%;
|
2022-02-04 23:13:23 +01:00
|
|
|
max-width: 100%;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-18 16:13:19 +01:00
|
|
|
section.termin {
|
|
|
|
margin-top: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.headline {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.events {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
padding-left: 2em;
|
|
|
|
}
|
2022-02-04 20:43:06 +01:00
|
|
|
|
2022-02-05 01:25:55 +01:00
|
|
|
/**** aside ****/
|
|
|
|
|
|
|
|
div.sb-item p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4.aside {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.aside {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-02-04 20:43:06 +01:00
|
|
|
/**** footer ****/
|
|
|
|
|
|
|
|
footer {
|
|
|
|
padding: 0 5% 10% 5%;
|
|
|
|
color: #ffffff;
|
2022-02-06 01:47:08 +01:00
|
|
|
background-color: rgba(0, 0, 0, 0.85);
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#footer {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.list-footer {
|
|
|
|
color: inherit;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
|
2022-02-04 23:13:23 +01:00
|
|
|
a.link-footer {
|
|
|
|
color: #ffffff;
|
|
|
|
text-decoration: underline 1px dotted #ffffff;
|
|
|
|
}
|
|
|
|
|
2022-02-04 20:43:06 +01:00
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
/**** go-to-top ****/
|
|
|
|
|
|
|
|
div#go-to-top {
|
|
|
|
position: fixed;
|
|
|
|
right: 2%;
|
|
|
|
bottom: 2%;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
img#to-top {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2022-02-04 20:43:06 +01:00
|
|
|
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
/* media query für breitere screens */
|
|
|
|
/************************************/
|
|
|
|
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
|
|
|
|
a#open-menu {
|
2022-02-04 20:43:06 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
nav#menu {
|
|
|
|
position: relative;
|
2022-02-04 20:43:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2022-02-06 01:47:08 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
nav p {
|
|
|
|
display: none;
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|
|
|
|
|
2022-02-06 01:47:08 +01:00
|
|
|
nav#menu ul {
|
|
|
|
display: flex;
|
|
|
|
}
|
2022-02-05 01:25:55 +01:00
|
|
|
|
2022-02-08 12:34:40 +01:00
|
|
|
nav#menu li {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2022-02-05 01:25:55 +01:00
|
|
|
div.with-aside {
|
2022-02-04 23:13:23 +01:00
|
|
|
flex-direction: row;
|
2022-02-06 01:47:08 +01:00
|
|
|
justify-content: space-around;
|
2022-02-04 23:13:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-04 20:43:06 +01:00
|
|
|
}
|