Skip to content

Commit

Permalink
styling
Browse files Browse the repository at this point in the history
  • Loading branch information
whackashoe committed Jan 11, 2015
1 parent b21e362 commit dc47a21
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
1 change: 1 addition & 0 deletions app/views/editor.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<div id="caret"></div>
<menu id="mainmenu">
<div id="linepadder"></div>
<a href="{{ url('/') }}"><button id="logo">killr.io</button></a>
@if(isset($paste->ip) && strcmp($paste->ip, Request::getClientIp()) == 0)
<button id="views">views {{ $paste->views }}</button>
<button id="delete">delete</button>
Expand Down
22 changes: 18 additions & 4 deletions public/css/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ html, body {
font-size:14px;
}

button {
font-family: monospace;
}

::selection {
background: rgba(255, 183, 183, 0.5);
}
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
}

0 comments on commit dc47a21

Please sign in to comment.