style changes

This commit is contained in:
Fuchsty 2023-08-25 02:52:02 +02:00
commit a9c9c7f76f
6 changed files with 1606 additions and 1660 deletions

1652
package-lock.json generated

File diff suppressed because it is too large Load diff

1594
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
body { body {
background: #002B36; background: #0c0c0c;
padding: 20px 50px; padding: 20px 50px;
margin: 0px; margin: 0px;
} }
@ -69,7 +69,7 @@ textarea {
} }
#box2 { #box2 {
background: #08323c; background: #242424;
font-size: 0px; font-size: 0px;
padding: 0px 5px; padding: 0px 5px;
} }
@ -115,7 +115,7 @@ textarea {
} }
#box3, #messages li { #box3, #messages li {
background: #173e48; background: #242424;
font-family: Helvetica, sans-serif; font-family: Helvetica, sans-serif;
font-size: 12px; font-size: 12px;
line-height: 14px; line-height: 14px;
@ -173,3 +173,7 @@ textarea {
background:rgba(102,8,0,0.8); background:rgba(102,8,0,0.8);
} }
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-thumb{background:#414141}
::-webkit-scrollbar-thumb:hover{background:#969696}
::-webkit-scrollbar-track{background:#242424}

File diff suppressed because one or more lines are too long

View file

@ -33,7 +33,7 @@
$(function() { $(function() {
var baseUrl = window.location.href.split('/'); var baseUrl = window.location.href.split('/');
baseUrl = baseUrl.slice(0, baseUrl.length - 1).join('/') + '/'; baseUrl = baseUrl.slice(0, baseUrl.length - 1).join('/') + '/';
app = new haste('hastebin', { twitter: true, baseUrl: baseUrl }); app = new haste('hastebin', { twitter: false, baseUrl: baseUrl });
handlePop({ target: window }); handlePop({ target: window });
}); });
</script> </script>
@ -45,9 +45,9 @@
<div id="key"> <div id="key">
<div id="pointer" style="display:none;"></div> <div id="pointer" style="display:none;"></div>
<div id="box1"> <!--<div id="box1">
<a href="about.md" class="logo"></a> <a href="about.md" class="logo"></a>
</div> </div>*/-->
<div id="box2"> <div id="box2">
<button class="save function button-picture">Save</button> <button class="save function button-picture">Save</button>
<button class="new function button-picture">New</button> <button class="new function button-picture">New</button>

View file

@ -8,7 +8,7 @@ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmai
display: block; display: block;
overflow-x: auto; overflow-x: auto;
padding: 0.5em; padding: 0.5em;
background: #002b36; background: #0c0c0c;
color: #839496; color: #839496;
} }