mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
git-subtree-dir: community_server git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1 git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
63 lines
1.2 KiB
Plaintext
63 lines
1.2 KiB
Plaintext
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
|
|
/* ============================================================
|
|
|
|
Screen styles for plain facts.
|
|
|
|
Datei : facts.css
|
|
Datum : 08.07.2020
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
@media screen {
|
|
.fact-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style-type: none;
|
|
width: 100%;
|
|
padding-inline-start: 0;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.fact {
|
|
display: inline-block;
|
|
padding-left: 1em;
|
|
}
|
|
|
|
.label {
|
|
width: 150px;
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media @tablet-down {
|
|
.fact-list {
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
|
|
li.fact {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.fact {
|
|
padding-left: .5em;
|
|
}
|
|
|
|
.label {
|
|
width: 250px;
|
|
text-align: left;
|
|
font-size: .9em;
|
|
font-weight: normal;
|
|
}
|
|
|
|
}
|
|
|
|
}
|