Aktionen

MediaWiki

Common.css: Unterschied zwischen den Versionen

Aus Geodäsie Knowledge Hub

Die Seite wurde neu angelegt: „Das folgende CSS wird für alle Benutzeroberflächen geladen.: FBG Buttons: .fbg-button a { display: block; text-align: center; border: 1px solid #a2a9b1; border-radius: 6px; padding: 6px 12px; background: #f8f9fa; font-size: 95%; text-decoration: none; color: #202122; transition: background-color 0.15s ease-in-out; } .fbg-button a:hover { background: #e9ecef; minimal dunkler: }“
 
Keine Bearbeitungszusammenfassung
 
(13 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* Tagline ausblenden */
h3#tagline {
  display: none;
}
 
/* ============================= */
/* FBG Standard-Link-Button      */
/* ============================= */


/* FBG Buttons */
.fbg-button-label {
.fbg-button a {
   display: inline-block;
   display: block;
  min-width: 120px;
  padding: 7px 14px;
   text-align: center;
   text-align: center;
   border: 1px solid #a2a9b1;
  background: #ffffff;
   border-radius: 6px;
   border: 1px solid #c8ccd1;
   padding: 6px 12px;
   border-radius: 10px;
   background: #f8f9fa;
  box-sizing: border-box;
   font-size: 95%;
  color: #e2001a; /* Fachbereichs-Rot */
   text-decoration: none;
  font-weight: 500;
  transition: background-color 0.15s ease-in-out;
}
 
a:hover .fbg-button-label {
  background: #eef0f2;
  color: #c00000;
}
 
/* ============================= */
/* Inhaltsverzeichnis rechts    */
/* ============================= */
 
#toc, .toc {
  float: right;
  margin: 0 0 1em 1.5em;
  width: 300px;
}
 
/* ============================= */
/* Page Forms – Eingabefeld      */
/* ============================= */
 
.fbg-create-form {
  display: inline-block;
}
 
.fbg-create-form form {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
 
/* Textfeld */
.fbg-create-form input[type="text"] {
  height: 38px;
  box-sizing: border-box;
   padding: 6px 10px;
   border: 1px solid #c8ccd1;
   border-radius: 10px;
  background: #ffffff;
   min-width: 190px;
   color: #202122;
   color: #202122;
  transition: background-color 0.15s ease-in-out;
}
}


.fbg-button a:hover {
/* Submit-Button (auch OOUI berücksichtigen) */
   background: #e9ecef; /* minimal dunkler */
.fbg-create-form input[type="submit"],
.fbg-create-form button,
.fbg-create-form .oo-ui-buttonElement-button {
  height: 38px !important;
  box-sizing: border-box !important;
  padding: 0 14px !important;
  border: 1px solid #c8ccd1 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: #e2001a !important;
  cursor: pointer;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
}
 
/* Hover */
.fbg-create-form input[type="submit"]:hover,
.fbg-create-form button:hover,
.fbg-create-form .oo-ui-buttonElement-button:hover {
   background: #eef0f2 !important;
}
/* ============================= */
/* FBG Card Grid                */
/* ============================= */
 
.fbg-card-wrap {
  flex: 0 0 calc(50% - 9px);
  max-width: calc(50% - 9px);
  box-sizing: border-box;
}
 
@media (max-width: 900px) {
  .fbg-card-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
 
@media (max-width: 768px) {
  .fbg-create-form {
    display: none !important;
  }
}
 
.fbg-card {
  width: 100%;
  background: #f8f9fb;
  border: 1px solid #e3e6ea;
  border-radius: 16px;
  padding: 22px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s ease-in-out, transform 0.12s ease-in-out;
}
 
.fbg-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
}

Aktuelle Version vom 7. März 2026, 21:26 Uhr

/* Tagline ausblenden */
h3#tagline {
  display: none;
}

/* ============================= */
/* FBG Standard-Link-Button      */
/* ============================= */

.fbg-button-label {
  display: inline-block;
  min-width: 120px;
  padding: 7px 14px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #c8ccd1;
  border-radius: 10px;
  box-sizing: border-box;
  color: #e2001a; /* Fachbereichs-Rot */
  font-weight: 500;
  transition: background-color 0.15s ease-in-out;
}

a:hover .fbg-button-label {
  background: #eef0f2;
  color: #c00000;
}

/* ============================= */
/* Inhaltsverzeichnis rechts     */
/* ============================= */

#toc, .toc {
  float: right;
  margin: 0 0 1em 1.5em;
  width: 300px;
}

/* ============================= */
/* Page Forms – Eingabefeld      */
/* ============================= */

.fbg-create-form {
  display: inline-block;
}

.fbg-create-form form {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Textfeld */
.fbg-create-form input[type="text"] {
  height: 38px;
  box-sizing: border-box;
  padding: 6px 10px;
  border: 1px solid #c8ccd1;
  border-radius: 10px;
  background: #ffffff;
  min-width: 190px;
  color: #202122;
}

/* Submit-Button (auch OOUI berücksichtigen) */
.fbg-create-form input[type="submit"],
.fbg-create-form button,
.fbg-create-form .oo-ui-buttonElement-button {
  height: 38px !important;
  box-sizing: border-box !important;
  padding: 0 14px !important;
  border: 1px solid #c8ccd1 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: #e2001a !important;
  cursor: pointer;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
}

/* Hover */
.fbg-create-form input[type="submit"]:hover,
.fbg-create-form button:hover,
.fbg-create-form .oo-ui-buttonElement-button:hover {
  background: #eef0f2 !important;
}
/* ============================= */
/* FBG Card Grid                 */
/* ============================= */

.fbg-card-wrap {
  flex: 0 0 calc(50% - 9px);
  max-width: calc(50% - 9px);
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .fbg-card-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .fbg-create-form {
    display: none !important;
  }
}

.fbg-card {
  width: 100%;
  background: #f8f9fb;
  border: 1px solid #e3e6ea;
  border-radius: 16px;
  padding: 22px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s ease-in-out, transform 0.12s ease-in-out;
}

.fbg-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}