2011-07-01 01:44:04 +08:00
|
|
|
/*!
|
2012-12-01 14:30:50 +08:00
|
|
|
* Bootstrap v3.0.0
|
2011-06-30 15:15:37 +08:00
|
|
|
*
|
2012-01-15 15:28:48 +08:00
|
|
|
* Copyright 2012 Twitter, Inc
|
2011-07-01 01:21:27 +08:00
|
|
|
* Licensed under the Apache License v2.0
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-06-29 10:49:42 +08:00
|
|
|
*
|
2012-12-20 10:43:55 +08:00
|
|
|
* Designed and built with all the love in the world by @mdo and @fat.
|
2011-06-30 14:47:54 +08:00
|
|
|
*/
|
2011-06-29 06:10:43 +08:00
|
|
|
|
2011-09-13 11:07:26 +08:00
|
|
|
// Core variables and mixins
|
|
|
|
@import "variables.less"; // Modify this for custom colors, font-sizes, etc
|
|
|
|
@import "mixins.less";
|
|
|
|
|
2012-12-20 10:43:55 +08:00
|
|
|
// Reset
|
|
|
|
@import "normalize.less";
|
|
|
|
|
2013-01-16 09:55:14 +08:00
|
|
|
// Core CSS
|
|
|
|
@import "scaffolding.less";
|
|
|
|
@import "type.less";
|
|
|
|
@import "code.less";
|
|
|
|
@import "grid.less";
|
|
|
|
|
2013-01-17 03:48:20 +08:00
|
|
|
@import "tables.less";
|
2013-01-17 04:20:34 +08:00
|
|
|
@import "forms.less";
|
2013-01-17 02:52:33 +08:00
|
|
|
@import "buttons.less";
|
|
|
|
|
2013-01-16 09:55:14 +08:00
|
|
|
// Components: common
|
|
|
|
@import "component-animations.less";
|
2013-01-17 04:30:44 +08:00
|
|
|
@import "glyphicons.less";
|
2013-01-17 04:44:31 +08:00
|
|
|
@import "dropdowns.less";
|
2013-01-17 05:05:20 +08:00
|
|
|
@import "wells.less";
|
|
|
|
@import "close.less";
|
2013-01-16 09:55:14 +08:00
|
|
|
|
|
|
|
// Components: Nav
|
|
|
|
@import "navs.less";
|
|
|
|
@import "navbar.less";
|
2013-01-17 05:04:29 +08:00
|
|
|
@import "button-groups.less";
|
2013-01-17 05:06:15 +08:00
|
|
|
@import "breadcrumbs.less";
|
2013-01-17 05:07:08 +08:00
|
|
|
@import "pagination.less";
|
|
|
|
@import "pager.less";
|
2013-01-16 02:14:12 +08:00
|
|
|
|
2013-01-17 05:07:41 +08:00
|
|
|
// Components: Popovers
|
|
|
|
@import "modals.less";
|
|
|
|
@import "tooltip.less";
|
|
|
|
@import "popovers.less";
|
|
|
|
|
|
|
|
// Components: Misc
|
|
|
|
@import "thumbnails.less";
|
|
|
|
@import "media.less";
|
|
|
|
@import "badges.less";
|
|
|
|
@import "progress-bars.less";
|
|
|
|
@import "accordion.less";
|
|
|
|
@import "carousel.less";
|
|
|
|
@import "jumbotron.less";
|
|
|
|
|
|
|
|
// Utility classes
|
|
|
|
@import "utilities.less"; // Has to be last to override when necessary
|
2013-01-16 02:14:12 +08:00
|
|
|
|
2013-01-17 04:30:44 +08:00
|
|
|
|
2013-01-17 02:52:33 +08: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 {
|
2013-01-17 06:10:33 +08:00
|
|
|
max-width: 940px;
|
2013-01-17 02:52:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.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-17 06:48:25 +08:00
|
|
|
// Responsive: Large desktops and up
|
|
|
|
@media screen and (min-width: 1200px) {
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 1170px;
|
|
|
|
}
|
|
|
|
[class^="span"] {
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-15 14:05:55 +08:00
|
|
|
/*
|
2012-10-01 14:24:07 +08: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 14:05:55 +08:00
|
|
|
*/
|