mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
79 lines
741 B
CSS
Executable File
79 lines
741 B
CSS
Executable File
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
background-color: #000;
|
|
}
|
|
|
|
body {
|
|
width: 50%;
|
|
margin: 0 auto;
|
|
padding: 10px;
|
|
background-color: #FFF;
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
p,
|
|
ul {
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
ul {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
ul ul {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
li p {
|
|
margin-bottom: 0.2em;
|
|
}
|
|
|
|
code {
|
|
color: #0A0;
|
|
}
|
|
|
|
fieldset,
|
|
legend {
|
|
border: 1px solid #AAA;
|
|
}
|
|
|
|
fieldset {
|
|
margin: 30px 10px 10px;
|
|
padding: 10px 5px 5px 10px;
|
|
}
|
|
|
|
legend,
|
|
.editor {
|
|
background-color: #EEE;
|
|
}
|
|
|
|
legend {
|
|
margin-top: -1em;
|
|
border-bottom: none;
|
|
padding: 1px 3px 0;
|
|
line-height: 1em;
|
|
}
|
|
|
|
fieldset textarea {
|
|
display: block;
|
|
width: 98%;
|
|
}
|
|
|
|
fieldset input {
|
|
width: 5em;
|
|
margin: 10px 10px 5px 0;
|
|
font-size: 1.1em;
|
|
}
|