Standard blue theme

This commit is contained in:
Yann Esposito (Yogsototh) 2011-05-02 11:14:52 +02:00
parent eccc7fba43
commit 5f5824a84d
3 changed files with 80 additions and 46 deletions

View file

@ -1,18 +1,20 @@
/* line 5, ../src/main.scss */
@charset "UTF-8";
/* line 19, ../src/main.scss */
body {
background-color: #f6f6f6;
background-color: #f6f6f0;
font-family: 'Kreon', Palatino, Georgia, arial, serif;
}
/* line 8, ../src/main.scss */
/* line 23, ../src/main.scss */
#metacontainer {
border-bottom: 1px solid #888;
}
/* line 11, ../src/main.scss */
/* line 26, ../src/main.scss */
body > header {
margin: 0;
color: #CCC;
background-color: #333;
background-color: #2c5490;
line-height: 50px;
font-weight: bold;
-moz-box-shadow: #333333 0px 1px 5px 0;
@ -21,14 +23,14 @@ body > header {
box-shadow: #333333 0px 1px 5px 0;
}
/* line 19, ../src/main.scss */
/* line 34, ../src/main.scss */
body > footer {
border-top: solid 2px #CCC;
border-bottom: solid 1px #888;
border-top: solid 2px rgba(0, 0, 0, 0.1);
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
padding: 80px;
margin: 0;
bottom: 0;
background-color: #D0D0D0;
background-color: #bcd0ee;
font-size: .9em;
text-shadow: 1px 1px #fff;
-moz-box-shadow: #888888 0px 1px 5px 0;
@ -37,51 +39,58 @@ body > footer {
box-shadow: #888888 0px 1px 5px 0;
}
/* line 30, ../src/main.scss */
/* line 45, ../src/main.scss */
nav {
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
/* line 48, ../src/main.scss */
nav ul {
list-style-type: none;
}
/* line 33, ../src/main.scss */
/* line 51, ../src/main.scss */
nav ul li {
display: inline-block;
height: 50px;
margin-right: -4px;
border-left: solid 1px #555;
border-right: solid 1px #111;
margin-right: 0;
text-align: center;
border-left: solid 1px rgba(255, 255, 255, 0.1);
border-right: solid 1px rgba(0, 0, 0, 0.2);
}
/* line 40, ../src/main.scss */
/* line 59, ../src/main.scss */
nav ul li a {
color: #CCC;
color: rgba(255, 255, 255, 0.8);
display: block;
text-decoration: none;
display: inline-block;
margin-right: 0px;
margin-left: 0px;
text-shadow: -1px -1px #222, 1px 1px #222;
text-shadow: -1px -1px rgba(0, 0, 0, 0.2), 1px 1px rgba(0, 0, 0, 0.2);
padding: 0 10px;
height: 100%;
}
/* line 48, ../src/main.scss */
/* line 68, ../src/main.scss */
nav ul li a:hover {
color: #EEE;
color: rgba(255, 255, 255, 0.8);
background-color: rgba(255, 255, 255, 0.1);
}
/* line 52, ../src/main.scss */
/* line 72, ../src/main.scss */
#main {
margin: 0px auto;
}
/* line 55, ../src/main.scss */
/* line 75, ../src/main.scss */
#container {
margin: 0px auto;
}
/* line 59, ../src/main.scss */
/* line 79, ../src/main.scss */
h1, h2, h3, h4, h5, h6 {
font-family: Optima, sans-serif;
text-shadow: -1px -1px 1px #333, 1px 1px 1px #FFF;
color: #888;
font-family: 'Expletus Sans',Futura,sans-serif;
text-shadow: 0px -1px 0px #2233aa, 0px 1px 0px white;
font-weight: bold;
color: #88aadd;
}

View file

@ -14,10 +14,13 @@
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<title><%= @item[title] %></title>
<meta name="description" content="">
<meta name="author" content="">
<link href='http://fonts.googleapis.com/css?family=Expletus+Sans:bold' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Kreon:regular,bold' rel='stylesheet' type='text/css'>
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
@ -42,9 +45,10 @@
<header>
<nav id="mainnav">
<ul>
<li><a href="#">{item 1}</a></li>
<li><a href="#">{item 2}</a></li>
<li><a href="#">{item 3}</a></li>
<li><a href="#">{item 1}</a>
</li><li><a href="#">{item 2}</a>
</li><li><a href="#">{item 3}</a>
</li>
</ul>
</nav>
</header>

View file

@ -1,9 +1,24 @@
$default-box-shadow-h-offset : 0px;
@import "less/framework";
@import "compass/css3/box-shadow";
@import "compass/css3/font-face";
// Color scheme: colorschemedesigner.com
// 88AADD -> main
// BCD0EE -> light-grey
// A9C5EE -> light
// 2C5490 -> dark
// 7689A6 -> grey
$backgroundColor: #f6f6f0;
$higlightColor: #8AD;
$higlightColorShadow: #23A;
$topColor: #2C5490;
$footerColor: #BCD0EE;
body {
background-color: #f6f6f6;
background-color: $backgroundColor;
font-family: 'Kreon', Palatino, Georgia, arial, serif;
}
#metacontainer{
border-bottom: 1px solid #888;
@ -11,42 +26,47 @@ body {
body > header {
margin: 0;
color: #CCC;
background-color: #333;
background-color: $topColor;
line-height: 50px;
font-weight: bold;
@include box-shadow();
}
body > footer {
border-top: solid 2px #CCC;
border-bottom: solid 1px #888;
border-top: solid 2px rgba(0,0,0,0.1);
border-bottom: solid 1px rgba(0,0,0,0.1);
padding: 80px;
margin: 0;
bottom: 0;
background-color: #D0D0D0;
background-color: $footerColor;
font-size: .9em;
text-shadow: 1px 1px #fff;
@include box-shadow(#888);
}
nav {
border-bottom: solid 1px rgba(0,0,0,0.1);
}
nav ul {
list-style-type: none;
}
nav ul li {
display: inline-block;
height: 50px;
margin-right: -4px;
border-left: solid 1px #555;
border-right: solid 1px #111;
margin-right: 0;
text-align: center;
border-left: solid 1px rgba(255,255,255,0.1);
border-right: solid 1px rgba(0,0,0,0.2);
}
nav ul li a { color: #CCC;
nav ul li a { color: rgba(255,255,255,0.8);
display: block;
text-decoration: none;
display: inline-block;
margin-right: 0px;
margin-left: 0px;
text-shadow: -1px -1px #222, 1px 1px #222;
text-shadow: -1px -1px rgba(0,0,0,0.2), 1px 1px rgba(0,0,0,0.2);
padding: 0 10px;
height: 100%; }
height: 100%;
}
nav ul li a:hover {
color: #EEE;
color: rgba(255,255,255,0.8);
background-color: rgba(255,255,255,0.1);
}
#main {
@ -57,7 +77,8 @@ nav ul li a:hover {
}
h1, h2, h3, h4, h5, h6 {
font-family: Optima, sans-serif;
text-shadow: -1px -1px 1px #333, 1px 1px 1px #FFF;
color: #888;
font-family: 'Expletus Sans',Futura,sans-serif;
text-shadow: 0px -1px 0px $higlightColorShadow, 0px 1px 0px #FFF;
font-weight: bold;
color: $higlightColor;
}