2011-06-30 19:44:04 +02:00
|
|
|
/*!
|
2012-12-01 07:30:50 +01:00
|
|
|
* Bootstrap v3.0.0
|
2011-06-30 09:15:37 +02:00
|
|
|
*
|
2012-01-15 08:28:48 +01:00
|
|
|
* Copyright 2012 Twitter, Inc
|
2011-06-30 19:21:27 +02:00
|
|
|
* Licensed under the Apache License v2.0
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-06-29 04:49:42 +02:00
|
|
|
*
|
2012-12-20 03:43:55 +01:00
|
|
|
* Designed and built with all the love in the world by @mdo and @fat.
|
2011-06-30 08:47:54 +02:00
|
|
|
*/
|
2011-06-29 00:10:43 +02:00
|
|
|
|
2011-09-13 05:07:26 +02:00
|
|
|
// Core variables and mixins
|
|
|
|
@import "variables.less"; // Modify this for custom colors, font-sizes, etc
|
|
|
|
@import "mixins.less";
|
|
|
|
|
2012-12-20 03:43:55 +01:00
|
|
|
// Reset
|
|
|
|
@import "normalize.less";
|
|
|
|
|
2013-01-16 02:55:14 +01:00
|
|
|
// Core CSS
|
|
|
|
@import "scaffolding.less";
|
|
|
|
@import "type.less";
|
|
|
|
@import "code.less";
|
|
|
|
@import "grid.less";
|
|
|
|
|
2013-01-16 20:48:20 +01:00
|
|
|
@import "tables.less";
|
2013-01-16 21:20:34 +01:00
|
|
|
@import "forms.less";
|
2013-01-16 19:52:33 +01:00
|
|
|
@import "buttons.less";
|
|
|
|
|
2013-01-16 02:55:14 +01:00
|
|
|
// Components: common
|
|
|
|
@import "component-animations.less";
|
2013-01-16 21:30:44 +01:00
|
|
|
@import "glyphicons.less";
|
2013-01-16 02:55:14 +01:00
|
|
|
|
|
|
|
// Components: Nav
|
|
|
|
@import "navs.less";
|
|
|
|
@import "navbar.less";
|
2013-01-15 19:14:12 +01:00
|
|
|
|
|
|
|
|
2013-01-16 21:30:44 +01:00
|
|
|
|
2013-01-16 19:52:33 +01:00
|
|
|
// Responsive: Tablets and up
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
|
|
|
|
[class^="span"] {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.span1 { width: 8.3333333%; }
|
|
|
|
.span2 { width: 16.6666667%; }
|
|
|
|
.span3 { width: 25%; }
|
|
|
|
.span4 { width: 33.3333333%; }
|
|
|
|
.span5 { width: 41.666666667%; }
|
|
|
|
.span6 { width: 50%; }
|
|
|
|
.span7 { width: 58.333333333%; }
|
|
|
|
.span8 { width: 66.666666667%; }
|
|
|
|
.span9 { width: 75%; }
|
|
|
|
.span10 { width: 83.333333333%; }
|
|
|
|
.span11 { width: 91.666666667%; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Responsive: Desktops and up
|
|
|
|
@media screen and (min-width: 992px) {
|
|
|
|
|
|
|
|
/* body {
|
|
|
|
font-size: 1.6rem;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
.container {
|
|
|
|
width: 940px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
.navbar .brand {
|
|
|
|
float: left;
|
|
|
|
padding-top: 11px;
|
|
|
|
padding-bottom: 11px;
|
|
|
|
margin-left: -15px;
|
|
|
|
}
|
|
|
|
.navbar .nav {
|
|
|
|
overflow: hidden; /* clearfix */
|
|
|
|
margin-top: 0; /* undo top margin to make nav extend full height of navbar */
|
|
|
|
}
|
|
|
|
.navbar .nav > li {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.navbar .nav > li > a {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Required to make the collapsing navbar work on regular desktops */
|
|
|
|
.navbar .btn-navbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.nav-collapse.collapse {
|
|
|
|
float: left;
|
|
|
|
height: auto !important;
|
|
|
|
overflow: visible !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-15 07:05:55 +01:00
|
|
|
/*
|
2011-09-13 05:07:26 +02:00
|
|
|
// Grid system and page structure
|
2012-01-26 23:50:55 +01:00
|
|
|
@import "grid.less";
|
2011-05-04 03:09:25 +02:00
|
|
|
|
2012-01-05 19:01:42 +01:00
|
|
|
// Base CSS
|
2011-06-28 01:47:12 +02:00
|
|
|
@import "type.less";
|
2012-01-26 23:53:35 +01:00
|
|
|
@import "code.less";
|
2011-06-28 01:47:12 +02:00
|
|
|
@import "forms.less";
|
|
|
|
@import "tables.less";
|
2011-11-17 08:58:36 +01:00
|
|
|
|
2012-01-05 19:01:42 +01:00
|
|
|
// Components: common
|
2012-11-02 09:20:06 +01:00
|
|
|
@import "glyphicons.less";
|
2011-12-21 23:22:20 +01:00
|
|
|
@import "dropdowns.less";
|
2012-01-05 19:01:42 +01:00
|
|
|
@import "wells.less";
|
|
|
|
@import "component-animations.less";
|
|
|
|
@import "close.less";
|
|
|
|
|
2012-01-29 00:09:23 +01:00
|
|
|
// Components: Buttons & Alerts
|
|
|
|
@import "buttons.less";
|
|
|
|
@import "button-groups.less";
|
2012-09-26 07:07:53 +02:00
|
|
|
@import "alerts.less";
|
2012-01-29 00:09:23 +01:00
|
|
|
|
2012-01-05 19:01:42 +01:00
|
|
|
// Components: Nav
|
2012-01-08 05:40:28 +01:00
|
|
|
@import "navs.less";
|
2012-07-30 19:08:27 +02:00
|
|
|
@import "navbar.less";
|
2011-11-17 08:58:36 +01:00
|
|
|
@import "breadcrumbs.less";
|
|
|
|
@import "pagination.less";
|
2012-01-15 05:54:37 +01:00
|
|
|
@import "pager.less";
|
2012-01-05 19:01:42 +01:00
|
|
|
|
|
|
|
// Components: Popovers
|
2011-11-17 08:58:36 +01:00
|
|
|
@import "modals.less";
|
2012-01-12 06:42:55 +01:00
|
|
|
@import "tooltip.less";
|
2011-11-17 08:58:36 +01:00
|
|
|
@import "popovers.less";
|
2012-01-05 19:01:42 +01:00
|
|
|
|
|
|
|
// Components: Misc
|
2011-12-21 23:26:21 +01:00
|
|
|
@import "thumbnails.less";
|
2012-04-20 17:54:51 +02:00
|
|
|
@import "media.less";
|
2012-12-20 06:18:32 +01:00
|
|
|
@import "badges.less";
|
2012-01-08 00:52:57 +01:00
|
|
|
@import "progress-bars.less";
|
2012-01-16 03:40:17 +01:00
|
|
|
@import "accordion.less";
|
2012-01-16 01:27:36 +01:00
|
|
|
@import "carousel.less";
|
2012-12-20 06:37:16 +01:00
|
|
|
@import "jumbotron.less";
|
2011-11-17 08:58:36 +01:00
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
// Utility classes
|
|
|
|
@import "utilities.less"; // Has to be last to override when necessary
|
2012-10-01 08:24:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Responsive
|
|
|
|
// -------------------------------------------------------------
|
|
|
|
|
|
|
|
// Responsive utility classes
|
|
|
|
@import "responsive-utilities.less";
|
|
|
|
|
|
|
|
|
|
|
|
// Media queries
|
|
|
|
// ------------------
|
|
|
|
|
|
|
|
// Large desktops
|
|
|
|
@import "responsive-1200px-min.less";
|
|
|
|
|
|
|
|
// Tablets to regular desktops
|
|
|
|
@import "responsive-768px-979px.less";
|
|
|
|
|
|
|
|
// Phones to portrait tablets and narrow desktops
|
|
|
|
@import "responsive-767px-max.less";
|
|
|
|
|
|
|
|
|
|
|
|
// Responsive navbar
|
|
|
|
// From 979px and below, show a button to toggle navbar contents
|
|
|
|
@import "responsive-navbar.less";
|
2013-01-15 07:05:55 +01:00
|
|
|
*/
|