mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
83 lines
1.0 KiB
CSS
83 lines
1.0 KiB
CSS
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
header h1 {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
.letter-options {
|
|
width: 320px;
|
|
}
|
|
|
|
.letter-options label {
|
|
display: block;
|
|
}
|
|
.letter-options input,
|
|
.letter-options textarea,
|
|
.letter-options select {
|
|
margin-bottom: 12px;
|
|
width: 100%;
|
|
}
|
|
|
|
.Collapsible {
|
|
background-color: #ddd;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
|
|
.Collapsible__trigger {
|
|
padding-left: 6px;
|
|
cursor: pointer;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.Collapsible__trigger.is-closed:before {
|
|
content: "> ";
|
|
}
|
|
|
|
.Collapsible__trigger.is-open:before {
|
|
content: "< ";
|
|
}
|
|
|
|
.Collapsible {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.Collapsible__contentInner {
|
|
background-color: #fff;
|
|
padding-top: 12px;
|
|
padding-left: 12px;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
textarea.address {
|
|
height: 80px;
|
|
}
|
|
|
|
textarea.body {
|
|
height: 340px;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
margin-top: 1em;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.home {
|
|
display: flex;
|
|
}
|
|
|
|
.home > div {
|
|
padding: 12px;
|
|
}
|
|
|