Menü aufrufen
Persönliches Menü aufrufen
Nicht angemeldet
Ihre IP-Adresse wird öffentlich sichtbar sein, wenn Sie Änderungen vornehmen.
Die ersten drei Belohnungen für Maddraxikaner sind nun mit Aktivitätspunkten freischaltbar!

MediaWiki:Common.css: Unterschied zwischen den Versionen

MediaWiki-Schnittstellenseite
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Zeile 194: Zeile 194:


/* Hörbuch-Cover */
/* Hörbuch-Cover */
.hörbuch-cover img {
.cd-case {
  border: 8px solid #fff;
height: 206px;
  box-shadow:  
width: 230px;
    0 0 0 1px #ccc,
margin:20px 0px 15px 35px;
    0 0 0 10px #fff,
display: inline-block;
    5px 5px 15px rgba(0,0,0,0.3),
border-radius: 3px;
    inset 0 0 5px rgba(0,0,0,0.2);
background: rgba(0,0,0,0);
  transform: perspective(800px) rotateY(5deg);
box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.6), inset 0px 0px 20px 2px rgba(0,0,0,0.4), inset 0px 0px 5px 1px rgba(255,255,255,0.6), inset 0px 0px 0px 1px rgba(255,255,255,0.2);
}
.album-art {
height: 200px;
width: 200px;
border-radius: 3px;
background: rgba(0,0,0,0);
box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5),inset 0px 0px 16px 2px rgba(0,0,0,0.1), inset 0px 0px 0px 1px rgba(255,255,255,0.3);
position: relative;
top: 3px;
left: 25px;
z-index: -2;
}
#case1 .album-art {
background:  linear-gradient(rgba(255,255,255,0.15),rgba(255,255,255,0)), url(https://de.maddraxikon.com/images/f/fc/027hbtibi.jpg) center center no-repeat;
  background-size: cover;
}
.sup {
height: 10px;
width: 20px;
background: rgba(255,255,255,0.15);
box-shadow: inset 0px 0px 6px 1px rgba(0,0,0,0.22), inset 0px 0px 1px 1px rgba(255,255,255,0.17);
}
.pos-tl {
position: relative;
top: 0;
left: 20px;
border-radius: 0 0 5px 5px;
}
.pos-tr {
position: relative;
top: -10px;
left: 160px;
border-radius: 0 0 5px 5px;
}
.pos-bl {
position: relative;
top: 169px;
left: 20px;
border-radius: 5px 5px 0 0;
}
.pos-br {
position: relative;
top: 159px;
left: 160px;
border-radius: 5px 5px 0 0;
}
.spine {
height: 120px;
width: 15px;
background: -webkit-linear-gradient(rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.07) 100%);
box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.23), inset 0px 0px 7px 0px rgba(0,0,0,0.22), inset 0px 0px 0px 1px rgba(255,255,255,0.22);
position: relative;
top: -160px;
left: 0;
border-radius: 0 50% 50% 0;
z-index: -1;
}
}

Version vom 23. Juli 2024, 07:32 Uhr

/* Hauptseite Layout */
.home-grid {
	display: grid;
	grid: auto-flow dense/repeat( auto-fit, minmax( 10rem, 1fr ) );
	grid-auto-rows: minmax( 3rem, auto );
	grid-gap: var( --space-xs );
}
.home-grid--col2 {
	grid-template-columns: 1fr 1fr;
}
.home-grid a.external {
	background-image: none;
}
.home-card {
	position: relative;
	padding: var( --space-md );
	background: var( --color-surface-1 );
	border: 1px solid var( --border-color-base );
	border-radius: 8px;
	box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );
	font-size: 0.875rem;
}
.home-card table.timeline {
	margin-top: 0.2rem;
}
.home-card--col2 {
	grid-column: span 2;
}
.home-card--row3 {
	grid-row: span 3;
}
.home-card--row4 {
	grid-row: span 4;
}
.home-card--row8 {
	grid-row: span 8 / auto;
}
.home-card__label {
	color: var( --color-base--subtle );
	font-size: 0.8125rem;
	letter-spacing: 0.75px;
}
.home-card__header {
	color: var( --color-base--emphasized );
	font-size: 1rem;
    font-weight: var( --font-weight-semibold );
    line-height: var( --line-height-xs );
}
.home-card__header a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.home-card__header a:after {
	content: '▶';
	font-size: 0.8125rem;
}
.home-card__background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #242a31;
	border-radius: 8px;
}
.home-card__background:after {
	position: absolute;
    pointer-events: none;
	top: 0;
	bottom: 0;
	left: 0;
    right: 0;
    display: block;
    background: linear-gradient(to right,#000,transparent);
    content: "";
}
.home-card__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.home-card__foreground {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var( --space-md );
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var( --space-xxs );
	color: #fff;
	line-height: var( --line-height-xs );
	pointer-events: none;
}
.home-card__foreground .home-card__header {
	color: #fff;
}
.home-card__foreground .home-card__label {
	color: #bababa;
}
.home-card p {
	margin-top: var( --space-xs );
	font-size: 0.875rem;
}
.home-card.home-card--button {
	overflow: hidden;
	padding: 0;
	background: #242a31;
	border: 0;
}
.home-card--button a {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	padding: 0 var( --space-md );
	background: transparent;
	color: #fff;
	font-weight: 500;
}
.home-card--button .home-card__background a {
	padding: 0;
}
.home-card--button img {
	transition: transform 0.2s ease;
}
.home-card--button:hover img {
	transform: scale(1.1);
}
.home-link {
	display: grid;
	margin-top: var( --space-xs );
	font-size: 0.875rem;
	font-weight: 500;
	grid-gap: var( --space-xs );
	text-align: center;
}
.home-link__button {
	display: flex;
}
.home-link__button a {
	flex-grow: 1;
	padding: var( --space-xs );
	border: 1px solid var( --border-color-base );
	background: var( --color-surface-2 );
	border-radius: var( --border-radius--medium );
	color: var( --color-base--emphasized ) !important;
    line-height: var( --line-height-xs );
    text-decoration: none !important;
}
.home-link__button a:hover {
	background: var( --color-surface-2--hover );
}
.home-link__button a:active {
	background: var( --color-surface-2--active );
}
#home-content {
	margin-top: var( --space-lg );
}
.home-stats {
	flex-grow: 1;
	line-height: 1;
}
.home-stats__value {
	font-size: 1.5rem;
	font-weight: 600;
}
.home-stats__unit {
	margin-top: var( --space-xxs );
	color: var( --color-base--subtle );
	font-size: 0.8125rem;
}
.home-footer {
	font-size: 0.8125rem;
	font-family: monospace;
	text-align: center;
}


/* Buttons Hauptseite */
#home-nav {
	margin-top: 1rem;
}
#home-nav .home-card__foreground {
    font-weight: var( --font-weight-medium );
}
#home-nav .home-card.home-card--button {
	height: 5rem;
}

/* Hörbuch-Cover */
.cd-case {
	height: 206px;
	width: 230px;
	margin:20px 0px 15px 35px;
	display: inline-block;
	border-radius: 3px;
	background: rgba(0,0,0,0);
	box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.6), inset 0px 0px 20px 2px rgba(0,0,0,0.4), inset 0px 0px 5px 1px rgba(255,255,255,0.6), inset 0px 0px 0px 1px rgba(255,255,255,0.2);
}
.album-art {
	height: 200px;
	width: 200px;
	border-radius: 3px;
	background: rgba(0,0,0,0);
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5),inset 0px 0px 16px 2px rgba(0,0,0,0.1), inset 0px 0px 0px 1px rgba(255,255,255,0.3);
	position: relative;
	top: 3px;
	left: 25px;
	z-index: -2;
}
#case1 .album-art {
	background:  linear-gradient(rgba(255,255,255,0.15),rgba(255,255,255,0)), url(https://de.maddraxikon.com/images/f/fc/027hbtibi.jpg) center center no-repeat;
  background-size: cover;
}
.sup {
	height: 10px;
	width: 20px;
	background: rgba(255,255,255,0.15);
	box-shadow: inset 0px 0px 6px 1px rgba(0,0,0,0.22), inset 0px 0px 1px 1px rgba(255,255,255,0.17);
}
.pos-tl {
	position: relative;
	top: 0;
	left: 20px;
	border-radius: 0 0 5px 5px;
}
.pos-tr {
	position: relative;
	top: -10px;
	left: 160px;
	border-radius: 0 0 5px 5px;
}
.pos-bl {
	position: relative;
	top: 169px;
	left: 20px;
	border-radius: 5px 5px 0 0;
}
.pos-br {
	position: relative;
	top: 159px;
	left: 160px;
	border-radius: 5px 5px 0 0;
}
.spine {
	height: 120px;
	width: 15px;
	background: -webkit-linear-gradient(rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.07) 100%);
	box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.23), inset 0px 0px 7px 0px rgba(0,0,0,0.22), inset 0px 0px 0px 1px rgba(255,255,255,0.22);
	position: relative;
	top: -160px;
	left: 0;
	border-radius: 0 50% 50% 0;
	z-index: -1;
}