MediaWiki: Common.css: Unterschied zwischen den Versionen

Aus GuitarStore
Wechseln zu: Navigation, Suche
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/*Dark translucent background and light text/*
/*Темний напівпрозорий фон і світлий текст/*
body {
body {
     background: linear-gradient(135deg, #111 0%, #333 100%);
     background: linear-gradient(135deg, #111 0%, #333 100%);
Zeile 15: Zeile 11:
     text-decoration: none;
     text-decoration: none;
}
}
/*Top menu as a semi-transparent bar/*
/*Верхнє меню як напівпрозора панель/*
#tweeki-navbar {
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
/*Content in a “card” with a shadow/*
/*Контент у «картці» з тінню/*

Version vom 31. Oktober 2025, 17:36 Uhr

body {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #f1f1f1;
    font-family: 'Inter', sans-serif;
}
a {
    color: #66b2ff;
}
a:hover {
    color: #99d1ff;
    text-decoration: none;
}