Skip to content

Commit

Permalink
Rounded corners and drop shadows, make things a little less gloomy
Browse files Browse the repository at this point in the history
  • Loading branch information
barneydesmond committed May 23, 2014
1 parent c7a79e4 commit 06139d8
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,22 @@ ul.posts span {
background: #222222;
margin: 2em auto 2em auto;
text-align: justify;
-webkit-box-shadow: 10px 10px 5px -4px rgba(24,24,48,0.85);
-moz-box-shadow: 10px 10px 5px -4px rgba(24,24,48,0.85);
box-shadow: 10px 10px 5px -4px rgba(24,24,48,0.85);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}


.site .title {
background: black;
background: #111111;
padding-left: 45px;
padding-right: 45px;
-webkit-border-radius: 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px;
border-radius: 10px 10px 0px 0px;
}

.site .title h1 {
Expand Down

0 comments on commit 06139d8

Please sign in to comment.