2024-05-20 22:04:23 +02:00
|
|
|
/*
|
|
|
|
Espe | Ein schlichtes Werkzeug zur Mitglieder-Verwaltung | Frontend
|
|
|
|
Copyright (C) 2024 Christian Fraß
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
|
|
|
|
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with this program. If not, see
|
|
|
|
<https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2024-04-22 10:02:43 +02:00
|
|
|
:root
|
|
|
|
{
|
|
|
|
--hue: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html
|
|
|
|
{
|
2024-04-24 08:33:22 +02:00
|
|
|
font-family: sans-serif;
|
|
|
|
/*
|
2024-04-22 10:02:43 +02:00
|
|
|
font-size: 1.5em;
|
2024-04-24 08:33:22 +02:00
|
|
|
*/
|
2024-04-22 10:02:43 +02:00
|
|
|
|
|
|
|
background-color: hsl(var(--hue), 0%, 0%);
|
|
|
|
color: hsl(var(--hue), 0%, 100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
body
|
|
|
|
{
|
|
|
|
max-width: 960px;
|
|
|
|
margin: auto;
|
|
|
|
padding: 24px;
|
|
|
|
|
|
|
|
background-color: hsl(var(--hue), 0%, 12.5%);
|
|
|
|
color: hsl(var(--hue), 0%, 87.5%);
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not([rel="logged_out"]) nav .logged_out {display: none;}
|
|
|
|
body:not([rel="logged_in"]) nav .logged_in {display: none;}
|
|
|
|
|
|
|
|
a
|
|
|
|
{
|
|
|
|
background-color: hsl(var(--hue), 0%, 12.5%);
|
|
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:not(:hover)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
color: hsl(var(--hue), 75%, 50%);
|
|
|
|
*/
|
|
|
|
color: hsl(var(--hue), 72.3%, 54.7%);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
color: hsl(var(--hue), 75%, 75%);
|
|
|
|
*/
|
|
|
|
color: hsl(var(--hue), 72.8%, 79.8%)
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"]
|
|
|
|
,
|
|
|
|
input[type="number"]
|
|
|
|
,
|
2024-05-01 09:53:59 +02:00
|
|
|
input[type="search"]
|
|
|
|
,
|
2024-04-22 10:02:43 +02:00
|
|
|
input[type="password"]
|
|
|
|
{
|
2024-04-24 08:33:22 +02:00
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
border: 1px solid hsl(var(--hue), 0%, 50%);
|
2024-05-01 09:53:59 +02:00
|
|
|
|
2024-05-02 08:41:10 +02:00
|
|
|
min-width: 300px;
|
|
|
|
|
|
|
|
font-size: 1.125em;
|
2024-04-24 08:33:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"]:not([disabled="disabled"])
|
|
|
|
,
|
|
|
|
input[type="number"]:not([disabled="disabled"])
|
|
|
|
,
|
2024-05-01 09:53:59 +02:00
|
|
|
input[type="search"]:not([disabled="disabled"])
|
|
|
|
,
|
2024-04-24 08:33:22 +02:00
|
|
|
input[type="password"]:not([disabled="disabled"])
|
|
|
|
{
|
|
|
|
/*
|
2024-04-22 10:02:43 +02:00
|
|
|
background-color: hsl(var(--hue), 0%, 87.5%);
|
|
|
|
color: hsl(var(--hue), 0%, 12.5%);
|
2024-04-24 08:33:22 +02:00
|
|
|
*/
|
|
|
|
background-color: hsl(var(--hue), 0%, 6.125%);
|
|
|
|
color: hsl(var(--hue), 0%, 87.5%);
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"][disabled="disabled"]
|
|
|
|
,
|
|
|
|
input[type="number"][disabled="disabled"]
|
|
|
|
,
|
2024-05-01 09:53:59 +02:00
|
|
|
input[type="search"][disabled="disabled"]
|
|
|
|
,
|
2024-04-24 08:33:22 +02:00
|
|
|
input[type="password"][disabled="disabled"]
|
|
|
|
{
|
|
|
|
background-color: hsl(var(--hue), 0%, 12.5%);
|
|
|
|
color: hsl(var(--hue), 0%, 87.5%);
|
2024-04-22 10:02:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nav
|
|
|
|
{
|
2024-05-02 08:41:10 +02:00
|
|
|
/*
|
2024-04-22 10:02:43 +02:00
|
|
|
border-bottom: 1px solid hsl(var(--hue), 0%, 100%);
|
|
|
|
margin-bottom: 16px;
|
2024-05-02 08:41:10 +02:00
|
|
|
*/
|
2024-04-22 10:02:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nav > ul
|
|
|
|
{
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav > ul > li
|
|
|
|
{
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 16px;
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
/*
|
|
|
|
text-transform: uppercase;
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2024-05-01 09:53:59 +02:00
|
|
|
input[type="submit"]
|
|
|
|
,
|
|
|
|
button
|
|
|
|
{
|
|
|
|
font-size: 1.25em;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2024-04-22 10:02:43 +02:00
|
|
|
/*
|
|
|
|
nav > ul > li:hover::before
|
|
|
|
{
|
|
|
|
content: "[";
|
|
|
|
}
|
|
|
|
|
|
|
|
nav > ul > li:hover::after
|
|
|
|
{
|
|
|
|
content: "]";
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
.plankton_form_field
|
|
|
|
{
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plankton_form_label
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
font-size: 0.75em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2024-04-23 17:44:55 +02:00
|
|
|
.plankton_search_item
|
|
|
|
{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2024-04-22 10:02:43 +02:00
|
|
|
.plankton_input_group_field
|
|
|
|
{
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plankton_input_group_field_label
|
|
|
|
{
|
|
|
|
font-size: 0.75em;
|
|
|
|
font-weight: bold;
|
|
|
|
/*
|
|
|
|
text-transform: capitalize;
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.plankton_input_group_field_label + :not(.plankton_input_group_field_help)
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plankton_input_group_field_help
|
|
|
|
{
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
|
|
font-size: 0.75em;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
cursor: help;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plankton_input_group_field_help + *
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.plankton_input_enumeration > *
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plankton_editor_actions
|
|
|
|
{
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plankton_editor_action
|
|
|
|
{
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin: 8px;
|
|
|
|
}
|
2024-05-01 09:53:59 +02:00
|
|
|
|
|
|
|
.plankton_search_submit
|
|
|
|
{
|
|
|
|
margin-left: 16px;
|
|
|
|
}
|
2024-05-02 08:41:10 +02:00
|
|
|
|
|
|
|
.plankton_search_item
|
|
|
|
{
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|