vtm/quelldatein/manifestation/web/vtm.css

169 lines
2.7 KiB
CSS
Raw Normal View History

2017-11-09 14:06:35 +01:00
html
{
margin: 0;
height: 100%;
background-color: hsl(120, 0%, 0%);
color: hsl(120, 0%, 100%);
font-family: monospace;
2017-11-10 00:05:15 +01:00
line-height: 200%;
2017-11-09 14:06:35 +01:00
}
body
{
margin: 0;
2017-11-09 18:42:09 +01:00
padding: 8px;
2017-11-09 14:06:35 +01:00
height: 100%;
background-color: hsl(120, 0%, 6.125%);
color: hsl(120, 0%, 93.75%);
}
a
{
color: hsl(120, 50%, 50%);
text-decoration: none;
2017-11-09 18:42:09 +01:00
cursor: pointer;
}
a:hover
{
color: hsl(120, 50%, 75%);
2017-11-09 14:06:35 +01:00
}
2018-03-20 13:30:00 +01:00
li
{
list-style-type: "» ";
}
2017-11-09 14:06:35 +01:00
body > header
{
font-size: 200%;
margin: 8px;
}
2017-11-09 18:42:09 +01:00
#radio_hilfe,
#radio_spiel
{
display: none;
}
#radio_hilfe:checked ~ #hilfe {}
#radio_hilfe:checked ~ #spiel {display: none;}
#radio_spiel:checked ~ #hilfe {display: none;}
#radio_spiel:checked ~ #spiel {}
#spiel
2017-11-09 14:06:35 +01:00
{
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.bereich
{
margin: 8px;
padding: 8px;
background-color: hsl(120, 0%, 12.5%);
color: hsl(120, 0%, 87.5%);
}
#bereich_links
{
flex-basis: 19%;
2017-11-10 01:20:40 +01:00
flex-grow: 1;
2017-11-09 14:06:35 +01:00
flex-shrink: 1;
}
#bereich_mitte
{
flex-basis: 62%;
flex-grow: 1;
2017-11-10 01:20:40 +01:00
flex-shrink: 0;
2017-11-09 14:06:35 +01:00
min-width: 800px;
text-align: center;
}
#bereich_rechts
{
flex-basis: 19%;
2017-11-10 01:20:40 +01:00
flex-grow: 1;
2017-11-09 14:06:35 +01:00
flex-shrink: 1;
}
#hilfe section > header
{
font-size: 150%;
}
2017-11-10 19:00:25 +01:00
#knoepfe > *
{
margin: 2px;
}
#knoepfe.initial > #knopf_schritt {}
2017-11-09 18:42:09 +01:00
#knoepfe.initial > #knopf_testen {}
#knoepfe.initial > #knopf_anhalten {display: none;}
#knoepfe.initial > #knopf_bearbeiten {display: none;}
2018-03-20 13:30:00 +01:00
#knoepfe.initial > #knopf_leeren {}
2017-11-09 18:42:09 +01:00
2017-11-10 19:00:25 +01:00
#knoepfe.ungewiss_laufend > #knopf_schritt {display: none;}
#knoepfe.ungewiss_laufend > #knopf_testen {display: none;}
#knoepfe.ungewiss_laufend > #knopf_anhalten {}
#knoepfe.ungewiss_laufend > #knopf_bearbeiten {display: none;}
2018-03-20 13:30:00 +01:00
#knoepfe.ungewiss_laufend > #knopf_leeren {display: none;}
2017-11-10 19:00:25 +01:00
#knoepfe.ungewiss_stehend > #knopf_schritt {}
#knoepfe.ungewiss_stehend > #knopf_testen {}
#knoepfe.ungewiss_stehend > #knopf_anhalten {display: none;}
#knoepfe.ungewiss_stehend > #knopf_bearbeiten {}
2018-03-20 13:30:00 +01:00
#knoepfe.ungewiss_stehend > #knopf_leeren {display: none;}
2017-11-09 18:42:09 +01:00
2017-11-10 19:00:25 +01:00
#knoepfe.fertig > #knopf_schritt {display: none;}
#knoepfe.fertig > #knopf_testen {display: none;}
#knoepfe.fertig > #knopf_anhalten {display: none;}
#knoepfe.fertig > #knopf_bearbeiten {}
2018-03-20 13:30:00 +01:00
#knoepfe.fertig > #knopf_leeren {display: none;}
2017-11-09 18:42:09 +01:00
2017-11-10 00:05:15 +01:00
#aufgabe_status
{
margin-bottom: 8px;
}
2018-03-20 13:30:00 +01:00
.hilfe_aktoren_aktor
{
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.hilfe_aktoren_aktor > .hilfe_aktoren_aktor_name
{
flex-basis: 100%;
flex-shrink: 0;
flex-grow: 1;
text-transform: capitalize;
}
.hilfe_aktoren_aktor > .hilfe_aktoren_aktor_bild
{
flex-basis: 10%;
flex-shrink: 1;
flex-grow: 0;
}
.hilfe_aktoren_aktor > .hilfe_aktoren_aktor_text
{
flex-basis: 90%;
flex-shrink: 1;
flex-grow: 1;
}