mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
start over with nextjs
This commit is contained in:
17
styles/App.css
Normal file
17
styles/App.css
Normal file
@@ -0,0 +1,17 @@
|
||||
header h1 {
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
margin-top: 12px;
|
||||
margin-right: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.home {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.home > div {
|
||||
padding: 12px;
|
||||
}
|
||||
61
styles/LetterOptions.css
Normal file
61
styles/LetterOptions.css
Normal file
@@ -0,0 +1,61 @@
|
||||
.letter-options {
|
||||
width: 320px;
|
||||
}
|
||||
|
||||
.letter-options label {
|
||||
display: block;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.letter-options input,
|
||||
.letter-options textarea,
|
||||
.letter-options select {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 12px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.letter-options textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.letter-options textarea.address {
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
.letter-options textarea.body {
|
||||
height: 340px;
|
||||
}
|
||||
|
||||
.letter-options .Collapsible {
|
||||
background-color: #ddd;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.letter-options .Collapsible__trigger {
|
||||
padding-left: 6px;
|
||||
cursor: pointer;
|
||||
line-height: 24px;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.letter-options .Collapsible__trigger.is-closed:before {
|
||||
content: "> ";
|
||||
}
|
||||
|
||||
.letter-options .Collapsible__trigger.is-open:before {
|
||||
content: "< ";
|
||||
}
|
||||
|
||||
.letter-options .Collapsible {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.letter-options .Collapsible__contentInner {
|
||||
background-color: #fff;
|
||||
padding-top: 12px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
7
styles/index.css
Normal file
7
styles/index.css
Normal file
@@ -0,0 +1,7 @@
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
*, *:before, *:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
Reference in New Issue
Block a user