mirror of
https://github.com/skidoodle/pastebin
synced 2025-10-14 09:44:48 +02:00
dockerize
This commit is contained in:
@@ -14,6 +14,7 @@ body {
|
||||
color: #b0bec5;
|
||||
line-height: 1.5;
|
||||
display: flex;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
body,
|
||||
@@ -36,13 +37,9 @@ textarea {
|
||||
resize: none;
|
||||
overflow: auto;
|
||||
color: inherit;
|
||||
font-family: inherit;
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
code {
|
||||
display: block;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
pre {
|
||||
@@ -51,9 +48,13 @@ pre {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
overflow: auto;
|
||||
font-family: inherit;
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
code {
|
||||
display: block;
|
||||
}
|
||||
|
||||
button[type="submit"] {
|
||||
@@ -63,3 +64,31 @@ button[type="submit"] {
|
||||
span {
|
||||
min-width: 4em;
|
||||
}
|
||||
|
||||
textarea::-webkit-scrollbar,
|
||||
pre::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
textarea::-webkit-scrollbar-track,
|
||||
pre::-webkit-scrollbar-track {
|
||||
background: #2c2c2c;
|
||||
}
|
||||
|
||||
textarea::-webkit-scrollbar-thumb,
|
||||
pre::-webkit-scrollbar-thumb {
|
||||
background-color: #555;
|
||||
border-radius: 6px;
|
||||
border: 2px solid #2c2c2c;
|
||||
}
|
||||
|
||||
textarea::-webkit-scrollbar-thumb:hover,
|
||||
pre::-webkit-scrollbar-thumb:hover {
|
||||
background-color: #888;
|
||||
}
|
||||
|
||||
textarea,
|
||||
pre {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #555 #2c2c2c;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user