Skip to content

Commit

Permalink
Add text-color styles (FLAT) and fix border around boxes a little
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackysi committed Dec 28, 2014
1 parent 24574ee commit 45dfe62
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions css/style.css
Expand Up @@ -83,6 +83,13 @@ small { font-size: 80%; }
.align.center, .centered { text-align: center; }
.bold, b { font-weight: 500; color: #656565; }

/* General Text styles */
.text-center { display: block; text-align: center; }
.text-orange { color: #c0392b; }
.text-green { color: #27ae60; }
.text-red { color: #c0392b; }
.text-blue { color: #2980b9; }

/* Reset all elements to box-sizing: border-box; sort of crossbrowser fix! */
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*:before,*:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
Expand Down Expand Up @@ -581,7 +588,7 @@ small { font-size: 80%; }
margin: 0 0 15px;
border-width: 1px;
border-style: solid;
border-color: #eee #eee #dedede;
border-color: #eaeaea #eaeaea #dedede;
background: #fff;
border-radius: 3px;
-webkit-border-radius: 3px;
Expand All @@ -592,12 +599,12 @@ small { font-size: 80%; }

.box .heading {
display: block;
font-size: 14px;
font-size: 15px;
font-weight: 500;
line-height: 1;
color: #656565;
background-color: #FAFAFA;
padding: 15px;
padding: 16px;
border-bottom: 1px solid #f0f0f0;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
Expand Down

0 comments on commit 45dfe62

Please sign in to comment.