mirror of
https://gitlab.aachen.ccc.de/inventory/in.git
synced 2024-11-26 00:54:00 +01:00
137 lines
1.6 KiB
CSS
137 lines
1.6 KiB
CSS
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: sans-serif;
|
||
|
max-width: 600px;
|
||
|
margin: auto;
|
||
|
padding-bottom: 1em;
|
||
|
background: #fefefe;
|
||
|
}
|
||
|
|
||
|
h1, #search {
|
||
|
text-align: center;
|
||
|
width: 100%;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
h1 a {
|
||
|
text-decoration: none;
|
||
|
color: initial;
|
||
|
}
|
||
|
|
||
|
#results {
|
||
|
margin-top: 1em;
|
||
|
}
|
||
|
|
||
|
.result {
|
||
|
background: #eee;
|
||
|
padding: 1em;
|
||
|
margin: 1em 0;
|
||
|
}
|
||
|
|
||
|
.result a {
|
||
|
text-decoration: none;
|
||
|
color: #03d;
|
||
|
}
|
||
|
|
||
|
.result.hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#results.showhidden .result.hidden {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.result.filtered {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.loc {
|
||
|
float: right;
|
||
|
font-weight: normal;
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
|
|
||
|
.type {
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
margin: 0;
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
|
||
|
.name {
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
margin-top: 1em;
|
||
|
}
|
||
|
|
||
|
.note:empty {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.note {
|
||
|
background: #aef;
|
||
|
padding: 1em;
|
||
|
margin-top: 1em;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
border: 1px solid;
|
||
|
padding: 0.5em;
|
||
|
text-decoration: initial;
|
||
|
color: initial;
|
||
|
font-weight: bold;
|
||
|
text-align: center;
|
||
|
font-size: 1.5em;
|
||
|
margin-bottom: 0.5em;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.btn.green {
|
||
|
background: #0a0;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.btn.red {
|
||
|
background: #a00;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
form label {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
font-weight: bold;
|
||
|
margin-bottom: 0.3em;
|
||
|
}
|
||
|
|
||
|
input, textarea, select {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
max-width: 100%;
|
||
|
min-width: 100%;
|
||
|
margin: 0 0 1em 0;
|
||
|
padding: 0.3em;
|
||
|
font-family: monospace;
|
||
|
font-size: 1.4em;
|
||
|
background: initial;
|
||
|
border: 1px solid gray;
|
||
|
}
|
||
|
|
||
|
input[type=checkbox] {
|
||
|
width: initial;
|
||
|
display: initial;
|
||
|
min-width: initial;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
min-height: 8em;
|
||
|
}
|