Skip to content

Commit

Permalink
Add a .background-message element
Browse files Browse the repository at this point in the history
  • Loading branch information
benogle committed Dec 19, 2013
1 parent 535054e commit eb79a6a
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@import "stylesheets/editor";
@import "stylesheets/git";
@import "stylesheets/lists";
@import "stylesheets/messages";
@import "stylesheets/nav";
@import "stylesheets/overlays";
@import "stylesheets/panels";
Expand Down
32 changes: 32 additions & 0 deletions stylesheets/messages.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
@import "ui-variables";

ul.background-message {
font-size: @font-size * 3;
font-weight: bold;
color: rgba(0, 0, 0, .2);

margin: 0;
padding: 0;

li {
margin: 0;
padding: 0;
list-style: none;
}

&.centered {
display: -webkit-flex;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;

-webkit-align-items: center;
text-align: center;

li {
width: 100%;
}
}
}

0 comments on commit eb79a6a

Please sign in to comment.