2011-11-16 16:01:45 +00:00
|
|
|
/* variables and mixins used in multiple less files go here */
|
2011-10-04 20:18:59 +00:00
|
|
|
@text-blue: #3d4e53;
|
|
|
|
@medium-blue: #6994a3;
|
2011-12-20 20:33:20 +00:00
|
|
|
@medium-blue-grey: #a7c1ca;
|
2011-10-04 20:18:59 +00:00
|
|
|
@pale-blue: #edf3f4;
|
|
|
|
@green: #8dc63f;
|
2011-12-20 15:39:02 +00:00
|
|
|
@call-to-action: #8dc63f;
|
2011-10-04 20:18:59 +00:00
|
|
|
@dark-green: #73a334;
|
|
|
|
@dark-blue: #37414d;
|
2011-11-18 18:27:26 +00:00
|
|
|
@blue-grey: #d6dde0;
|
2011-12-20 18:31:20 +00:00
|
|
|
@bright-blue: #8ac3d7;
|
2011-10-04 20:18:59 +00:00
|
|
|
@image-base: "/static/images/";
|
|
|
|
@background-header: "@{image-base}bg.png";
|
|
|
|
@background-body: "@{image-base}bg-body.png";
|
|
|
|
@background-booklist: "@{image-base}booklist/bg.png";
|
|
|
|
|
|
|
|
.header-text {
|
|
|
|
height:36px;
|
|
|
|
line-height:36px;
|
|
|
|
display:block;
|
|
|
|
text-decoration:none;
|
|
|
|
font-weight:bold;
|
|
|
|
font-size:13px;
|
2011-10-13 16:25:10 +00:00
|
|
|
letter-spacing: -.05em;
|
2011-10-04 20:18:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.border-radius(@topleft, @topright, @bottomright, @bottomleft) {
|
|
|
|
-moz-border-radius: @arguments;
|
|
|
|
-webkit-border-radius: @arguments;
|
2011-10-11 13:32:52 +00:00
|
|
|
border-radius: @arguments;
|
2011-10-04 20:18:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.panelborders {
|
|
|
|
border-width: 1px 0px;
|
|
|
|
border-style: solid none;
|
|
|
|
border-color: #FFFFFF;
|
2011-10-11 13:32:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-arrows(@x, @y) {
|
|
|
|
background:url(@background-booklist) @x @y no-repeat;
|
|
|
|
width:10px;
|
|
|
|
height:15px;
|
|
|
|
display:block;
|
|
|
|
text-indent:-10000px;
|
2011-10-13 16:25:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.supporter-color-span(@hex, @color) {
|
|
|
|
@url: %("%sheader-button-%s.png", @image-base, @color);
|
|
|
|
background:@hex url(@url) left bottom repeat-x;
|
|
|
|
}
|
|
|
|
|
|
|
|
.height(@x) {
|
|
|
|
height:@x;
|
|
|
|
line-height:@x;
|
|
|
|
}
|
2012-01-10 21:27:31 +00:00
|
|
|
|
|
|
|
.mediaborder {
|
|
|
|
padding: 5px;
|
|
|
|
border: solid 5px #EDF3F4;
|
|
|
|
}
|