zfuol
This commit is contained in:
parent
ab1706ed76
commit
42df4f5830
@ -5,7 +5,9 @@ body {
|
|||||||
color: #2b1b0f;
|
color: #2b1b0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Progress Bar */
|
/* =========================
|
||||||
|
Progress Bar
|
||||||
|
========================= */
|
||||||
|
|
||||||
.progress-bar {
|
.progress-bar {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -21,7 +23,9 @@ body {
|
|||||||
box-shadow: 0 0 6px #3cff3c;
|
box-shadow: 0 0 6px #3cff3c;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Popup */
|
/* =========================
|
||||||
|
Popup Fenster
|
||||||
|
========================= */
|
||||||
|
|
||||||
.building-popup {
|
.building-popup {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@ -33,7 +37,7 @@ body {
|
|||||||
|
|
||||||
width: 460px;
|
width: 460px;
|
||||||
|
|
||||||
background: url("/images/parchment.png") center/cover no-repeat;
|
background: url("/images/parchment.png") center / cover no-repeat;
|
||||||
|
|
||||||
border: 4px solid #6b4b2a;
|
border: 4px solid #6b4b2a;
|
||||||
|
|
||||||
@ -46,16 +50,20 @@ body {
|
|||||||
display: none;
|
display: none;
|
||||||
|
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
|
|
||||||
|
animation: popupFade 0.25s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Header */
|
/* =========================
|
||||||
|
Popup Header
|
||||||
|
========================= */
|
||||||
|
|
||||||
.popup-header {
|
.popup-header {
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
|
|
||||||
font-family: "Tangerine", serif;
|
font-family: "Tangerine", serif;
|
||||||
|
|
||||||
font-size: 34px;
|
font-size: 36px;
|
||||||
|
|
||||||
background: linear-gradient(#6b4b2a, #3c2414);
|
background: linear-gradient(#6b4b2a, #3c2414);
|
||||||
|
|
||||||
@ -74,7 +82,9 @@ body {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tabs */
|
/* =========================
|
||||||
|
Tabs
|
||||||
|
========================= */
|
||||||
|
|
||||||
.popup-tabs {
|
.popup-tabs {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -112,7 +122,9 @@ body {
|
|||||||
color: #2b1b0f;
|
color: #2b1b0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Content */
|
/* =========================
|
||||||
|
Popup Inhalt
|
||||||
|
========================= */
|
||||||
|
|
||||||
.popup-content {
|
.popup-content {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
@ -123,14 +135,36 @@ body {
|
|||||||
|
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
|
||||||
|
letter-spacing: 0.5px;
|
||||||
|
|
||||||
background: rgba(255, 255, 255, 0.08);
|
background: rgba(255, 255, 255, 0.08);
|
||||||
|
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
|
||||||
color: #2b1b0f; /* NEU */
|
color: #2b1b0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tabs Content */
|
/* Titel im Inhalt */
|
||||||
|
|
||||||
|
.popup-content h3 {
|
||||||
|
font-family: "Tangerine", serif;
|
||||||
|
|
||||||
|
font-size: 32px;
|
||||||
|
|
||||||
|
color: #3b2412;
|
||||||
|
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Text */
|
||||||
|
|
||||||
|
.popup-content p {
|
||||||
|
color: #3a2413;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
Tab Inhalte
|
||||||
|
========================= */
|
||||||
|
|
||||||
.tab-content {
|
.tab-content {
|
||||||
display: none;
|
display: none;
|
||||||
@ -140,7 +174,9 @@ body {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Buttons */
|
/* =========================
|
||||||
|
Buttons
|
||||||
|
========================= */
|
||||||
|
|
||||||
.popup-content button {
|
.popup-content button {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
@ -170,7 +206,9 @@ body {
|
|||||||
0 0 25px #caa24b;
|
0 0 25px #caa24b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Animation */
|
/* =========================
|
||||||
|
Animation
|
||||||
|
========================= */
|
||||||
|
|
||||||
@keyframes popupFade {
|
@keyframes popupFade {
|
||||||
from {
|
from {
|
||||||
@ -184,22 +222,10 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.building-popup {
|
/* =========================
|
||||||
animation: popupFade 0.25s ease;
|
Popup Titel
|
||||||
}
|
========================= */
|
||||||
|
|
||||||
/* Title */
|
|
||||||
|
|
||||||
#popup-title {
|
#popup-title {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.popup-content h3 {
|
|
||||||
font-family: "Tangerine", serif;
|
|
||||||
font-size: 30px;
|
|
||||||
color: #3b2412;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popup-content p {
|
|
||||||
color: #3a2413;
|
|
||||||
}
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user