pastebin/static/style.css

67 lines
994 B
CSS
Raw Normal View History

2019-03-02 16:35:05 +00:00
body {
margin: 0;
line-height: 1.6;
color: black;
text-align: justify;
hyphens: auto;
font-family: sans-serif;
}
header {
background: #dd6;
color: white;
padding: 1em 0 1em;
box-shadow: 0 -5px 2px rgba(0, 0, 0, 0.1) inset;
}
header h1 {
color: #440;
margin: 0 auto;
padding: 0 1em;
max-width: 900px;
}
header small {
opacity: 0.7;
}
article {
margin: 0 auto;
padding: 0 1em;
max-width: 980px;
}
2019-03-07 08:58:56 +00:00
h1, h2, h3, h4, h5, h6 {
2019-03-02 16:35:05 +00:00
line-height: 1.2;
}
textarea {
width: 100%;
height: 372px;
}
.CodeMirror {
border: 1px solid #bbbdbe;
}
[type=submit] {
float: right;
}
.CodeMirror {
height: auto;
}
.CodeMirror-scroll {
min-height: 372px;
}
2019-03-07 08:58:56 +00:00
table {
overflow: auto;
border-collapse: collapse;
}
td, th {
border: 1px solid #dfe2e5;
padding: 6px 13px;
}
tr:nth-child(2n) {
background: #f6f8fa;
}
pre {
padding: 16px;
}
pre, code {
background: #f6f8fa;
}
img {
max-width: 100%;
}