diff --git a/app/views/editor.blade.php b/app/views/editor.blade.php index 2b81fd6..afb514d 100644 --- a/app/views/editor.blade.php +++ b/app/views/editor.blade.php @@ -7,6 +7,7 @@
+ @if(isset($paste->ip) && strcmp($paste->ip, Request::getClientIp()) == 0) diff --git a/public/css/template.css b/public/css/template.css index 08f054f..b8f03e0 100644 --- a/public/css/template.css +++ b/public/css/template.css @@ -15,10 +15,6 @@ html, body { font-size:14px; } -button { - font-family: monospace; -} - ::selection { background: rgba(255, 183, 183, 0.5); } @@ -125,6 +121,13 @@ button { color:#fff; float:right; margin-right:2em; + font-family: monospace; + opacity: 0.5; +} + +button:hover { + opacity: 0.8; + cursor:pointer; } #overlay { @@ -157,3 +160,14 @@ button { .hide { display: none; } + +#logo { + font-family: monospace; + float:left; + margin-left: 2em; + border-left:0px; + border-top:0px; + border-right: 0px; + border-radius: 0px; + padding: 0px; +}