2011-11-27 13:15:12 +00:00
|
|
|
.clear {
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
// color pallette: http://www.colourlovers.com/palette/580974/Adrift_in_Dreams
|
|
|
|
|
|
|
|
$color1: #00A0B0;
|
|
|
|
$color2: #6A4A3C;
|
|
|
|
$color3: #CC333F;
|
|
|
|
$color4: #EB6841;
|
|
|
|
$color5: #EDC951;
|
|
|
|
|
2011-11-27 13:15:12 +00:00
|
|
|
body {
|
2012-03-04 14:18:09 +00:00
|
|
|
background-color: #f0f0f0;
|
2011-11-27 13:15:12 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body, div, p {
|
|
|
|
font-family: arial, helvetica;
|
2012-03-04 14:18:09 +00:00
|
|
|
font-size: 14px;
|
2011-11-27 13:15:12 +00:00
|
|
|
}
|
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
header {
|
|
|
|
background-color: $color5;
|
|
|
|
height: 40px;
|
2011-11-27 13:15:12 +00:00
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
nav {
|
|
|
|
height: 100%;
|
2011-11-27 13:15:12 +00:00
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
h1 {
|
|
|
|
height: 100%;
|
|
|
|
float: left;
|
|
|
|
background-color: black;
|
|
|
|
font-family: 'Trebuchet MS';
|
|
|
|
font-size: 26px;
|
|
|
|
padding-right: 10px;
|
2011-11-27 13:15:12 +00:00
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 6px 0 0 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2011-11-27 13:15:12 +00:00
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
ul {
|
2012-03-04 21:44:04 +00:00
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul#session-info {
|
2012-03-04 14:18:09 +00:00
|
|
|
list-style: none;
|
|
|
|
height: 100%;
|
|
|
|
float: right;
|
|
|
|
background-color: $color1;
|
|
|
|
|
|
|
|
li {
|
2012-03-04 21:44:04 +00:00
|
|
|
// color: #eee;
|
2012-03-04 14:18:09 +00:00
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
2012-03-04 21:44:04 +00:00
|
|
|
|
|
|
|
ul#navigation {
|
|
|
|
list-style: none;
|
|
|
|
height: 100%;
|
|
|
|
float: right;
|
|
|
|
background-color: $color3;
|
|
|
|
}
|
2012-03-04 14:18:09 +00:00
|
|
|
}
|
2011-11-27 13:15:12 +00:00
|
|
|
}
|
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $color2;
|
2011-11-27 13:15:12 +00:00
|
|
|
}
|
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2011-11-27 13:15:12 +00:00
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
// a.logout {
|
|
|
|
// background-image: url(image-path("logout.png"));
|
|
|
|
// background-repeat: no-repeat;
|
|
|
|
// }
|
2012-03-03 07:52:44 +00:00
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
.flash {
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 10px 0 10px 10px;
|
|
|
|
font-weight: bold;
|
2011-11-27 13:15:12 +00:00
|
|
|
}
|
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
.flash#notice {
|
|
|
|
color: black;
|
|
|
|
background-color: white;
|
2011-11-27 13:15:12 +00:00
|
|
|
}
|
|
|
|
|
2012-03-04 14:18:09 +00:00
|
|
|
.flash#alert {
|
|
|
|
color: red;
|
2011-11-27 13:15:12 +00:00
|
|
|
background-color: white;
|
2012-03-04 14:18:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
// color: #3e3e3e;
|
|
|
|
color: $color3;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 20px;
|
|
|
|
padding: 15px 0px 30px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
width: 960px;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 20px;
|
2011-11-27 13:15:12 +00:00
|
|
|
}
|