Menü aufrufen
Toggle preferences menu
Persönliches Menü aufrufen
Nicht angemeldet
Ihre IP-Adresse wird öffentlich sichtbar sein, wenn Sie Änderungen vornehmen.

Vorlage:Main page/Header/styles.css: Unterschied zwischen den Versionen

Aus Onos Wiki
Änderung 519 von Kevkus (Diskussion) rückgängig gemacht.
Markierung: Rückgängigmachung
Keine Bearbeitungszusammenfassung
Zeile 36: Zeile 36:
}
}


.onos-mainpage-header-search-form {
.onos-mainpage-header-search {
background-color: #ffd45c;
align-items: center;
background-color: rgba(20, 25, 35, 0.9);
border-radius: 999px;
border-radius: 999px;
border: 1px solid rgba(255,255,255,0.15);
color: rgba(255,255,255,0.7);
cursor: pointer;
display: flex;
font-size: 0.95rem;
font-weight: 600;
line-height: 1;
margin-top: 1.5rem;
margin-top: 1.5rem;
padding: 0.25rem;
padding: 0.85rem 1.5rem;
box-shadow: 0 8px 28px rgba(0,0,0,0.35);
width: 420px;
width: 520px;
max-width: 90%;
max-width: 90%;
box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
}


.onos-mainpage-header-search-form .mw-inputbox-centered {
.onos-mainpage-header-search:before {
margin: 0;
content: '⌕';
margin-right: 0.6rem;
font-size: 1.1rem;
opacity: 0.8;
}
}


.onos-mainpage-header-search-form form {
.onos-mainpage-header-search:hover {
display: flex;
border-color: rgba(255,212,92,0.6);
align-items: center;
margin: 0;
width: 100%;
}
 
/* INPUT */
.onos-mainpage-header-search-form input[type="search"],
.onos-mainpage-header-search-form input[type="text"] {
background-color: #10151f;
border: 0;
border-radius: 999px;
color: #fff;
font-size: 0.95rem;
font-weight: 700;
margin: 0;
padding: 0.75rem 1rem;
width: 100%;
}
 
/* 🔍 BUTTON */
.onos-mainpage-header-search-form input[type="submit"] {
background-color: #10151f;
border: 0;
border-radius: 999px;
color: #fff;
color: #fff;
font-weight: 800;
background-color: rgba(30, 35, 50, 0.95);
 
margin-left: 0.4rem;
 
width: 42px;
height: 42px;
padding: 0;
 
display: flex;
align-items: center;
justify-content: center;
}
 
.onos-mainpage-header-search:hover {
background-color: #ffe07a;
}
}

Version vom 25. April 2026, 02:44 Uhr

.onos-mainpage-header {
	position: relative;
	margin-top: -2rem;
	margin-bottom: 2rem;
	padding-top: 6rem;
	padding-bottom: 4rem;
	clear: both;
	overflow: hidden;
	text-align: center;
}

.onos-mainpage-header-content {
	position: relative;
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.onos-mainpage-header-wordmark {
	color: #fff;
	font-size: 5rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.05em;
	text-shadow: 0 4px 20px rgba(0,0,0,0.75);
}

.onos-mainpage-header-tagline {
	margin-top: 1.25rem;
	color: #ffd45c;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.onos-mainpage-header-search {
	align-items: center;
	background-color: rgba(20, 25, 35, 0.9);
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.7);
	cursor: pointer;
	display: flex;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	margin-top: 1.5rem;
	padding: 0.85rem 1.5rem;
	width: 420px;
	max-width: 90%;
	box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.onos-mainpage-header-search:before {
	content: '⌕';
	margin-right: 0.6rem;
	font-size: 1.1rem;
	opacity: 0.8;
}

.onos-mainpage-header-search:hover {
	border-color: rgba(255,212,92,0.6);
	color: #fff;
	background-color: rgba(30, 35, 50, 0.95);
}