mirror of https://github.com/JoeBiellik/paste
Use stylesheets
parent
8ce1beccbe
commit
54f6aea10d
@ -0,0 +1,48 @@
|
||||
html, body, .code-toolbar, pre, code {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
pre[class*="language-"] {
|
||||
margin: 0;
|
||||
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::before, pre[class*="language-"]::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
pre[class*="language-"] > code {
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar {
|
||||
top: 1rem;
|
||||
right: 2.5rem;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
transition: none;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-toolbar > .toolbar span {
|
||||
padding: 0.5rem 1rem;
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.5;
|
||||
border-radius: 0.3rem;
|
||||
color: #fff;
|
||||
background-color: #007bff;
|
||||
border-color: #007bff;
|
||||
display: inline-block;
|
||||
font-weight: 400;
|
||||
transition: color 0.15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
|
||||
font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a:focus, div.code-toolbar > .toolbar a:hover, div.code-toolbar > .toolbar button:focus, div.code-toolbar > .toolbar button:hover, div.code-toolbar > .toolbar span:focus, div.code-toolbar > .toolbar span:hover {
|
||||
color: #fff;
|
||||
background-color: #0069d9;
|
||||
border-color: #0062cc;
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
}
|
||||
|
||||
@media (min-width: 1800px) {
|
||||
.container {
|
||||
min-width: 1500px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 2400px) {
|
||||
.container {
|
||||
min-width: 1800px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 2800px) {
|
||||
.container {
|
||||
min-width: 80%;
|
||||
}
|
||||
}
|
||||
|
||||
.display-3 {
|
||||
font-size: 5.5rem;
|
||||
}
|
||||
@media (max-width: 575.98px) {
|
||||
.display-3 {
|
||||
font-size: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
textarea {
|
||||
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
line-height: 1.5rem;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
label {
|
||||
width: 7.5rem;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.border-gray {
|
||||
border: 1px solid #ced4da;
|
||||
}
|
||||
|
||||
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
|
||||
width: 18rem;
|
||||
}
|
||||
@media (max-width: 318px) {
|
||||
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
#highlight {
|
||||
max-width: 18rem;
|
||||
}
|
||||
|
||||
#expire {
|
||||
max-width: 7.5rem;
|
||||
}
|
||||
|
||||
.bootstrap-touchspin {
|
||||
max-width: 7.5rem;
|
||||
float: left;
|
||||
margin-right: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
#multiplier {
|
||||
max-width: 9.5rem;
|
||||
}
|
||||
|
||||
button.btn-lg {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
button.btn-lg {
|
||||
margin-top: -6rem;
|
||||
}
|
||||
}
|
||||
|
||||
footer {
|
||||
height: 2.5rem;
|
||||
bottom: 0;
|
||||
line-height: 2rem;
|
||||
}
|
Loading…
Reference in New Issue