# Install them with the following:
install.packages("shiny")
install.packages("shinythemes")
Shiny Code examples
I’ll include all the shiny code examples below for easy copying
You’ll need to have the shiny package installed for this!
Lecture 1 examples
00_starthere.R
# This is the code to make the 01_hello example app
library(shiny)
library(bslib)
# Define UI for app that draws a histogram ----
<- page_sidebar(
ui # App title ----
title = "Hello Shiny!",
# Sidebar panel for inputs ----
sidebar = sidebar(
# Input: Slider for the number of bins ----
sliderInput(
inputId = "bins",
label = "Number of bins:",
min = 1,
max = 50,
value = 30
)
),# Output: Histogram ----
card(plotOutput(outputId = "distPlot"))
)
# Define server logic required to draw a histogram ----
<- function(input, output) {
server
# Histogram of the Old Faithful Geyser Data ----
# with requested number of bins
# This expression that generates a histogram is wrapped in a call
# to renderPlot to indicate that:
#
# 1. It is "reactive" and therefore should be automatically
# re-executed when inputs (input$bins) change
# 2. Its output type is a plot
$distPlot <- renderPlot({
output
<- faithful$waiting
x <- seq(min(x), max(x), length.out = input$bins + 1)
bins
hist(x, breaks = bins, col = "#007bc2", border = "white",
xlab = "Waiting time to next eruption (in mins)",
main = "Histogram of waiting times")
})
}
shinyApp(ui = ui, server = server)
01_template.R
Try to add a slider input here:
library(shiny)
<- fluidPage(
ui # put a slider input here
)
<- function(input, output) {
server
}
shinyApp(ui = ui, server = server)
02_rnom_example.R
Try to add a radio input and a numeric input used to control a plot. The number should increase the number of datapoints in the plot, and the radio input should control the colours of the plot.
library(shiny)
<- fluidPage(
ui sidebarLayout(
sidebarPanel(
# Put your inputs here
),mainPanel(
# Put your outputs here
)
)
)
<- function(input, output) {
server $plot1 <- renderPlot({
output# put the plot code here
})
}
shinyApp(ui = ui, server = server)
03_kmeansexample.R
Try updating this app to: - use mtcars
instead of iris
- Add another plot in a new column
# 01-kmeans-app
palette(c("#E41A1C", "#377EB8", "#4DAF4A", "#984EA3",
"#FF7F00", "#FFFF33", "#A65628", "#F781BF", "#999999"))
library(shiny)
<- fluidPage(
ui headerPanel('Iris k-means clustering'),
sidebarPanel(
selectInput('xcol', 'X Variable', names(iris)),
selectInput('ycol', 'Y Variable', names(iris),
selected = names(iris)[[2]]),
numericInput('clusters', 'Cluster count', 3,
min = 1, max = 9)
),mainPanel(
plotOutput('plot1')
)
)
<- function(input, output) {
server
<- reactive({
selectedData c(input$xcol, input$ycol)]
iris[,
})
<- reactive({
clusters kmeans(selectedData(), input$clusters)
})
$plot1 <- renderPlot({
outputpar(mar = c(5.1, 4.1, 0, 1))
plot(selectedData(),
col = clusters()$cluster,
pch = 20, cex = 3)
points(clusters()$centers, pch = 4, cex = 4, lwd = 4)
})
}
shinyApp(ui = ui, server = server)
Lecture 2 examples
Non-reactive app
See how the app doesn’t do anything when the slider is moved, but only when the button is pressed?
library(shiny)
<- fluidPage(
ui sliderInput(inputId = "num",
label = "Choose a number",
min = 1, max = 100, value = 25),
actionButton(inputId = "go", label = "Action!"),
plotOutput("hist"),
verbatimTextOutput("stats")
)
<- function(input, output, session) {
server # Create a reactive value to store the data
<- reactiveVal()
data
# observeEvent responds to the action button
observeEvent(input$go, {
data(rnorm(input$num))
})
$hist <- renderPlot({
outputreq(data()) # Ensure data is available
hist(data())
})
$stats <- renderPrint({
outputreq(data()) # Ensure data is available
summary(data())
})
}
shinyApp(ui = ui, server = server)
Reactive app
As opposed to this app, which automatically updates as the slider value changes
library(shiny)
<- fluidPage(
ui sliderInput(inputId = "num",
label = "Choose a number",
value = 25, min = 1, max = 100),
plotOutput("hist"),
verbatimTextOutput("stats")
)
<- function(input, output) {
server
# define the reactive data
<- reactive({
data rnorm(input$num)
})
# Use it to make the plot and summary stats
$hist <- renderPlot({
outputhist(data())
})$stats <- renderPrint({
outputsummary(data())
})
}
shinyApp(ui = ui, server = server)
Isolate
What happens when you remove the isolate
function from the following? How does the app change?
library(shiny)
<- fluidPage(
ui sliderInput(inputId = "num",
label = "Choose a number",
value = 25, min = 1, max = 100),
textInput(inputId = "title",
label = "Write a title",
value = "Histogram of Random Normal Values"),
plotOutput("hist")
)
<- function(input, output) {
server $hist <- renderPlot({
outputhist(rnorm(input$num), main = isolate(input$title))
})
}
shinyApp(ui = ui, server = server)
Observe event
The app currently prints to the console when you click the button.
Try to make it print the number in the app itself. Think about the outputs!
library(shiny)
<- fluidPage(
ui sliderInput(inputId = "num",
label = "Choose a number",
min = 1, max = 100, value = 25),
actionButton(inputId = "go",label = "Action!")
)
<- function(input, output) {
server
# observe responds to the print button
# but not the slider
observeEvent(input$go, {
print(as.numeric(input$num))
})
}
shinyApp(ui = ui, server = server)
Event react
library(shiny)
<- fluidPage(
ui sliderInput(inputId = "num",
label = "Choose a number",
value = 25, min = 1, max = 100),
actionButton(inputId = "go",
label = "Update"),
plotOutput("hist")
)
<- function(input, output) {
server <- eventReactive(input$go, {
data rnorm(input$num)
})
$hist <- renderPlot({
outputhist(data())
})
}
shinyApp(ui = ui, server = server)
Theme selector app
library(shiny)
library(shinythemes)
shinyApp(
ui = fluidPage(
::themeSelector(), # <--- Add this somewhere in the UI to get the theme selector
shinythemessidebarPanel(
textInput("txt", "Text input:", "text here"),
sliderInput("slider", "Slider input:", 1, 100, 30),
actionButton("action", "Button"),
actionButton("action2", "Button2", class = "btn-primary")
),mainPanel(
tabsetPanel(
tabPanel("Tab 1"),
tabPanel("Tab 2")
)
)
),server = function(input, output) {}
)
Custom css example
The following app is an example using custom css.
In order for you browser to have access to the css file and the image used, you need to make a special www
directory and put the files in there. This directory should be in the same place as the app script, but the script shouldn’t be in the www
dir itself. This directory is basically passed to your browser, so when it displays the app it’s given this directory as well.
I’ll include the css file contents in the code chunk after the app if you want to copy it easily (note that’s it’s quite long so just click the copy button rather than trying to highlight it all!).
{
palette(c("#E41A1C", "#377EB8", "#4DAF4A", "#984EA3",
"#FF7F00", "#FFFF33", "#A65628", "#F781BF", "#999999"))
library(shiny)
<- fluidPage(
ui theme = "bootstrap.css",
$img(height = 100,
tagswidth = 100,
src = "beaker.png"),
headerPanel('Iris k-means clustering'),
sidebarPanel(
selectInput('xcol', 'X Variable', names(iris)),
selectInput('ycol', 'Y Variable', names(iris),
selected = names(iris)[[2]]),
numericInput('clusters', 'Cluster count', 3,
min = 1, max = 9)
),mainPanel(
plotOutput('plot1')
)
)
<- function(input, output) {
server
<- reactive({
selectedData c(input$xcol, input$ycol)]
iris[,
})
<- reactive({
clusters kmeans(selectedData(), input$clusters)
})
$plot1 <- renderPlot({
outputpar(mar = c(5.1, 4.1, 0, 1))
plot(selectedData(),
col = clusters()$cluster,
pch = 20, cex = 3)
points(clusters()$centers, pch = 4, cex = 4, lwd = 4)
})
}
shinyApp(ui = ui, server = server)
}
The css is in the next code chunk, I’ve folded it as it’s several thousand lines long…
Code
/*!
* bootswatch v3.4.1
* Homepage: https://bootswatch.com
* Copyright 2012-2019 Thomas Park
* Licensed under MIT
* Based on Bootstrap
*/
/*!
* Bootstrap v3.4.1 (https://getbootstrap.com/)
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {-family: sans-serif;
font-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {: 0;
margin
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {: block;
display
}
audio,
canvas,
progress,
video {: inline-block;
display-align: baseline;
vertical
}:not([controls]) {
audio: none;
display: 0;
height
}
[hidden],
template {: none;
display
}
a {-color: transparent;
background
}:active,
a:hover {
a: 0;
outline
}
abbr[title] {-bottom: none;
border-decoration: underline;
text-decoration: underline dotted;
text
}
b,
strong {-weight: bold;
font
}
dfn {-style: italic;
font
}
h1 {-size: 2em;
font: 0.67em 0;
margin
}
mark {: #ff0;
background: #000;
color
}
small {-size: 80%;
font
}
sub,
sup {-size: 75%;
font-height: 0;
line: relative;
position-align: baseline;
vertical
}
sup {: -0.5em;
top
}
sub {: -0.25em;
bottom
}
img {: 0;
border
}:not(:root) {
svg: hidden;
overflow
}
figure {: 1em 40px;
margin
}
hr {-sizing: content-box;
box: 0;
height
}
pre {: auto;
overflow
}
code,
kbd,
pre,
samp {-family: monospace, monospace;
font-size: 1em;
font
}
button,
input,
optgroup,
select,
textarea {: inherit;
color: inherit;
font: 0;
margin
}
button {: visible;
overflow
}
button,
select {-transform: none;
text
}
button,="button"],
html input[type="reset"],
input[type="submit"] {
input[type-webkit-appearance: button;
: pointer;
cursor
}
button[disabled],
html input[disabled] {: default;
cursor
}::-moz-focus-inner,
button::-moz-focus-inner {
input: 0;
border: 0;
padding
}
input {-height: normal;
line
}="checkbox"],
input[type="radio"] {
input[type-sizing: border-box;
box: 0;
padding
}="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
input[type: auto;
height
}="search"] {
input[type-webkit-appearance: textfield;
-sizing: content-box;
box
}="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
input[type-webkit-appearance: none;
}
fieldset {: 1px solid #c0c0c0;
border: 0 2px;
margin: 0.35em 0.625em 0.75em;
padding
}
legend {: 0;
border: 0;
padding
}
textarea {: auto;
overflow
}
optgroup {-weight: bold;
font
}
table {-collapse: collapse;
border-spacing: 0;
border
}
td,
th {: 0;
padding
}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
*,
*:before,
*:after {
: #000 !important;
color-shadow: none !important;
text: transparent !important;
background-shadow: none !important;
box
}
a,:visited {
a-decoration: underline;
text
}:after {
a[href]: " (" attr(href) ")";
content
}:after {
abbr[title]: " (" attr(title) ")";
content
}^="#"]:after,
a[href^="javascript:"]:after {
a[href: "";
content
}
pre,
blockquote {: 1px solid #999;
border-break-inside: avoid;
page
}
thead {: table-header-group;
display
}
tr,
img {-break-inside: avoid;
page
}
img {-width: 100% !important;
max
}
p,
h2,
h3 {: 3;
orphans: 3;
widows
}
h2,
h3 {-break-after: avoid;
page
}
.navbar {: none;
display
}> .caret,
.btn > .btn > .caret {
.dropup -top-color: #000 !important;
border
}
.label {: 1px solid #000;
border
}
.table {-collapse: collapse !important;
border
}
.table td,
.table th {-color: #fff !important;
background
}-bordered th,
.table-bordered td {
.table: 1px solid #ddd !important;
border
}
}@font-face {
-family: "Glyphicons Halflings";
font: url("../fonts/glyphicons-halflings-regular.eot");
src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
src
}
.glyphicon {: relative;
position: 1px;
top: inline-block;
display-family: "Glyphicons Halflings";
font-style: normal;
font-weight: 400;
font-height: 1;
line-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}-asterisk:before {
.glyphicon: "\002a";
content
}-plus:before {
.glyphicon: "\002b";
content
}-euro:before,
.glyphicon-eur:before {
.glyphicon: "\20ac";
content
}-minus:before {
.glyphicon: "\2212";
content
}-cloud:before {
.glyphicon: "\2601";
content
}-envelope:before {
.glyphicon: "\2709";
content
}-pencil:before {
.glyphicon: "\270f";
content
}-glass:before {
.glyphicon: "\e001";
content
}-music:before {
.glyphicon: "\e002";
content
}-search:before {
.glyphicon: "\e003";
content
}-heart:before {
.glyphicon: "\e005";
content
}-star:before {
.glyphicon: "\e006";
content
}-star-empty:before {
.glyphicon: "\e007";
content
}-user:before {
.glyphicon: "\e008";
content
}-film:before {
.glyphicon: "\e009";
content
}-th-large:before {
.glyphicon: "\e010";
content
}-th:before {
.glyphicon: "\e011";
content
}-th-list:before {
.glyphicon: "\e012";
content
}-ok:before {
.glyphicon: "\e013";
content
}-remove:before {
.glyphicon: "\e014";
content
}-zoom-in:before {
.glyphicon: "\e015";
content
}-zoom-out:before {
.glyphicon: "\e016";
content
}-off:before {
.glyphicon: "\e017";
content
}-signal:before {
.glyphicon: "\e018";
content
}-cog:before {
.glyphicon: "\e019";
content
}-trash:before {
.glyphicon: "\e020";
content
}-home:before {
.glyphicon: "\e021";
content
}-file:before {
.glyphicon: "\e022";
content
}-time:before {
.glyphicon: "\e023";
content
}-road:before {
.glyphicon: "\e024";
content
}-download-alt:before {
.glyphicon: "\e025";
content
}-download:before {
.glyphicon: "\e026";
content
}-upload:before {
.glyphicon: "\e027";
content
}-inbox:before {
.glyphicon: "\e028";
content
}-play-circle:before {
.glyphicon: "\e029";
content
}-repeat:before {
.glyphicon: "\e030";
content
}-refresh:before {
.glyphicon: "\e031";
content
}-list-alt:before {
.glyphicon: "\e032";
content
}-lock:before {
.glyphicon: "\e033";
content
}-flag:before {
.glyphicon: "\e034";
content
}-headphones:before {
.glyphicon: "\e035";
content
}-volume-off:before {
.glyphicon: "\e036";
content
}-volume-down:before {
.glyphicon: "\e037";
content
}-volume-up:before {
.glyphicon: "\e038";
content
}-qrcode:before {
.glyphicon: "\e039";
content
}-barcode:before {
.glyphicon: "\e040";
content
}-tag:before {
.glyphicon: "\e041";
content
}-tags:before {
.glyphicon: "\e042";
content
}-book:before {
.glyphicon: "\e043";
content
}-bookmark:before {
.glyphicon: "\e044";
content
}-print:before {
.glyphicon: "\e045";
content
}-camera:before {
.glyphicon: "\e046";
content
}-font:before {
.glyphicon: "\e047";
content
}-bold:before {
.glyphicon: "\e048";
content
}-italic:before {
.glyphicon: "\e049";
content
}-text-height:before {
.glyphicon: "\e050";
content
}-text-width:before {
.glyphicon: "\e051";
content
}-align-left:before {
.glyphicon: "\e052";
content
}-align-center:before {
.glyphicon: "\e053";
content
}-align-right:before {
.glyphicon: "\e054";
content
}-align-justify:before {
.glyphicon: "\e055";
content
}-list:before {
.glyphicon: "\e056";
content
}-indent-left:before {
.glyphicon: "\e057";
content
}-indent-right:before {
.glyphicon: "\e058";
content
}-facetime-video:before {
.glyphicon: "\e059";
content
}-picture:before {
.glyphicon: "\e060";
content
}-map-marker:before {
.glyphicon: "\e062";
content
}-adjust:before {
.glyphicon: "\e063";
content
}-tint:before {
.glyphicon: "\e064";
content
}-edit:before {
.glyphicon: "\e065";
content
}-share:before {
.glyphicon: "\e066";
content
}-check:before {
.glyphicon: "\e067";
content
}-move:before {
.glyphicon: "\e068";
content
}-step-backward:before {
.glyphicon: "\e069";
content
}-fast-backward:before {
.glyphicon: "\e070";
content
}-backward:before {
.glyphicon: "\e071";
content
}-play:before {
.glyphicon: "\e072";
content
}-pause:before {
.glyphicon: "\e073";
content
}-stop:before {
.glyphicon: "\e074";
content
}-forward:before {
.glyphicon: "\e075";
content
}-fast-forward:before {
.glyphicon: "\e076";
content
}-step-forward:before {
.glyphicon: "\e077";
content
}-eject:before {
.glyphicon: "\e078";
content
}-chevron-left:before {
.glyphicon: "\e079";
content
}-chevron-right:before {
.glyphicon: "\e080";
content
}-plus-sign:before {
.glyphicon: "\e081";
content
}-minus-sign:before {
.glyphicon: "\e082";
content
}-remove-sign:before {
.glyphicon: "\e083";
content
}-ok-sign:before {
.glyphicon: "\e084";
content
}-question-sign:before {
.glyphicon: "\e085";
content
}-info-sign:before {
.glyphicon: "\e086";
content
}-screenshot:before {
.glyphicon: "\e087";
content
}-remove-circle:before {
.glyphicon: "\e088";
content
}-ok-circle:before {
.glyphicon: "\e089";
content
}-ban-circle:before {
.glyphicon: "\e090";
content
}-arrow-left:before {
.glyphicon: "\e091";
content
}-arrow-right:before {
.glyphicon: "\e092";
content
}-arrow-up:before {
.glyphicon: "\e093";
content
}-arrow-down:before {
.glyphicon: "\e094";
content
}-share-alt:before {
.glyphicon: "\e095";
content
}-resize-full:before {
.glyphicon: "\e096";
content
}-resize-small:before {
.glyphicon: "\e097";
content
}-exclamation-sign:before {
.glyphicon: "\e101";
content
}-gift:before {
.glyphicon: "\e102";
content
}-leaf:before {
.glyphicon: "\e103";
content
}-fire:before {
.glyphicon: "\e104";
content
}-eye-open:before {
.glyphicon: "\e105";
content
}-eye-close:before {
.glyphicon: "\e106";
content
}-warning-sign:before {
.glyphicon: "\e107";
content
}-plane:before {
.glyphicon: "\e108";
content
}-calendar:before {
.glyphicon: "\e109";
content
}-random:before {
.glyphicon: "\e110";
content
}-comment:before {
.glyphicon: "\e111";
content
}-magnet:before {
.glyphicon: "\e112";
content
}-chevron-up:before {
.glyphicon: "\e113";
content
}-chevron-down:before {
.glyphicon: "\e114";
content
}-retweet:before {
.glyphicon: "\e115";
content
}-shopping-cart:before {
.glyphicon: "\e116";
content
}-folder-close:before {
.glyphicon: "\e117";
content
}-folder-open:before {
.glyphicon: "\e118";
content
}-resize-vertical:before {
.glyphicon: "\e119";
content
}-resize-horizontal:before {
.glyphicon: "\e120";
content
}-hdd:before {
.glyphicon: "\e121";
content
}-bullhorn:before {
.glyphicon: "\e122";
content
}-bell:before {
.glyphicon: "\e123";
content
}-certificate:before {
.glyphicon: "\e124";
content
}-thumbs-up:before {
.glyphicon: "\e125";
content
}-thumbs-down:before {
.glyphicon: "\e126";
content
}-hand-right:before {
.glyphicon: "\e127";
content
}-hand-left:before {
.glyphicon: "\e128";
content
}-hand-up:before {
.glyphicon: "\e129";
content
}-hand-down:before {
.glyphicon: "\e130";
content
}-circle-arrow-right:before {
.glyphicon: "\e131";
content
}-circle-arrow-left:before {
.glyphicon: "\e132";
content
}-circle-arrow-up:before {
.glyphicon: "\e133";
content
}-circle-arrow-down:before {
.glyphicon: "\e134";
content
}-globe:before {
.glyphicon: "\e135";
content
}-wrench:before {
.glyphicon: "\e136";
content
}-tasks:before {
.glyphicon: "\e137";
content
}-filter:before {
.glyphicon: "\e138";
content
}-briefcase:before {
.glyphicon: "\e139";
content
}-fullscreen:before {
.glyphicon: "\e140";
content
}-dashboard:before {
.glyphicon: "\e141";
content
}-paperclip:before {
.glyphicon: "\e142";
content
}-heart-empty:before {
.glyphicon: "\e143";
content
}-link:before {
.glyphicon: "\e144";
content
}-phone:before {
.glyphicon: "\e145";
content
}-pushpin:before {
.glyphicon: "\e146";
content
}-usd:before {
.glyphicon: "\e148";
content
}-gbp:before {
.glyphicon: "\e149";
content
}-sort:before {
.glyphicon: "\e150";
content
}-sort-by-alphabet:before {
.glyphicon: "\e151";
content
}-sort-by-alphabet-alt:before {
.glyphicon: "\e152";
content
}-sort-by-order:before {
.glyphicon: "\e153";
content
}-sort-by-order-alt:before {
.glyphicon: "\e154";
content
}-sort-by-attributes:before {
.glyphicon: "\e155";
content
}-sort-by-attributes-alt:before {
.glyphicon: "\e156";
content
}-unchecked:before {
.glyphicon: "\e157";
content
}-expand:before {
.glyphicon: "\e158";
content
}-collapse-down:before {
.glyphicon: "\e159";
content
}-collapse-up:before {
.glyphicon: "\e160";
content
}-log-in:before {
.glyphicon: "\e161";
content
}-flash:before {
.glyphicon: "\e162";
content
}-log-out:before {
.glyphicon: "\e163";
content
}-new-window:before {
.glyphicon: "\e164";
content
}-record:before {
.glyphicon: "\e165";
content
}-save:before {
.glyphicon: "\e166";
content
}-open:before {
.glyphicon: "\e167";
content
}-saved:before {
.glyphicon: "\e168";
content
}-import:before {
.glyphicon: "\e169";
content
}-export:before {
.glyphicon: "\e170";
content
}-send:before {
.glyphicon: "\e171";
content
}-floppy-disk:before {
.glyphicon: "\e172";
content
}-floppy-saved:before {
.glyphicon: "\e173";
content
}-floppy-remove:before {
.glyphicon: "\e174";
content
}-floppy-save:before {
.glyphicon: "\e175";
content
}-floppy-open:before {
.glyphicon: "\e176";
content
}-credit-card:before {
.glyphicon: "\e177";
content
}-transfer:before {
.glyphicon: "\e178";
content
}-cutlery:before {
.glyphicon: "\e179";
content
}-header:before {
.glyphicon: "\e180";
content
}-compressed:before {
.glyphicon: "\e181";
content
}-earphone:before {
.glyphicon: "\e182";
content
}-phone-alt:before {
.glyphicon: "\e183";
content
}-tower:before {
.glyphicon: "\e184";
content
}-stats:before {
.glyphicon: "\e185";
content
}-sd-video:before {
.glyphicon: "\e186";
content
}-hd-video:before {
.glyphicon: "\e187";
content
}-subtitles:before {
.glyphicon: "\e188";
content
}-sound-stereo:before {
.glyphicon: "\e189";
content
}-sound-dolby:before {
.glyphicon: "\e190";
content
}-sound-5-1:before {
.glyphicon: "\e191";
content
}-sound-6-1:before {
.glyphicon: "\e192";
content
}-sound-7-1:before {
.glyphicon: "\e193";
content
}-copyright-mark:before {
.glyphicon: "\e194";
content
}-registration-mark:before {
.glyphicon: "\e195";
content
}-cloud-download:before {
.glyphicon: "\e197";
content
}-cloud-upload:before {
.glyphicon: "\e198";
content
}-tree-conifer:before {
.glyphicon: "\e199";
content
}-tree-deciduous:before {
.glyphicon: "\e200";
content
}-cd:before {
.glyphicon: "\e201";
content
}-save-file:before {
.glyphicon: "\e202";
content
}-open-file:before {
.glyphicon: "\e203";
content
}-level-up:before {
.glyphicon: "\e204";
content
}-copy:before {
.glyphicon: "\e205";
content
}-paste:before {
.glyphicon: "\e206";
content
}-alert:before {
.glyphicon: "\e209";
content
}-equalizer:before {
.glyphicon: "\e210";
content
}-king:before {
.glyphicon: "\e211";
content
}-queen:before {
.glyphicon: "\e212";
content
}-pawn:before {
.glyphicon: "\e213";
content
}-bishop:before {
.glyphicon: "\e214";
content
}-knight:before {
.glyphicon: "\e215";
content
}-baby-formula:before {
.glyphicon: "\e216";
content
}-tent:before {
.glyphicon: "\26fa";
content
}-blackboard:before {
.glyphicon: "\e218";
content
}-bed:before {
.glyphicon: "\e219";
content
}-apple:before {
.glyphicon: "\f8ff";
content
}-erase:before {
.glyphicon: "\e221";
content
}-hourglass:before {
.glyphicon: "\231b";
content
}-lamp:before {
.glyphicon: "\e223";
content
}-duplicate:before {
.glyphicon: "\e224";
content
}-piggy-bank:before {
.glyphicon: "\e225";
content
}-scissors:before {
.glyphicon: "\e226";
content
}-bitcoin:before {
.glyphicon: "\e227";
content
}-btc:before {
.glyphicon: "\e227";
content
}-xbt:before {
.glyphicon: "\e227";
content
}-yen:before {
.glyphicon: "\00a5";
content
}-jpy:before {
.glyphicon: "\00a5";
content
}-ruble:before {
.glyphicon: "\20bd";
content
}-rub:before {
.glyphicon: "\20bd";
content
}-scale:before {
.glyphicon: "\e230";
content
}-ice-lolly:before {
.glyphicon: "\e231";
content
}-ice-lolly-tasted:before {
.glyphicon: "\e232";
content
}-education:before {
.glyphicon: "\e233";
content
}-option-horizontal:before {
.glyphicon: "\e234";
content
}-option-vertical:before {
.glyphicon: "\e235";
content
}-menu-hamburger:before {
.glyphicon: "\e236";
content
}-modal-window:before {
.glyphicon: "\e237";
content
}-oil:before {
.glyphicon: "\e238";
content
}-grain:before {
.glyphicon: "\e239";
content
}-sunglasses:before {
.glyphicon: "\e240";
content
}-text-size:before {
.glyphicon: "\e241";
content
}-text-color:before {
.glyphicon: "\e242";
content
}-text-background:before {
.glyphicon: "\e243";
content
}-object-align-top:before {
.glyphicon: "\e244";
content
}-object-align-bottom:before {
.glyphicon: "\e245";
content
}-object-align-horizontal:before {
.glyphicon: "\e246";
content
}-object-align-left:before {
.glyphicon: "\e247";
content
}-object-align-vertical:before {
.glyphicon: "\e248";
content
}-object-align-right:before {
.glyphicon: "\e249";
content
}-triangle-right:before {
.glyphicon: "\e250";
content
}-triangle-left:before {
.glyphicon: "\e251";
content
}-triangle-bottom:before {
.glyphicon: "\e252";
content
}-triangle-top:before {
.glyphicon: "\e253";
content
}-console:before {
.glyphicon: "\e254";
content
}-superscript:before {
.glyphicon: "\e255";
content
}-subscript:before {
.glyphicon: "\e256";
content
}-menu-left:before {
.glyphicon: "\e257";
content
}-menu-right:before {
.glyphicon: "\e258";
content
}-menu-down:before {
.glyphicon: "\e259";
content
}-menu-up:before {
.glyphicon: "\e260";
content
}* {
-sizing: border-box;
box
}*:before,
*:after {
-sizing: border-box;
box
}
html {-size: 10px;
font-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-height: 1.42857143;
line: #c8c8c8;
color-color: #272b30;
background
}
input,
button,
select,
textarea {-family: inherit;
font-size: inherit;
font-height: inherit;
line
}
a {: #ffffff;
color-decoration: none;
text
}:hover,
a:focus {
a: #ffffff;
color-decoration: underline;
text
}:focus {
a: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
outline
}
figure {: 0;
margin
}
img {-align: middle;
vertical
}-responsive,
.img> img,
.thumbnail > img,
.thumbnail a -inner > .item > img,
.carousel-inner > .item > a > img {
.carousel: block;
display-width: 100%;
max: auto;
height
}-rounded {
.img-radius: 6px;
border
}-thumbnail {
.img: 4px;
padding-height: 1.42857143;
line-color: #1c1e22;
background: 1px solid #0c0d0e;
border-radius: 4px;
border: all 0.2s ease-in-out;
transition: inline-block;
display-width: 100%;
max: auto;
height
}-circle {
.img-radius: 50%;
border
}
hr {-top: 20px;
margin-bottom: 20px;
margin: 0;
border-top: 1px solid #1c1e22;
border
}-only {
.sr: absolute;
position: 1px;
width: 1px;
height: 0;
padding: -1px;
margin: hidden;
overflow: rect(0, 0, 0, 0);
clip: 0;
border
}-only-focusable:active,
.sr-only-focusable:focus {
.sr: static;
position: auto;
width: auto;
height: 0;
margin: visible;
overflow: auto;
clip
}="button"] {
[role: pointer;
cursor
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500;
font-height: 1.1;
line: inherit;
color
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {-weight: 400;
font-height: 1;
line: #7a8288;
color
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {-top: 20px;
margin-bottom: 10px;
margin
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {-size: 65%;
font
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {-top: 10px;
margin-bottom: 10px;
margin
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {-size: 75%;
font
}
h1,
.h1 {-size: 36px;
font
}
h2,
.h2 {-size: 30px;
font
}
h3,
.h3 {-size: 24px;
font
}
h4,
.h4 {-size: 18px;
font
}
h5,
.h5 {-size: 14px;
font
}
h6,
.h6 {-size: 12px;
font
}
p {: 0 0 10px;
margin
}
.lead {-bottom: 20px;
margin-size: 16px;
font-weight: 300;
font-height: 1.4;
line
}@media (min-width: 768px) {
.lead {-size: 21px;
font
}
}
small,
.small {-size: 85%;
font
}
mark,
.mark {: .2em;
padding-color: #f89406;
background
}-left {
.text-align: left;
text
}-right {
.text-align: right;
text
}-center {
.text-align: center;
text
}-justify {
.text-align: justify;
text
}-nowrap {
.text-space: nowrap;
white
}-lowercase {
.text-transform: lowercase;
text
}-uppercase {
.text-transform: uppercase;
text
}-capitalize {
.text-transform: capitalize;
text
}-muted {
.text: #7a8288;
color
}-primary {
.text: #7a8288;
color
}-primary:hover,
a.text-primary:focus {
a.text: #62686d;
color
}-success {
.text: #ffffff;
color
}-success:hover,
a.text-success:focus {
a.text: #e6e6e6;
color
}-info {
.text: #ffffff;
color
}-info:hover,
a.text-info:focus {
a.text: #e6e6e6;
color
}-warning {
.text: #ffffff;
color
}-warning:hover,
a.text-warning:focus {
a.text: #e6e6e6;
color
}-danger {
.text: #ffffff;
color
}-danger:hover,
a.text-danger:focus {
a.text: #e6e6e6;
color
}-primary {
.bg: #fff;
color-color: #7a8288;
background
}-primary:hover,
a.bg-primary:focus {
a.bg-color: #62686d;
background
}-success {
.bg-color: #62c462;
background
}-success:hover,
a.bg-success:focus {
a.bg-color: #42b142;
background
}-info {
.bg-color: #5bc0de;
background
}-info:hover,
a.bg-info:focus {
a.bg-color: #31b0d5;
background
}-warning {
.bg-color: #f89406;
background
}-warning:hover,
a.bg-warning:focus {
a.bg-color: #c67605;
background
}-danger {
.bg-color: #ee5f5b;
background
}-danger:hover,
a.bg-danger:focus {
a.bg-color: #e9322d;
background
}-header {
.page-bottom: 9px;
padding: 40px 0 20px;
margin-bottom: 1px solid #1c1e22;
border
}
ul,
ol {-top: 0;
margin-bottom: 10px;
margin
}
ul ul,
ol ul,
ul ol,
ol ol {-bottom: 0;
margin
}-unstyled {
.list-left: 0;
padding-style: none;
list
}-inline {
.list-left: 0;
padding-style: none;
list-left: -5px;
margin
}-inline > li {
.list: inline-block;
display-right: 5px;
padding-left: 5px;
padding
}
dl {-top: 0;
margin-bottom: 20px;
margin
}
dt,
dd {-height: 1.42857143;
line
}
dt {-weight: 700;
font
}
dd {-left: 0;
margin
}@media (min-width: 768px) {
-horizontal dt {
.dl: left;
float: 160px;
width: left;
clear-align: right;
text: hidden;
overflow-overflow: ellipsis;
text-space: nowrap;
white
}-horizontal dd {
.dl-left: 180px;
margin
}
}
abbr[title],-original-title] {
abbr[data: help;
cursor
}
.initialism {-size: 90%;
font-transform: uppercase;
text
}
blockquote {: 10px 20px;
padding: 0 0 20px;
margin-size: 17.5px;
font-left: 5px solid #7a8288;
border
}:last-child,
blockquote p:last-child,
blockquote ul:last-child {
blockquote ol-bottom: 0;
margin
}
blockquote footer,
blockquote small,
blockquote .small {: block;
display-size: 80%;
font-height: 1.42857143;
line: #7a8288;
color
}:before,
blockquote footer:before,
blockquote small:before {
blockquote .small: "\2014 \00A0";
content
}-reverse,
.blockquote-right {
blockquote.pull-right: 15px;
padding-left: 0;
padding-align: right;
text-right: 5px solid #7a8288;
border-left: 0;
border
}-reverse footer:before,
.blockquote-right footer:before,
blockquote.pull-reverse small:before,
.blockquote-right small:before,
blockquote.pull-reverse .small:before,
.blockquote-right .small:before {
blockquote.pull: "";
content
}-reverse footer:after,
.blockquote-right footer:after,
blockquote.pull-reverse small:after,
.blockquote-right small:after,
blockquote.pull-reverse .small:after,
.blockquote-right .small:after {
blockquote.pull: "\00A0 \2014";
content
}
address {-bottom: 20px;
margin-style: normal;
font-height: 1.42857143;
line
}
code,
kbd,
pre,
samp {-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font
}
code {: 2px 4px;
padding-size: 90%;
font: #c7254e;
color-color: #f9f2f4;
background-radius: 4px;
border
}
kbd {: 2px 4px;
padding-size: 90%;
font: #ffffff;
color-color: #333333;
background-radius: 3px;
border-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
box
}
kbd kbd {: 0;
padding-size: 100%;
font-weight: 700;
font-shadow: none;
box
}
pre {: block;
display: 9.5px;
padding: 0 0 10px;
margin-size: 13px;
font-height: 1.42857143;
line: #3a3f44;
color-break: break-all;
word-wrap: break-word;
word-color: #f5f5f5;
background: 1px solid #cccccc;
border-radius: 4px;
border
}
pre code {: 0;
padding-size: inherit;
font: inherit;
color-space: pre-wrap;
white-color: transparent;
background-radius: 0;
border
}-scrollable {
.pre-height: 340px;
max-y: scroll;
overflow
}
.container {-right: 15px;
padding-left: 15px;
padding-right: auto;
margin-left: auto;
margin
}@media (min-width: 768px) {
.container {: 750px;
width
}
}@media (min-width: 992px) {
.container {: 970px;
width
}
}@media (min-width: 1200px) {
.container {: 1170px;
width
}
}-fluid {
.container-right: 15px;
padding-left: 15px;
padding-right: auto;
margin-left: auto;
margin
}
.row {-right: -15px;
margin-left: -15px;
margin
}-no-gutters {
.row-right: 0;
margin-left: 0;
margin
}-no-gutters [class*="col-"] {
.row-right: 0;
padding-left: 0;
padding
}-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
.col: relative;
position-height: 1px;
min-right: 15px;
padding-left: 15px;
padding
}-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
.col: left;
float
}-xs-12 {
.col: 100%;
width
}-xs-11 {
.col: 91.66666667%;
width
}-xs-10 {
.col: 83.33333333%;
width
}-xs-9 {
.col: 75%;
width
}-xs-8 {
.col: 66.66666667%;
width
}-xs-7 {
.col: 58.33333333%;
width
}-xs-6 {
.col: 50%;
width
}-xs-5 {
.col: 41.66666667%;
width
}-xs-4 {
.col: 33.33333333%;
width
}-xs-3 {
.col: 25%;
width
}-xs-2 {
.col: 16.66666667%;
width
}-xs-1 {
.col: 8.33333333%;
width
}-xs-pull-12 {
.col: 100%;
right
}-xs-pull-11 {
.col: 91.66666667%;
right
}-xs-pull-10 {
.col: 83.33333333%;
right
}-xs-pull-9 {
.col: 75%;
right
}-xs-pull-8 {
.col: 66.66666667%;
right
}-xs-pull-7 {
.col: 58.33333333%;
right
}-xs-pull-6 {
.col: 50%;
right
}-xs-pull-5 {
.col: 41.66666667%;
right
}-xs-pull-4 {
.col: 33.33333333%;
right
}-xs-pull-3 {
.col: 25%;
right
}-xs-pull-2 {
.col: 16.66666667%;
right
}-xs-pull-1 {
.col: 8.33333333%;
right
}-xs-pull-0 {
.col: auto;
right
}-xs-push-12 {
.col: 100%;
left
}-xs-push-11 {
.col: 91.66666667%;
left
}-xs-push-10 {
.col: 83.33333333%;
left
}-xs-push-9 {
.col: 75%;
left
}-xs-push-8 {
.col: 66.66666667%;
left
}-xs-push-7 {
.col: 58.33333333%;
left
}-xs-push-6 {
.col: 50%;
left
}-xs-push-5 {
.col: 41.66666667%;
left
}-xs-push-4 {
.col: 33.33333333%;
left
}-xs-push-3 {
.col: 25%;
left
}-xs-push-2 {
.col: 16.66666667%;
left
}-xs-push-1 {
.col: 8.33333333%;
left
}-xs-push-0 {
.col: auto;
left
}-xs-offset-12 {
.col-left: 100%;
margin
}-xs-offset-11 {
.col-left: 91.66666667%;
margin
}-xs-offset-10 {
.col-left: 83.33333333%;
margin
}-xs-offset-9 {
.col-left: 75%;
margin
}-xs-offset-8 {
.col-left: 66.66666667%;
margin
}-xs-offset-7 {
.col-left: 58.33333333%;
margin
}-xs-offset-6 {
.col-left: 50%;
margin
}-xs-offset-5 {
.col-left: 41.66666667%;
margin
}-xs-offset-4 {
.col-left: 33.33333333%;
margin
}-xs-offset-3 {
.col-left: 25%;
margin
}-xs-offset-2 {
.col-left: 16.66666667%;
margin
}-xs-offset-1 {
.col-left: 8.33333333%;
margin
}-xs-offset-0 {
.col-left: 0%;
margin
}@media (min-width: 768px) {
-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
.col: left;
float
}-sm-12 {
.col: 100%;
width
}-sm-11 {
.col: 91.66666667%;
width
}-sm-10 {
.col: 83.33333333%;
width
}-sm-9 {
.col: 75%;
width
}-sm-8 {
.col: 66.66666667%;
width
}-sm-7 {
.col: 58.33333333%;
width
}-sm-6 {
.col: 50%;
width
}-sm-5 {
.col: 41.66666667%;
width
}-sm-4 {
.col: 33.33333333%;
width
}-sm-3 {
.col: 25%;
width
}-sm-2 {
.col: 16.66666667%;
width
}-sm-1 {
.col: 8.33333333%;
width
}-sm-pull-12 {
.col: 100%;
right
}-sm-pull-11 {
.col: 91.66666667%;
right
}-sm-pull-10 {
.col: 83.33333333%;
right
}-sm-pull-9 {
.col: 75%;
right
}-sm-pull-8 {
.col: 66.66666667%;
right
}-sm-pull-7 {
.col: 58.33333333%;
right
}-sm-pull-6 {
.col: 50%;
right
}-sm-pull-5 {
.col: 41.66666667%;
right
}-sm-pull-4 {
.col: 33.33333333%;
right
}-sm-pull-3 {
.col: 25%;
right
}-sm-pull-2 {
.col: 16.66666667%;
right
}-sm-pull-1 {
.col: 8.33333333%;
right
}-sm-pull-0 {
.col: auto;
right
}-sm-push-12 {
.col: 100%;
left
}-sm-push-11 {
.col: 91.66666667%;
left
}-sm-push-10 {
.col: 83.33333333%;
left
}-sm-push-9 {
.col: 75%;
left
}-sm-push-8 {
.col: 66.66666667%;
left
}-sm-push-7 {
.col: 58.33333333%;
left
}-sm-push-6 {
.col: 50%;
left
}-sm-push-5 {
.col: 41.66666667%;
left
}-sm-push-4 {
.col: 33.33333333%;
left
}-sm-push-3 {
.col: 25%;
left
}-sm-push-2 {
.col: 16.66666667%;
left
}-sm-push-1 {
.col: 8.33333333%;
left
}-sm-push-0 {
.col: auto;
left
}-sm-offset-12 {
.col-left: 100%;
margin
}-sm-offset-11 {
.col-left: 91.66666667%;
margin
}-sm-offset-10 {
.col-left: 83.33333333%;
margin
}-sm-offset-9 {
.col-left: 75%;
margin
}-sm-offset-8 {
.col-left: 66.66666667%;
margin
}-sm-offset-7 {
.col-left: 58.33333333%;
margin
}-sm-offset-6 {
.col-left: 50%;
margin
}-sm-offset-5 {
.col-left: 41.66666667%;
margin
}-sm-offset-4 {
.col-left: 33.33333333%;
margin
}-sm-offset-3 {
.col-left: 25%;
margin
}-sm-offset-2 {
.col-left: 16.66666667%;
margin
}-sm-offset-1 {
.col-left: 8.33333333%;
margin
}-sm-offset-0 {
.col-left: 0%;
margin
}
}@media (min-width: 992px) {
-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
.col: left;
float
}-md-12 {
.col: 100%;
width
}-md-11 {
.col: 91.66666667%;
width
}-md-10 {
.col: 83.33333333%;
width
}-md-9 {
.col: 75%;
width
}-md-8 {
.col: 66.66666667%;
width
}-md-7 {
.col: 58.33333333%;
width
}-md-6 {
.col: 50%;
width
}-md-5 {
.col: 41.66666667%;
width
}-md-4 {
.col: 33.33333333%;
width
}-md-3 {
.col: 25%;
width
}-md-2 {
.col: 16.66666667%;
width
}-md-1 {
.col: 8.33333333%;
width
}-md-pull-12 {
.col: 100%;
right
}-md-pull-11 {
.col: 91.66666667%;
right
}-md-pull-10 {
.col: 83.33333333%;
right
}-md-pull-9 {
.col: 75%;
right
}-md-pull-8 {
.col: 66.66666667%;
right
}-md-pull-7 {
.col: 58.33333333%;
right
}-md-pull-6 {
.col: 50%;
right
}-md-pull-5 {
.col: 41.66666667%;
right
}-md-pull-4 {
.col: 33.33333333%;
right
}-md-pull-3 {
.col: 25%;
right
}-md-pull-2 {
.col: 16.66666667%;
right
}-md-pull-1 {
.col: 8.33333333%;
right
}-md-pull-0 {
.col: auto;
right
}-md-push-12 {
.col: 100%;
left
}-md-push-11 {
.col: 91.66666667%;
left
}-md-push-10 {
.col: 83.33333333%;
left
}-md-push-9 {
.col: 75%;
left
}-md-push-8 {
.col: 66.66666667%;
left
}-md-push-7 {
.col: 58.33333333%;
left
}-md-push-6 {
.col: 50%;
left
}-md-push-5 {
.col: 41.66666667%;
left
}-md-push-4 {
.col: 33.33333333%;
left
}-md-push-3 {
.col: 25%;
left
}-md-push-2 {
.col: 16.66666667%;
left
}-md-push-1 {
.col: 8.33333333%;
left
}-md-push-0 {
.col: auto;
left
}-md-offset-12 {
.col-left: 100%;
margin
}-md-offset-11 {
.col-left: 91.66666667%;
margin
}-md-offset-10 {
.col-left: 83.33333333%;
margin
}-md-offset-9 {
.col-left: 75%;
margin
}-md-offset-8 {
.col-left: 66.66666667%;
margin
}-md-offset-7 {
.col-left: 58.33333333%;
margin
}-md-offset-6 {
.col-left: 50%;
margin
}-md-offset-5 {
.col-left: 41.66666667%;
margin
}-md-offset-4 {
.col-left: 33.33333333%;
margin
}-md-offset-3 {
.col-left: 25%;
margin
}-md-offset-2 {
.col-left: 16.66666667%;
margin
}-md-offset-1 {
.col-left: 8.33333333%;
margin
}-md-offset-0 {
.col-left: 0%;
margin
}
}@media (min-width: 1200px) {
-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
.col: left;
float
}-lg-12 {
.col: 100%;
width
}-lg-11 {
.col: 91.66666667%;
width
}-lg-10 {
.col: 83.33333333%;
width
}-lg-9 {
.col: 75%;
width
}-lg-8 {
.col: 66.66666667%;
width
}-lg-7 {
.col: 58.33333333%;
width
}-lg-6 {
.col: 50%;
width
}-lg-5 {
.col: 41.66666667%;
width
}-lg-4 {
.col: 33.33333333%;
width
}-lg-3 {
.col: 25%;
width
}-lg-2 {
.col: 16.66666667%;
width
}-lg-1 {
.col: 8.33333333%;
width
}-lg-pull-12 {
.col: 100%;
right
}-lg-pull-11 {
.col: 91.66666667%;
right
}-lg-pull-10 {
.col: 83.33333333%;
right
}-lg-pull-9 {
.col: 75%;
right
}-lg-pull-8 {
.col: 66.66666667%;
right
}-lg-pull-7 {
.col: 58.33333333%;
right
}-lg-pull-6 {
.col: 50%;
right
}-lg-pull-5 {
.col: 41.66666667%;
right
}-lg-pull-4 {
.col: 33.33333333%;
right
}-lg-pull-3 {
.col: 25%;
right
}-lg-pull-2 {
.col: 16.66666667%;
right
}-lg-pull-1 {
.col: 8.33333333%;
right
}-lg-pull-0 {
.col: auto;
right
}-lg-push-12 {
.col: 100%;
left
}-lg-push-11 {
.col: 91.66666667%;
left
}-lg-push-10 {
.col: 83.33333333%;
left
}-lg-push-9 {
.col: 75%;
left
}-lg-push-8 {
.col: 66.66666667%;
left
}-lg-push-7 {
.col: 58.33333333%;
left
}-lg-push-6 {
.col: 50%;
left
}-lg-push-5 {
.col: 41.66666667%;
left
}-lg-push-4 {
.col: 33.33333333%;
left
}-lg-push-3 {
.col: 25%;
left
}-lg-push-2 {
.col: 16.66666667%;
left
}-lg-push-1 {
.col: 8.33333333%;
left
}-lg-push-0 {
.col: auto;
left
}-lg-offset-12 {
.col-left: 100%;
margin
}-lg-offset-11 {
.col-left: 91.66666667%;
margin
}-lg-offset-10 {
.col-left: 83.33333333%;
margin
}-lg-offset-9 {
.col-left: 75%;
margin
}-lg-offset-8 {
.col-left: 66.66666667%;
margin
}-lg-offset-7 {
.col-left: 58.33333333%;
margin
}-lg-offset-6 {
.col-left: 50%;
margin
}-lg-offset-5 {
.col-left: 41.66666667%;
margin
}-lg-offset-4 {
.col-left: 33.33333333%;
margin
}-lg-offset-3 {
.col-left: 25%;
margin
}-lg-offset-2 {
.col-left: 16.66666667%;
margin
}-lg-offset-1 {
.col-left: 8.33333333%;
margin
}-lg-offset-0 {
.col-left: 0%;
margin
}
}
table {-color: #2e3338;
background
}*="col-"] {
table col[class: static;
position: table-column;
display: none;
float
}*="col-"],
table td[class*="col-"] {
table th[class: static;
position: table-cell;
display: none;
float
}
caption {-top: 8px;
padding-bottom: 8px;
padding: #7a8288;
color-align: left;
text
}
th {-align: left;
text
}
.table {: 100%;
width-width: 100%;
max-bottom: 20px;
margin
}> thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
.table : 8px;
padding-height: 1.42857143;
line-align: top;
vertical-top: 1px solid #1c1e22;
border
}> thead > tr > th {
.table -align: bottom;
vertical-bottom: 2px solid #1c1e22;
border
}> caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
.table -top: 0;
border
}> tbody + tbody {
.table -top: 2px solid #1c1e22;
border
}
.table .table {-color: #272b30;
background
}-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
.table: 5px;
padding
}-bordered {
.table: 1px solid #1c1e22;
border
}-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
.table: 1px solid #1c1e22;
border
}-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
.table-bottom-width: 2px;
border
}-striped > tbody > tr:nth-of-type(odd) {
.table-color: #353a41;
background
}-hover > tbody > tr:hover {
.table-color: #49515a;
background
}> thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
.table -color: #49515a;
background
}-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
.table-color: #3e444c;
background
}> thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
.table -color: #62c462;
background
}-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
.table-color: #4fbd4f;
background
}> thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
.table -color: #5bc0de;
background
}-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
.table-color: #46b8da;
background
}> thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
.table -color: #f89406;
background
}-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
.table-color: #df8505;
background
}> thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
.table -color: #ee5f5b;
background
}-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
.table-color: #ec4844;
background
}-responsive {
.table-height: .01%;
min-x: auto;
overflow
}@media screen and (max-width: 767px) {
-responsive {
.table: 100%;
width-bottom: 15px;
margin-y: hidden;
overflow-ms-overflow-style: -ms-autohiding-scrollbar;
: 1px solid #1c1e22;
border
}-responsive > .table {
.table-bottom: 0;
margin
}-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
.table-space: nowrap;
white
}-responsive > .table-bordered {
.table: 0;
border
}-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
.table-left: 0;
border
}-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
.table-right: 0;
border
}-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
.table-bottom: 0;
border
}
}
fieldset {-width: 0;
min: 0;
padding: 0;
margin: 0;
border
}
legend {: block;
display: 100%;
width: 0;
padding-bottom: 20px;
margin-size: 21px;
font-height: inherit;
line: #c8c8c8;
color: 0;
border-bottom: 1px solid #1c1e22;
border
}
label {: inline-block;
display-width: 100%;
max-bottom: 5px;
margin-weight: 700;
font
}="search"] {
input[type-sizing: border-box;
box-webkit-appearance: none;
: none;
appearance
}="radio"],
input[type="checkbox"] {
input[type: 4px 0 0;
margin-top: 1px \9;
margin-height: normal;
line
}="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
fieldset[disabled] input[type: not-allowed;
cursor
}="file"] {
input[type: block;
display
}="range"] {
input[type: block;
display: 100%;
width
}
select[multiple],
select[size] {: auto;
height
}="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
input[type: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
outline
}
output {: block;
display-top: 9px;
padding-size: 14px;
font-height: 1.42857143;
line: #272b30;
color
}-control {
.form: block;
display: 100%;
width: 38px;
height: 8px 12px;
padding-size: 14px;
font-height: 1.42857143;
line: #272b30;
color-color: #ffffff;
background-image: none;
background: 1px solid #000000;
border-radius: 4px;
border-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition
}-control:focus {
.form-color: #66afe9;
border: 0;
outline-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
box
}-control::-moz-placeholder {
.form: #7a8288;
color: 1;
opacity
}-control:-ms-input-placeholder {
.form: #7a8288;
color
}-control::-webkit-input-placeholder {
.form: #7a8288;
color
}-control::-ms-expand {
.form-color: transparent;
background: 0;
border
}-control[disabled],
.form-control[readonly],
.form-control {
fieldset[disabled] .form-color: #999999;
background: 1;
opacity
}-control[disabled],
.form-control {
fieldset[disabled] .form: not-allowed;
cursor
}-control {
textarea.form: auto;
height
}@media screen and (-webkit-min-device-pixel-ratio: 0) {
="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
input[type-height: 38px;
line
}="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm,
input[type-group-sm input[type="date"],
.input-group-sm input[type="time"],
.input-group-sm input[type="datetime-local"],
.input-group-sm input[type="month"] {
.input-height: 30px;
line
}="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg,
input[type-group-lg input[type="date"],
.input-group-lg input[type="time"],
.input-group-lg input[type="datetime-local"],
.input-group-lg input[type="month"] {
.input-height: 54px;
line
}
}-group {
.form-bottom: 15px;
margin
}
.radio,
.checkbox {: relative;
position: block;
display-top: 10px;
margin-bottom: 10px;
margin
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {: not-allowed;
cursor
}
.radio label,
.checkbox label {-height: 20px;
min-left: 20px;
padding-bottom: 0;
margin-weight: 400;
font: pointer;
cursor
}="radio"],
.radio input[type-inline input[type="radio"],
.radio="checkbox"],
.checkbox input[type-inline input[type="checkbox"] {
.checkbox: absolute;
position-top: 4px \9;
margin-left: -20px;
margin
}+ .radio,
.radio + .checkbox {
.checkbox -top: -5px;
margin
}-inline,
.radio-inline {
.checkbox: relative;
position: inline-block;
display-left: 20px;
padding-bottom: 0;
margin-weight: 400;
font-align: middle;
vertical: pointer;
cursor
}-inline.disabled,
.radio-inline.disabled,
.checkbox-inline,
fieldset[disabled] .radio-inline {
fieldset[disabled] .checkbox: not-allowed;
cursor
}-inline + .radio-inline,
.radio-inline + .checkbox-inline {
.checkbox-top: 0;
margin-left: 10px;
margin
}-control-static {
.form-height: 34px;
min-top: 9px;
padding-bottom: 9px;
padding-bottom: 0;
margin
}-control-static.input-lg,
.form-control-static.input-sm {
.form-right: 0;
padding-left: 0;
padding
}-sm {
.input: 30px;
height: 5px 10px;
padding-size: 12px;
font-height: 1.5;
line-radius: 3px;
border
}-sm {
select.input: 30px;
height-height: 30px;
line
}-sm,
textarea.input-sm {
select[multiple].input: auto;
height
}-group-sm .form-control {
.form: 30px;
height: 5px 10px;
padding-size: 12px;
font-height: 1.5;
line-radius: 3px;
border
}-group-sm select.form-control {
.form: 30px;
height-height: 30px;
line
}-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
.form: auto;
height
}-group-sm .form-control-static {
.form: 30px;
height-height: 32px;
min: 6px 10px;
padding-size: 12px;
font-height: 1.5;
line
}-lg {
.input: 54px;
height: 14px 16px;
padding-size: 18px;
font-height: 1.3333333;
line-radius: 6px;
border
}-lg {
select.input: 54px;
height-height: 54px;
line
}-lg,
textarea.input-lg {
select[multiple].input: auto;
height
}-group-lg .form-control {
.form: 54px;
height: 14px 16px;
padding-size: 18px;
font-height: 1.3333333;
line-radius: 6px;
border
}-group-lg select.form-control {
.form: 54px;
height-height: 54px;
line
}-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
.form: auto;
height
}-group-lg .form-control-static {
.form: 54px;
height-height: 38px;
min: 15px 16px;
padding-size: 18px;
font-height: 1.3333333;
line
}-feedback {
.has: relative;
position
}-feedback .form-control {
.has-right: 47.5px;
padding
}-control-feedback {
.form: absolute;
position: 0;
top: 0;
right-index: 2;
z: block;
display: 38px;
width: 38px;
height-height: 38px;
line-align: center;
text-events: none;
pointer
}-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.input-group-lg .form-control + .form-control-feedback {
.form: 54px;
width: 54px;
height-height: 54px;
line
}-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.input-group-sm .form-control + .form-control-feedback {
.form: 30px;
width: 30px;
height-height: 30px;
line
}-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
.has: #ffffff;
color
}-success .form-control {
.has-color: #ffffff;
border-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box
}-success .form-control:focus {
.has-color: #e6e6e6;
border-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
box
}-success .input-group-addon {
.has: #ffffff;
color-color: #62c462;
background-color: #ffffff;
border
}-success .form-control-feedback {
.has: #ffffff;
color
}-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
.has: #ffffff;
color
}-warning .form-control {
.has-color: #ffffff;
border-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box
}-warning .form-control:focus {
.has-color: #e6e6e6;
border-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
box
}-warning .input-group-addon {
.has: #ffffff;
color-color: #f89406;
background-color: #ffffff;
border
}-warning .form-control-feedback {
.has: #ffffff;
color
}-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
.has: #ffffff;
color
}-error .form-control {
.has-color: #ffffff;
border-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box
}-error .form-control:focus {
.has-color: #e6e6e6;
border-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
box
}-error .input-group-addon {
.has: #ffffff;
color-color: #ee5f5b;
background-color: #ffffff;
border
}-error .form-control-feedback {
.has: #ffffff;
color
}-feedback label ~ .form-control-feedback {
.has: 25px;
top
}-feedback label.sr-only ~ .form-control-feedback {
.has: 0;
top
}-block {
.help: block;
display-top: 5px;
margin-bottom: 10px;
margin: #ffffff;
color
}@media (min-width: 768px) {
-inline .form-group {
.form: inline-block;
display-bottom: 0;
margin-align: middle;
vertical
}-inline .form-control {
.form: inline-block;
display: auto;
width-align: middle;
vertical
}-inline .form-control-static {
.form: inline-block;
display
}-inline .input-group {
.form: inline-table;
display-align: middle;
vertical
}-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
.form: auto;
width
}-inline .input-group > .form-control {
.form: 100%;
width
}-inline .control-label {
.form-bottom: 0;
margin-align: middle;
vertical
}-inline .radio,
.form-inline .checkbox {
.form: inline-block;
display-top: 0;
margin-bottom: 0;
margin-align: middle;
vertical
}-inline .radio label,
.form-inline .checkbox label {
.form-left: 0;
padding
}-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
.form: relative;
position-left: 0;
margin
}-inline .has-feedback .form-control-feedback {
.form: 0;
top
}
}-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
.form-top: 9px;
padding-top: 0;
margin-bottom: 0;
margin
}-horizontal .radio,
.form-horizontal .checkbox {
.form-height: 29px;
min
}-horizontal .form-group {
.form-right: -15px;
margin-left: -15px;
margin
}@media (min-width: 768px) {
-horizontal .control-label {
.form-top: 9px;
padding-bottom: 0;
margin-align: right;
text
}
}-horizontal .has-feedback .form-control-feedback {
.form: 15px;
right
}@media (min-width: 768px) {
-horizontal .form-group-lg .control-label {
.form-top: 15px;
padding-size: 18px;
font
}
}@media (min-width: 768px) {
-horizontal .form-group-sm .control-label {
.form-top: 6px;
padding-size: 12px;
font
}
}
.btn {: inline-block;
display-bottom: 0;
margin-weight: normal;
font-align: center;
text-space: nowrap;
white-align: middle;
vertical-ms-touch-action: manipulation;
-action: manipulation;
touch: pointer;
cursor-image: none;
background: 1px solid transparent;
border: 8px 12px;
padding-size: 14px;
font-height: 1.42857143;
line-radius: 4px;
border-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-select: none;
user
}:focus,
.btn:active:focus,
.btn:focus,
.btn.active
.btn.focus,:active.focus,
.btn
.btn.active.focus {: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
outline
}:hover,
.btn:focus,
.btn
.btn.focus {: #ffffff;
color-decoration: none;
text
}:active,
.btn
.btn.active {-image: none;
background: 0;
outline-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {: not-allowed;
cursor: alpha(opacity=65);
filter: 0.65;
opacity-shadow: none;
box
}
a.btn.disabled,
fieldset[disabled] a.btn {-events: none;
pointer
}-default {
.btn: #ffffff;
color-color: #3a3f44;
background-color: #3a3f44;
border
}-default:focus,
.btn-default.focus {
.btn: #ffffff;
color-color: #232628;
background-color: #000000;
border
}-default:hover {
.btn: #ffffff;
color-color: #232628;
background-color: #1e2023;
border
}-default:active,
.btn-default.active,
.btn> .dropdown-toggle.btn-default {
.open : #ffffff;
color-color: #232628;
background-image: none;
background-color: #1e2023;
border
}-default:active:hover,
.btn-default.active:hover,
.btn> .dropdown-toggle.btn-default:hover,
.open -default:active:focus,
.btn-default.active:focus,
.btn> .dropdown-toggle.btn-default:focus,
.open -default:active.focus,
.btn-default.active.focus,
.btn> .dropdown-toggle.btn-default.focus {
.open : #ffffff;
color-color: #121415;
background-color: #000000;
border
}-default.disabled:hover,
.btn-default[disabled]:hover,
.btn-default:hover,
fieldset[disabled] .btn-default.disabled:focus,
.btn-default[disabled]:focus,
.btn-default:focus,
fieldset[disabled] .btn-default.disabled.focus,
.btn-default[disabled].focus,
.btn-default.focus {
fieldset[disabled] .btn-color: #3a3f44;
background-color: #3a3f44;
border
}-default .badge {
.btn: #3a3f44;
color-color: #ffffff;
background
}-primary {
.btn: #ffffff;
color-color: #7a8288;
background-color: #7a8288;
border
}-primary:focus,
.btn-primary.focus {
.btn: #ffffff;
color-color: #62686d;
background-color: #3e4245;
border
}-primary:hover {
.btn: #ffffff;
color-color: #62686d;
background-color: #5d6368;
border
}-primary:active,
.btn-primary.active,
.btn> .dropdown-toggle.btn-primary {
.open : #ffffff;
color-color: #62686d;
background-image: none;
background-color: #5d6368;
border
}-primary:active:hover,
.btn-primary.active:hover,
.btn> .dropdown-toggle.btn-primary:hover,
.open -primary:active:focus,
.btn-primary.active:focus,
.btn> .dropdown-toggle.btn-primary:focus,
.open -primary:active.focus,
.btn-primary.active.focus,
.btn> .dropdown-toggle.btn-primary.focus {
.open : #ffffff;
color-color: #51565a;
background-color: #3e4245;
border
}-primary.disabled:hover,
.btn-primary[disabled]:hover,
.btn-primary:hover,
fieldset[disabled] .btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
.btn-primary:focus,
fieldset[disabled] .btn-primary.disabled.focus,
.btn-primary[disabled].focus,
.btn-primary.focus {
fieldset[disabled] .btn-color: #7a8288;
background-color: #7a8288;
border
}-primary .badge {
.btn: #7a8288;
color-color: #ffffff;
background
}-success {
.btn: #ffffff;
color-color: #62c462;
background-color: #62c462;
border
}-success:focus,
.btn-success.focus {
.btn: #ffffff;
color-color: #42b142;
background-color: #2d792d;
border
}-success:hover {
.btn: #ffffff;
color-color: #42b142;
background-color: #40a940;
border
}-success:active,
.btn-success.active,
.btn> .dropdown-toggle.btn-success {
.open : #ffffff;
color-color: #42b142;
background-image: none;
background-color: #40a940;
border
}-success:active:hover,
.btn-success.active:hover,
.btn> .dropdown-toggle.btn-success:hover,
.open -success:active:focus,
.btn-success.active:focus,
.btn> .dropdown-toggle.btn-success:focus,
.open -success:active.focus,
.btn-success.active.focus,
.btn> .dropdown-toggle.btn-success.focus {
.open : #ffffff;
color-color: #399739;
background-color: #2d792d;
border
}-success.disabled:hover,
.btn-success[disabled]:hover,
.btn-success:hover,
fieldset[disabled] .btn-success.disabled:focus,
.btn-success[disabled]:focus,
.btn-success:focus,
fieldset[disabled] .btn-success.disabled.focus,
.btn-success[disabled].focus,
.btn-success.focus {
fieldset[disabled] .btn-color: #62c462;
background-color: #62c462;
border
}-success .badge {
.btn: #62c462;
color-color: #ffffff;
background
}-info {
.btn: #ffffff;
color-color: #5bc0de;
background-color: #5bc0de;
border
}-info:focus,
.btn-info.focus {
.btn: #ffffff;
color-color: #31b0d5;
background-color: #1f7e9a;
border
}-info:hover {
.btn: #ffffff;
color-color: #31b0d5;
background-color: #2aabd2;
border
}-info:active,
.btn-info.active,
.btn> .dropdown-toggle.btn-info {
.open : #ffffff;
color-color: #31b0d5;
background-image: none;
background-color: #2aabd2;
border
}-info:active:hover,
.btn-info.active:hover,
.btn> .dropdown-toggle.btn-info:hover,
.open -info:active:focus,
.btn-info.active:focus,
.btn> .dropdown-toggle.btn-info:focus,
.open -info:active.focus,
.btn-info.active.focus,
.btn> .dropdown-toggle.btn-info.focus {
.open : #ffffff;
color-color: #269abc;
background-color: #1f7e9a;
border
}-info.disabled:hover,
.btn-info[disabled]:hover,
.btn-info:hover,
fieldset[disabled] .btn-info.disabled:focus,
.btn-info[disabled]:focus,
.btn-info:focus,
fieldset[disabled] .btn-info.disabled.focus,
.btn-info[disabled].focus,
.btn-info.focus {
fieldset[disabled] .btn-color: #5bc0de;
background-color: #5bc0de;
border
}-info .badge {
.btn: #5bc0de;
color-color: #ffffff;
background
}-warning {
.btn: #ffffff;
color-color: #f89406;
background-color: #f89406;
border
}-warning:focus,
.btn-warning.focus {
.btn: #ffffff;
color-color: #c67605;
background-color: #7c4a03;
border
}-warning:hover {
.btn: #ffffff;
color-color: #c67605;
background-color: #bc7005;
border
}-warning:active,
.btn-warning.active,
.btn> .dropdown-toggle.btn-warning {
.open : #ffffff;
color-color: #c67605;
background-image: none;
background-color: #bc7005;
border
}-warning:active:hover,
.btn-warning.active:hover,
.btn> .dropdown-toggle.btn-warning:hover,
.open -warning:active:focus,
.btn-warning.active:focus,
.btn> .dropdown-toggle.btn-warning:focus,
.open -warning:active.focus,
.btn-warning.active.focus,
.btn> .dropdown-toggle.btn-warning.focus {
.open : #ffffff;
color-color: #a36104;
background-color: #7c4a03;
border
}-warning.disabled:hover,
.btn-warning[disabled]:hover,
.btn-warning:hover,
fieldset[disabled] .btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
.btn-warning:focus,
fieldset[disabled] .btn-warning.disabled.focus,
.btn-warning[disabled].focus,
.btn-warning.focus {
fieldset[disabled] .btn-color: #f89406;
background-color: #f89406;
border
}-warning .badge {
.btn: #f89406;
color-color: #ffffff;
background
}-danger {
.btn: #ffffff;
color-color: #ee5f5b;
background-color: #ee5f5b;
border
}-danger:focus,
.btn-danger.focus {
.btn: #ffffff;
color-color: #e9322d;
background-color: #b71713;
border
}-danger:hover {
.btn: #ffffff;
color-color: #e9322d;
background-color: #e82924;
border
}-danger:active,
.btn-danger.active,
.btn> .dropdown-toggle.btn-danger {
.open : #ffffff;
color-color: #e9322d;
background-image: none;
background-color: #e82924;
border
}-danger:active:hover,
.btn-danger.active:hover,
.btn> .dropdown-toggle.btn-danger:hover,
.open -danger:active:focus,
.btn-danger.active:focus,
.btn> .dropdown-toggle.btn-danger:focus,
.open -danger:active.focus,
.btn-danger.active.focus,
.btn> .dropdown-toggle.btn-danger.focus {
.open : #ffffff;
color-color: #dc1c17;
background-color: #b71713;
border
}-danger.disabled:hover,
.btn-danger[disabled]:hover,
.btn-danger:hover,
fieldset[disabled] .btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
.btn-danger:focus,
fieldset[disabled] .btn-danger.disabled.focus,
.btn-danger[disabled].focus,
.btn-danger.focus {
fieldset[disabled] .btn-color: #ee5f5b;
background-color: #ee5f5b;
border
}-danger .badge {
.btn: #ee5f5b;
color-color: #ffffff;
background
}-link {
.btn-weight: 400;
font: #ffffff;
color-radius: 0;
border
}-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
.btn-link {
fieldset[disabled] .btn-color: transparent;
background-shadow: none;
box
}-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
.btn-color: transparent;
border
}-link:hover,
.btn-link:focus {
.btn: #ffffff;
color-decoration: underline;
text-color: transparent;
background
}-link[disabled]:hover,
.btn-link:hover,
fieldset[disabled] .btn-link[disabled]:focus,
.btn-link:focus {
fieldset[disabled] .btn: #7a8288;
color-decoration: none;
text
}-lg,
.btn-group-lg > .btn {
.btn: 14px 16px;
padding-size: 18px;
font-height: 1.3333333;
line-radius: 6px;
border
}-sm,
.btn-group-sm > .btn {
.btn: 5px 10px;
padding-size: 12px;
font-height: 1.5;
line-radius: 3px;
border
}-xs,
.btn-group-xs > .btn {
.btn: 1px 5px;
padding-size: 12px;
font-height: 1.5;
line-radius: 3px;
border
}-block {
.btn: block;
display: 100%;
width
}-block + .btn-block {
.btn-top: 5px;
margin
}="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
input[type: 100%;
width
}
.fade {: 0;
opacity: opacity 0.15s linear;
transition
}
.fade.in {: 1;
opacity
}
.collapse {: none;
display
}
.collapse.in {: block;
display
}
tr.collapse.in {: table-row;
display
}
tbody.collapse.in {: table-row-group;
display
}
.collapsing {: relative;
position: 0;
height: hidden;
overflow-property: height, visibility;
transition-duration: 0.35s;
transition-timing-function: ease;
transition
}
.caret {: inline-block;
display: 0;
width: 0;
height-left: 2px;
margin-align: middle;
vertical-top: 4px dashed;
border-top: 4px solid \9;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
border
}
.dropup,
.dropdown {: relative;
position
}-toggle:focus {
.dropdown: 0;
outline
}-menu {
.dropdown: absolute;
position: 100%;
top: 0;
left-index: 1000;
z: none;
display: left;
float-width: 160px;
min: 5px 0;
padding: 2px 0 0;
margin-size: 14px;
font-align: left;
text-style: none;
list-color: #3a3f44;
background-clip: padding-box;
background: 1px solid #272b30;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px;
border-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box
}-menu.pull-right {
.dropdown: 0;
right: auto;
left
}-menu .divider {
.dropdown: 1px;
height: 9px 0;
margin: hidden;
overflow-color: #272b30;
background
}-menu > li > a {
.dropdown: block;
display: 3px 20px;
padding: both;
clear-weight: 400;
font-height: 1.42857143;
line: #c8c8c8;
color-space: nowrap;
white
}-menu > li > a:hover,
.dropdown-menu > li > a:focus {
.dropdown: #ffffff;
color-decoration: none;
text-color: #272b30;
background
}-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
.dropdown: #ffffff;
color-decoration: none;
text-color: #272b30;
background: 0;
outline
}-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
.dropdown: #7a8288;
color
}-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
.dropdown-decoration: none;
text: not-allowed;
cursor-color: transparent;
background-image: none;
background: progid:DXImageTransform.Microsoft.gradient(enabled = false);
filter
}> .dropdown-menu {
.open : block;
display
}> a {
.open : 0;
outline
}-menu-right {
.dropdown: 0;
right: auto;
left
}-menu-left {
.dropdown: auto;
right: 0;
left
}-header {
.dropdown: block;
display: 3px 20px;
padding-size: 12px;
font-height: 1.42857143;
line: #7a8288;
color-space: nowrap;
white
}-backdrop {
.dropdown: fixed;
position: 0;
top: 0;
right: 0;
bottom: 0;
left-index: 990;
z
}-right > .dropdown-menu {
.pull: 0;
right: auto;
left
}
.dropup .caret,-fixed-bottom .dropdown .caret {
.navbar: "";
content-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid \9;
border
}-menu,
.dropup .dropdown-fixed-bottom .dropdown .dropdown-menu {
.navbar: auto;
top: 100%;
bottom-bottom: 2px;
margin
}@media (min-width: 768px) {
-right .dropdown-menu {
.navbar: 0;
right: auto;
left
}-right .dropdown-menu-left {
.navbar: auto;
right: 0;
left
}
}-group,
.btn-group-vertical {
.btn: relative;
position: inline-block;
display-align: middle;
vertical
}-group > .btn,
.btn-group-vertical > .btn {
.btn: relative;
position: left;
float
}-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
.btn-index: 2;
z
}-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
.btn-left: -1px;
margin
}-toolbar {
.btn-left: -5px;
margin
}-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
.btn: left;
float
}-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
.btn-left: 5px;
margin
}-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
.btn-radius: 0;
border
}-group > .btn:first-child {
.btn-left: 0;
margin
}-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
.btn-top-right-radius: 0;
border-bottom-right-radius: 0;
border
}-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
.btn-top-left-radius: 0;
border-bottom-left-radius: 0;
border
}-group > .btn-group {
.btn: left;
float
}-group > .btn-group:not(:first-child):not(:last-child) > .btn {
.btn-radius: 0;
border
}-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
.btn-top-right-radius: 0;
border-bottom-right-radius: 0;
border
}-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
.btn-top-left-radius: 0;
border-bottom-left-radius: 0;
border
}-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
.btn: 0;
outline
}-group > .btn + .dropdown-toggle {
.btn-right: 8px;
padding-left: 8px;
padding
}-group > .btn-lg + .dropdown-toggle {
.btn-right: 12px;
padding-left: 12px;
padding
}-group.open .dropdown-toggle {
.btn-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box
}-group.open .dropdown-toggle.btn-link {
.btn-shadow: none;
box
}
.btn .caret {-left: 0;
margin
}-lg .caret {
.btn-width: 5px 5px 0;
border-bottom-width: 0;
border
}-lg .caret {
.dropup .btn-width: 0 5px 5px;
border
}-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
.btn: block;
display: none;
float: 100%;
width-width: 100%;
max
}-group-vertical > .btn-group > .btn {
.btn: none;
float
}-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
.btn-top: -1px;
margin-left: 0;
margin
}-group-vertical > .btn:not(:first-child):not(:last-child) {
.btn-radius: 0;
border
}-group-vertical > .btn:first-child:not(:last-child) {
.btn-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
border
}-group-vertical > .btn:last-child:not(:first-child) {
.btn-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
border
}-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
.btn-radius: 0;
border
}-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
.btn-bottom-right-radius: 0;
border-bottom-left-radius: 0;
border
}-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
.btn-top-left-radius: 0;
border-top-right-radius: 0;
border
}-group-justified {
.btn: table;
display: 100%;
width-layout: fixed;
table-collapse: separate;
border
}-group-justified > .btn,
.btn-group-justified > .btn-group {
.btn: table-cell;
display: none;
float: 1%;
width
}-group-justified > .btn-group .btn {
.btn: 100%;
width
}-group-justified > .btn-group .dropdown-menu {
.btn: auto;
left
}-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
[data: absolute;
position: rect(0, 0, 0, 0);
clip-events: none;
pointer
}-group {
.input: relative;
position: table;
display-collapse: separate;
border
}-group[class*="col-"] {
.input: none;
float-right: 0;
padding-left: 0;
padding
}-group .form-control {
.input: relative;
position-index: 2;
z: left;
float: 100%;
width-bottom: 0;
margin
}-group .form-control:focus {
.input-index: 3;
z
}-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
.input: 54px;
height: 14px 16px;
padding-size: 18px;
font-height: 1.3333333;
line-radius: 6px;
border
}-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
select.input: 54px;
height-height: 54px;
line
}-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
textarea.input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
select[multiple].input: auto;
height
}-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
.input: 30px;
height: 5px 10px;
padding-size: 12px;
font-height: 1.5;
line-radius: 3px;
border
}-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
select.input: 30px;
height-height: 30px;
line
}-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
textarea.input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
select[multiple].input: auto;
height
}-group-addon,
.input-group-btn,
.input-group .form-control {
.input: table-cell;
display
}-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
.input-radius: 0;
border
}-group-addon,
.input-group-btn {
.input: 1%;
width-space: nowrap;
white-align: middle;
vertical
}-group-addon {
.input: 8px 12px;
padding-size: 14px;
font-weight: 400;
font-height: 1;
line: #272b30;
color-align: center;
text-color: #999999;
background: 1px solid rgba(0, 0, 0, 0.6);
border-radius: 4px;
border
}-group-addon.input-sm {
.input: 5px 10px;
padding-size: 12px;
font-radius: 3px;
border
}-group-addon.input-lg {
.input: 14px 16px;
padding-size: 18px;
font-radius: 6px;
border
}-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
.input-top: 0;
margin
}-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
.input-top-right-radius: 0;
border-bottom-right-radius: 0;
border
}-group-addon:first-child {
.input-right: 0;
border
}-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
.input-top-left-radius: 0;
border-bottom-left-radius: 0;
border
}-group-addon:last-child {
.input-left: 0;
border
}-group-btn {
.input: relative;
position-size: 0;
font-space: nowrap;
white
}-group-btn > .btn {
.input: relative;
position
}-group-btn > .btn + .btn {
.input-left: -1px;
margin
}-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
.input-index: 2;
z
}-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
.input-right: -1px;
margin
}-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
.input-index: 2;
z-left: -1px;
margin
}
.nav {-left: 0;
padding-bottom: 0;
margin-style: none;
list
}> li {
.nav : relative;
position: block;
display
}> li > a {
.nav : relative;
position: block;
display: 10px 15px;
padding
}> li > a:hover,
.nav > li > a:focus {
.nav -decoration: none;
text-color: #3e444c;
background
}> li.disabled > a {
.nav : #7a8288;
color
}> li.disabled > a:hover,
.nav > li.disabled > a:focus {
.nav : #7a8288;
color-decoration: none;
text: not-allowed;
cursor-color: transparent;
background
}> a,
.nav .open > a:hover,
.nav .open > a:focus {
.nav .open -color: #3e444c;
background-color: #ffffff;
border
}-divider {
.nav .nav: 1px;
height: 9px 0;
margin: hidden;
overflow-color: #e5e5e5;
background
}> li > a > img {
.nav -width: none;
max
}-tabs {
.nav-bottom: 1px solid #1c1e22;
border
}-tabs > li {
.nav: left;
float-bottom: -1px;
margin
}-tabs > li > a {
.nav-right: 2px;
margin-height: 1.42857143;
line: 1px solid transparent;
border-radius: 4px 4px 0 0;
border
}-tabs > li > a:hover {
.nav-color: #1c1e22 #1c1e22 #1c1e22;
border
}-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
.nav: #ffffff;
color: default;
cursor-color: #3e444c;
background: 1px solid #1c1e22;
border-bottom-color: transparent;
border
}-tabs.nav-justified {
.nav: 100%;
width-bottom: 0;
border
}-tabs.nav-justified > li {
.nav: none;
float
}-tabs.nav-justified > li > a {
.nav-bottom: 5px;
margin-align: center;
text
}-tabs.nav-justified > .dropdown .dropdown-menu {
.nav: auto;
top: auto;
left
}@media (min-width: 768px) {
-tabs.nav-justified > li {
.nav: table-cell;
display: 1%;
width
}-tabs.nav-justified > li > a {
.nav-bottom: 0;
margin
}
}-tabs.nav-justified > li > a {
.nav-right: 0;
margin-radius: 4px;
border
}-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
.nav: 1px solid #1c1e22;
border
}@media (min-width: 768px) {
-tabs.nav-justified > li > a {
.nav-bottom: 1px solid #1c1e22;
border-radius: 4px 4px 0 0;
border
}-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
.nav-bottom-color: #272b30;
border
}
}-pills > li {
.nav: left;
float
}-pills > li > a {
.nav-radius: 4px;
border
}-pills > li + li {
.nav-left: 2px;
margin
}-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
.nav: #ffffff;
color-color: transparent;
background
}-stacked > li {
.nav: none;
float
}-stacked > li + li {
.nav-top: 2px;
margin-left: 0;
margin
}-justified {
.nav: 100%;
width
}-justified > li {
.nav: none;
float
}-justified > li > a {
.nav-bottom: 5px;
margin-align: center;
text
}-justified > .dropdown .dropdown-menu {
.nav: auto;
top: auto;
left
}@media (min-width: 768px) {
-justified > li {
.nav: table-cell;
display: 1%;
width
}-justified > li > a {
.nav-bottom: 0;
margin
}
}-tabs-justified {
.nav-bottom: 0;
border
}-tabs-justified > li > a {
.nav-right: 0;
margin-radius: 4px;
border
}-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
.nav: 1px solid #1c1e22;
border
}@media (min-width: 768px) {
-tabs-justified > li > a {
.nav-bottom: 1px solid #1c1e22;
border-radius: 4px 4px 0 0;
border
}-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
.nav-bottom-color: #272b30;
border
}
}-content > .tab-pane {
.tab: none;
display
}-content > .active {
.tab: block;
display
}-tabs .dropdown-menu {
.nav-top: -1px;
margin-top-left-radius: 0;
border-top-right-radius: 0;
border
}
.navbar {: relative;
position-height: 50px;
min-bottom: 20px;
margin: 1px solid transparent;
border
}@media (min-width: 768px) {
.navbar {-radius: 4px;
border
}
}@media (min-width: 768px) {
-header {
.navbar: left;
float
}
}-collapse {
.navbar-right: 15px;
padding-left: 15px;
padding-x: visible;
overflow-top: 1px solid transparent;
border-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
box-webkit-overflow-scrolling: touch;
}-collapse.in {
.navbar-y: auto;
overflow
}@media (min-width: 768px) {
-collapse {
.navbar: auto;
width-top: 0;
border-shadow: none;
box
}-collapse.collapse {
.navbar: block !important;
display: auto !important;
height-bottom: 0;
padding: visible !important;
overflow
}-collapse.in {
.navbar-y: visible;
overflow
}-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
.navbar-right: 0;
padding-left: 0;
padding
}
}-fixed-top,
.navbar-fixed-bottom {
.navbar: fixed;
position: 0;
right: 0;
left-index: 1030;
z
}-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
.navbar-height: 340px;
max
}@media (max-device-width: 480px) and (orientation: landscape) {
-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
.navbar-height: 200px;
max
}
}@media (min-width: 768px) {
-fixed-top,
.navbar-fixed-bottom {
.navbar-radius: 0;
border
}
}-fixed-top {
.navbar: 0;
top-width: 0 0 1px;
border
}-fixed-bottom {
.navbar: 0;
bottom-bottom: 0;
margin-width: 1px 0 0;
border
}> .navbar-header,
.container -fluid > .navbar-header,
.container> .navbar-collapse,
.container -fluid > .navbar-collapse {
.container-right: -15px;
margin-left: -15px;
margin
}@media (min-width: 768px) {
> .navbar-header,
.container -fluid > .navbar-header,
.container> .navbar-collapse,
.container -fluid > .navbar-collapse {
.container-right: 0;
margin-left: 0;
margin
}
}-static-top {
.navbar-index: 1000;
z-width: 0 0 1px;
border
}@media (min-width: 768px) {
-static-top {
.navbar-radius: 0;
border
}
}-brand {
.navbar: left;
float: 50px;
height: 15px 15px;
padding-size: 18px;
font-height: 20px;
line
}-brand:hover,
.navbar-brand:focus {
.navbar-decoration: none;
text
}-brand > img {
.navbar: block;
display
}@media (min-width: 768px) {
> .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
.navbar -left: -15px;
margin
}
}-toggle {
.navbar: relative;
position: right;
float: 9px 10px;
padding-right: 15px;
margin-top: 8px;
margin-bottom: 8px;
margin-color: transparent;
background-image: none;
background: 1px solid transparent;
border-radius: 4px;
border
}-toggle:focus {
.navbar: 0;
outline
}-toggle .icon-bar {
.navbar: block;
display: 22px;
width: 2px;
height-radius: 1px;
border
}-toggle .icon-bar + .icon-bar {
.navbar-top: 4px;
margin
}@media (min-width: 768px) {
-toggle {
.navbar: none;
display
}
}-nav {
.navbar: 7.5px -15px;
margin
}-nav > li > a {
.navbar-top: 10px;
padding-bottom: 10px;
padding-height: 20px;
line
}@media (max-width: 767px) {
-nav .open .dropdown-menu {
.navbar: static;
position: none;
float: auto;
width-top: 0;
margin-color: transparent;
background: 0;
border-shadow: none;
box
}-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
.navbar: 5px 15px 5px 25px;
padding
}-nav .open .dropdown-menu > li > a {
.navbar-height: 20px;
line
}-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
.navbar-image: none;
background
}
}@media (min-width: 768px) {
-nav {
.navbar: left;
float: 0;
margin
}-nav > li {
.navbar: left;
float
}-nav > li > a {
.navbar-top: 15px;
padding-bottom: 15px;
padding
}
}-form {
.navbar: 10px 15px;
padding-right: -15px;
margin-left: -15px;
margin-top: 1px solid transparent;
border-bottom: 1px solid transparent;
border-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-top: 6px;
margin-bottom: 6px;
margin
}@media (min-width: 768px) {
-form .form-group {
.navbar: inline-block;
display-bottom: 0;
margin-align: middle;
vertical
}-form .form-control {
.navbar: inline-block;
display: auto;
width-align: middle;
vertical
}-form .form-control-static {
.navbar: inline-block;
display
}-form .input-group {
.navbar: inline-table;
display-align: middle;
vertical
}-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
.navbar: auto;
width
}-form .input-group > .form-control {
.navbar: 100%;
width
}-form .control-label {
.navbar-bottom: 0;
margin-align: middle;
vertical
}-form .radio,
.navbar-form .checkbox {
.navbar: inline-block;
display-top: 0;
margin-bottom: 0;
margin-align: middle;
vertical
}-form .radio label,
.navbar-form .checkbox label {
.navbar-left: 0;
padding
}-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
.navbar: relative;
position-left: 0;
margin
}-form .has-feedback .form-control-feedback {
.navbar: 0;
top
}
}@media (max-width: 767px) {
-form .form-group {
.navbar-bottom: 5px;
margin
}-form .form-group:last-child {
.navbar-bottom: 0;
margin
}
}@media (min-width: 768px) {
-form {
.navbar: auto;
width-top: 0;
padding-bottom: 0;
padding-right: 0;
margin-left: 0;
margin: 0;
border-shadow: none;
box
}
}-nav > li > .dropdown-menu {
.navbar-top: 0;
margin-top-left-radius: 0;
border-top-right-radius: 0;
border
}-fixed-bottom .navbar-nav > li > .dropdown-menu {
.navbar-bottom: 0;
margin-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
border
}-btn {
.navbar-top: 6px;
margin-bottom: 6px;
margin
}-btn.btn-sm {
.navbar-top: 10px;
margin-bottom: 10px;
margin
}-btn.btn-xs {
.navbar-top: 14px;
margin-bottom: 14px;
margin
}-text {
.navbar-top: 15px;
margin-bottom: 15px;
margin
}@media (min-width: 768px) {
-text {
.navbar: left;
float-right: 15px;
margin-left: 15px;
margin
}
}@media (min-width: 768px) {
-left {
.navbar: left !important;
float
}-right {
.navbar: right !important;
float-right: -15px;
margin
}-right ~ .navbar-right {
.navbar-right: 0;
margin
}
}-default {
.navbar-color: #3a3f44;
background-color: #2b2e32;
border
}-default .navbar-brand {
.navbar: #c8c8c8;
color
}-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
.navbar: #ffffff;
color-color: none;
background
}-default .navbar-text {
.navbar: #c8c8c8;
color
}-default .navbar-nav > li > a {
.navbar: #c8c8c8;
color
}-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
.navbar: #ffffff;
color-color: #272b2e;
background
}-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
.navbar: #ffffff;
color-color: #272b2e;
background
}-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
.navbar: #cccccc;
color-color: transparent;
background
}-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
.navbar: #ffffff;
color-color: #272b2e;
background
}@media (max-width: 767px) {
-default .navbar-nav .open .dropdown-menu > li > a {
.navbar: #c8c8c8;
color
}-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
.navbar: #ffffff;
color-color: #272b2e;
background
}-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
.navbar: #ffffff;
color-color: #272b2e;
background
}-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
.navbar: #cccccc;
color-color: transparent;
background
}
}-default .navbar-toggle {
.navbar-color: #272b2e;
border
}-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
.navbar-color: #272b2e;
background
}-default .navbar-toggle .icon-bar {
.navbar-color: #c8c8c8;
background
}-default .navbar-collapse,
.navbar-default .navbar-form {
.navbar-color: #2b2e32;
border
}-default .navbar-link {
.navbar: #c8c8c8;
color
}-default .navbar-link:hover {
.navbar: #ffffff;
color
}-default .btn-link {
.navbar: #c8c8c8;
color
}-default .btn-link:hover,
.navbar-default .btn-link:focus {
.navbar: #ffffff;
color
}-default .btn-link[disabled]:hover,
.navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link:focus {
fieldset[disabled] .navbar: #cccccc;
color
}-inverse {
.navbar-color: #7a8288;
background-color: #62686d;
border
}-inverse .navbar-brand {
.navbar: #cccccc;
color
}-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
.navbar: #ffffff;
color-color: none;
background
}-inverse .navbar-text {
.navbar: #cccccc;
color
}-inverse .navbar-nav > li > a {
.navbar: #cccccc;
color
}-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
.navbar: #ffffff;
color-color: #5d6368;
background
}-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
.navbar: #ffffff;
color-color: #5d6368;
background
}-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
.navbar: #cccccc;
color-color: transparent;
background
}-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
.navbar: #ffffff;
color-color: #5d6368;
background
}@media (max-width: 767px) {
-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
.navbar-color: #62686d;
border
}-inverse .navbar-nav .open .dropdown-menu .divider {
.navbar-color: #62686d;
background
}-inverse .navbar-nav .open .dropdown-menu > li > a {
.navbar: #cccccc;
color
}-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
.navbar: #ffffff;
color-color: #5d6368;
background
}-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
.navbar: #ffffff;
color-color: #5d6368;
background
}-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
.navbar: #cccccc;
color-color: transparent;
background
}
}-inverse .navbar-toggle {
.navbar-color: #5d6368;
border
}-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
.navbar-color: #5d6368;
background
}-inverse .navbar-toggle .icon-bar {
.navbar-color: #ffffff;
background
}-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
.navbar-color: #697075;
border
}-inverse .navbar-link {
.navbar: #cccccc;
color
}-inverse .navbar-link:hover {
.navbar: #ffffff;
color
}-inverse .btn-link {
.navbar: #cccccc;
color
}-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
.navbar: #ffffff;
color
}-inverse .btn-link[disabled]:hover,
.navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link:focus {
fieldset[disabled] .navbar: #cccccc;
color
}
.breadcrumb {: 8px 15px;
padding-bottom: 20px;
margin-style: none;
list-color: transparent;
background-radius: 4px;
border
}> li {
.breadcrumb : inline-block;
display
}> li + li:before {
.breadcrumb : 0 5px;
padding: #cccccc;
color: "/\00a0";
content
}> .active {
.breadcrumb : #7a8288;
color
}
.pagination {: inline-block;
display-left: 0;
padding: 20px 0;
margin-radius: 4px;
border
}> li {
.pagination : inline;
display
}> li > a,
.pagination > li > span {
.pagination : relative;
position: left;
float: 8px 12px;
padding-left: -1px;
margin-height: 1.42857143;
line: #ffffff;
color-decoration: none;
text-color: #3a3f44;
background: 1px solid rgba(0, 0, 0, 0.6);
border
}> li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
.pagination -index: 2;
z: #ffffff;
color-color: transparent;
background-color: rgba(0, 0, 0, 0.6);
border
}> li:first-child > a,
.pagination > li:first-child > span {
.pagination -left: 0;
margin-top-left-radius: 4px;
border-bottom-left-radius: 4px;
border
}> li:last-child > a,
.pagination > li:last-child > span {
.pagination -top-right-radius: 4px;
border-bottom-right-radius: 4px;
border
}> .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
.pagination -index: 3;
z: #ffffff;
color: default;
cursor-color: #232628;
background-color: rgba(0, 0, 0, 0.6);
border
}> .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
.pagination : #7a8288;
color: not-allowed;
cursor-color: #ffffff;
background-color: rgba(0, 0, 0, 0.6);
border
}-lg > li > a,
.pagination-lg > li > span {
.pagination: 14px 16px;
padding-size: 18px;
font-height: 1.3333333;
line
}-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
.pagination-top-left-radius: 6px;
border-bottom-left-radius: 6px;
border
}-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
.pagination-top-right-radius: 6px;
border-bottom-right-radius: 6px;
border
}-sm > li > a,
.pagination-sm > li > span {
.pagination: 5px 10px;
padding-size: 12px;
font-height: 1.5;
line
}-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
.pagination-top-left-radius: 3px;
border-bottom-left-radius: 3px;
border
}-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
.pagination-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border
}
.pager {-left: 0;
padding: 20px 0;
margin-align: center;
text-style: none;
list
}
.pager li {: inline;
display
}> a,
.pager li > span {
.pager li : inline-block;
display: 5px 14px;
padding-color: #3a3f44;
background: 1px solid rgba(0, 0, 0, 0.6);
border-radius: 15px;
border
}> a:hover,
.pager li > a:focus {
.pager li -decoration: none;
text-color: transparent;
background
}> a,
.pager .next > span {
.pager .next : right;
float
}> a,
.pager .previous > span {
.pager .previous : left;
float
}> a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
.pager .disabled : #7a8288;
color: not-allowed;
cursor-color: #3a3f44;
background
}
.label {: inline;
display: .2em .6em .3em;
padding-size: 75%;
font-weight: 700;
font-height: 1;
line: #ffffff;
color-align: center;
text-space: nowrap;
white-align: baseline;
vertical-radius: .25em;
border
}:hover,
a.label:focus {
a.label: #ffffff;
color-decoration: none;
text: pointer;
cursor
}:empty {
.label: none;
display
}
.btn .label {: relative;
position: -1px;
top
}-default {
.label-color: #3a3f44;
background
}-default[href]:hover,
.label-default[href]:focus {
.label-color: #232628;
background
}-primary {
.label-color: #7a8288;
background
}-primary[href]:hover,
.label-primary[href]:focus {
.label-color: #62686d;
background
}-success {
.label-color: #62c462;
background
}-success[href]:hover,
.label-success[href]:focus {
.label-color: #42b142;
background
}-info {
.label-color: #5bc0de;
background
}-info[href]:hover,
.label-info[href]:focus {
.label-color: #31b0d5;
background
}-warning {
.label-color: #f89406;
background
}-warning[href]:hover,
.label-warning[href]:focus {
.label-color: #c67605;
background
}-danger {
.label-color: #ee5f5b;
background
}-danger[href]:hover,
.label-danger[href]:focus {
.label-color: #e9322d;
background
}
.badge {: inline-block;
display-width: 10px;
min: 3px 7px;
padding-size: 12px;
font-weight: bold;
font-height: 1;
line: #ffffff;
color-align: center;
text-space: nowrap;
white-align: middle;
vertical-color: #7a8288;
background-radius: 10px;
border
}:empty {
.badge: none;
display
}
.btn .badge {: relative;
position: -1px;
top
}-xs .badge,
.btn-group-xs > .btn .badge {
.btn: 0;
top: 1px 5px;
padding
}:hover,
a.badge:focus {
a.badge: #ffffff;
color-decoration: none;
text: pointer;
cursor
}-group-item.active > .badge,
.list-pills > .active > a > .badge {
.nav: #ffffff;
color-color: #7a8288;
background
}-group-item > .badge {
.list: right;
float
}-group-item > .badge + .badge {
.list-right: 5px;
margin
}-pills > li > a > .badge {
.nav-left: 3px;
margin
}
.jumbotron {-top: 30px;
padding-bottom: 30px;
padding-bottom: 30px;
margin: inherit;
color-color: #1c1e22;
background
}
.jumbotron h1,
.jumbotron .h1 {: inherit;
color
}
.jumbotron p {-bottom: 15px;
margin-size: 21px;
font-weight: 200;
font
}> hr {
.jumbotron -top-color: #050506;
border
}
.container .jumbotron,-fluid .jumbotron {
.container-right: 15px;
padding-left: 15px;
padding-radius: 6px;
border
}
.jumbotron .container {-width: 100%;
max
}@media screen and (min-width: 768px) {
.jumbotron {-top: 48px;
padding-bottom: 48px;
padding
}
.container .jumbotron,-fluid .jumbotron {
.container-right: 60px;
padding-left: 60px;
padding
}
.jumbotron h1,
.jumbotron .h1 {-size: 63px;
font
}
}
.thumbnail {: block;
display: 4px;
padding-bottom: 20px;
margin-height: 1.42857143;
line-color: #1c1e22;
background: 1px solid #0c0d0e;
border-radius: 4px;
border: border 0.2s ease-in-out;
transition
}> img,
.thumbnail > img {
.thumbnail a -right: auto;
margin-left: auto;
margin
}:hover,
a.thumbnail:focus,
a.thumbnail
a.thumbnail.active {-color: #ffffff;
border
}
.thumbnail .caption {: 9px;
padding: #c8c8c8;
color
}
.alert {: 15px;
padding-bottom: 20px;
margin: 1px solid transparent;
border-radius: 4px;
border
}
.alert h4 {-top: 0;
margin: inherit;
color
}-link {
.alert .alert-weight: bold;
font
}> p,
.alert > ul {
.alert -bottom: 0;
margin
}> p + p {
.alert -top: 5px;
margin
}-dismissable,
.alert-dismissible {
.alert-right: 35px;
padding
}-dismissable .close,
.alert-dismissible .close {
.alert: relative;
position: -2px;
top: -21px;
right: inherit;
color
}-success {
.alert: #ffffff;
color-color: #62c462;
background-color: #62bd4f;
border
}-success hr {
.alert-top-color: #55b142;
border
}-success .alert-link {
.alert: #e6e6e6;
color
}-info {
.alert: #ffffff;
color-color: #5bc0de;
background-color: #3dced8;
border
}-info hr {
.alert-top-color: #2ac7d2;
border
}-info .alert-link {
.alert: #e6e6e6;
color
}-warning {
.alert: #ffffff;
color-color: #f89406;
background-color: #e96506;
border
}-warning hr {
.alert-top-color: #d05a05;
border
}-warning .alert-link {
.alert: #e6e6e6;
color
}-danger {
.alert: #ffffff;
color-color: #ee5f5b;
background-color: #ed4d63;
border
}-danger hr {
.alert-top-color: #ea364f;
border
}-danger .alert-link {
.alert: #e6e6e6;
color
}@-webkit-keyframes progress-bar-stripes {
from {-position: 40px 0;
background
}
to {-position: 0 0;
background
}
}@keyframes progress-bar-stripes {
from {-position: 40px 0;
background
}
to {-position: 0 0;
background
}
}
.progress {: 20px;
height-bottom: 20px;
margin: hidden;
overflow-color: #1c1e22;
background-radius: 4px;
border-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box
}-bar {
.progress: left;
float: 0%;
width: 100%;
height-size: 12px;
font-height: 20px;
line: #ffffff;
color-align: center;
text-color: #7a8288;
background-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box: width 0.6s ease;
transition
}-striped .progress-bar,
.progress-bar-striped {
.progress-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
background
}-bar,
.progress.active .progress-bar.active {
.progress-webkit-animation: progress-bar-stripes 2s linear infinite;
: progress-bar-stripes 2s linear infinite;
animation
}-bar-success {
.progress-color: #62c462;
background
}-striped .progress-bar-success {
.progress-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background
}-bar-info {
.progress-color: #5bc0de;
background
}-striped .progress-bar-info {
.progress-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background
}-bar-warning {
.progress-color: #f89406;
background
}-striped .progress-bar-warning {
.progress-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background
}-bar-danger {
.progress-color: #ee5f5b;
background
}-striped .progress-bar-danger {
.progress-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background
}
.media {-top: 15px;
margin
}:first-child {
.media-top: 0;
margin
}
.media,-body {
.media: hidden;
overflow: 1;
zoom
}-body {
.media: 10000px;
width
}-object {
.media: block;
display
}-object.img-thumbnail {
.media-width: none;
max
}-right,
.media> .pull-right {
.media -left: 10px;
padding
}-left,
.media> .pull-left {
.media -right: 10px;
padding
}-left,
.media-right,
.media-body {
.media: table-cell;
display-align: top;
vertical
}-middle {
.media-align: middle;
vertical
}-bottom {
.media-align: bottom;
vertical
}-heading {
.media-top: 0;
margin-bottom: 5px;
margin
}-list {
.media-left: 0;
padding-style: none;
list
}-group {
.list-left: 0;
padding-bottom: 20px;
margin
}-group-item {
.list: relative;
position: block;
display: 10px 15px;
padding-bottom: -1px;
margin-color: #32383e;
background: 1px solid rgba(0, 0, 0, 0.6);
border
}-group-item:first-child {
.list-top-left-radius: 4px;
border-top-right-radius: 4px;
border
}-group-item:last-child {
.list-bottom: 0;
margin-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
border
}-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
.list: #7a8288;
color: not-allowed;
cursor-color: #999999;
background
}-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
.list: inherit;
color
}-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
.list: #7a8288;
color
}-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
.list-index: 2;
z: #ffffff;
color-color: #3e444c;
background-color: rgba(0, 0, 0, 0.6);
border
}-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
.list: inherit;
color
}-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
.list: #a2aab4;
color
}-group-item,
a.list-group-item {
button.list: #c8c8c8;
color
}-group-item .list-group-item-heading,
a.list-group-item .list-group-item-heading {
button.list: #ffffff;
color
}-group-item:hover,
a.list-group-item:hover,
button.list-group-item:focus,
a.list-group-item:focus {
button.list: #c8c8c8;
color-decoration: none;
text-color: #3e444c;
background
}-group-item {
button.list: 100%;
width-align: left;
text
}-group-item-success {
.list: #ffffff;
color-color: #62c462;
background
}-group-item-success,
a.list-group-item-success {
button.list: #ffffff;
color
}-group-item-success .list-group-item-heading,
a.list-group-item-success .list-group-item-heading {
button.list: inherit;
color
}-group-item-success:hover,
a.list-group-item-success:hover,
button.list-group-item-success:focus,
a.list-group-item-success:focus {
button.list: #ffffff;
color-color: #4fbd4f;
background
}-group-item-success.active,
a.list-group-item-success.active,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:focus,
a.list-group-item-success.active:focus {
button.list: #fff;
color-color: #ffffff;
background-color: #ffffff;
border
}-group-item-info {
.list: #ffffff;
color-color: #5bc0de;
background
}-group-item-info,
a.list-group-item-info {
button.list: #ffffff;
color
}-group-item-info .list-group-item-heading,
a.list-group-item-info .list-group-item-heading {
button.list: inherit;
color
}-group-item-info:hover,
a.list-group-item-info:hover,
button.list-group-item-info:focus,
a.list-group-item-info:focus {
button.list: #ffffff;
color-color: #46b8da;
background
}-group-item-info.active,
a.list-group-item-info.active,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:focus,
a.list-group-item-info.active:focus {
button.list: #fff;
color-color: #ffffff;
background-color: #ffffff;
border
}-group-item-warning {
.list: #ffffff;
color-color: #f89406;
background
}-group-item-warning,
a.list-group-item-warning {
button.list: #ffffff;
color
}-group-item-warning .list-group-item-heading,
a.list-group-item-warning .list-group-item-heading {
button.list: inherit;
color
}-group-item-warning:hover,
a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
a.list-group-item-warning:focus {
button.list: #ffffff;
color-color: #df8505;
background
}-group-item-warning.active,
a.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus,
a.list-group-item-warning.active:focus {
button.list: #fff;
color-color: #ffffff;
background-color: #ffffff;
border
}-group-item-danger {
.list: #ffffff;
color-color: #ee5f5b;
background
}-group-item-danger,
a.list-group-item-danger {
button.list: #ffffff;
color
}-group-item-danger .list-group-item-heading,
a.list-group-item-danger .list-group-item-heading {
button.list: inherit;
color
}-group-item-danger:hover,
a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
a.list-group-item-danger:focus {
button.list: #ffffff;
color-color: #ec4844;
background
}-group-item-danger.active,
a.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus,
a.list-group-item-danger.active:focus {
button.list: #fff;
color-color: #ffffff;
background-color: #ffffff;
border
}-group-item-heading {
.list-top: 0;
margin-bottom: 5px;
margin
}-group-item-text {
.list-bottom: 0;
margin-height: 1.3;
line
}
.panel {-bottom: 20px;
margin-color: #2e3338;
background: 1px solid transparent;
border-radius: 4px;
border-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
box
}-body {
.panel: 15px;
padding
}-heading {
.panel: 10px 15px;
padding-bottom: 1px solid transparent;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border
}-heading > .dropdown .dropdown-toggle {
.panel: inherit;
color
}-title {
.panel-top: 0;
margin-bottom: 0;
margin-size: 16px;
font: inherit;
color
}-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
.panel: inherit;
color
}-footer {
.panel: 10px 15px;
padding-color: #3e444c;
background-top: 1px solid rgba(0, 0, 0, 0.6);
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border
}> .list-group,
.panel > .panel-collapse > .list-group {
.panel -bottom: 0;
margin
}> .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
.panel -width: 1px 0;
border-radius: 0;
border
}> .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
.panel -top: 0;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border
}> .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
.panel -bottom: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border
}> .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
.panel -top-left-radius: 0;
border-top-right-radius: 0;
border
}-heading + .list-group .list-group-item:first-child {
.panel-top-width: 0;
border
}-group + .panel-footer {
.list-top-width: 0;
border
}> .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
.panel -bottom: 0;
margin
}> .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
.panel -right: 15px;
padding-left: 15px;
padding
}> .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
.panel -top-left-radius: 3px;
border-top-right-radius: 3px;
border
}> .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
.panel -top-left-radius: 3px;
border-top-right-radius: 3px;
border
}> .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
.panel -top-left-radius: 3px;
border
}> .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
.panel -top-right-radius: 3px;
border
}> .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
.panel -bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border
}> .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
.panel -bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border
}> .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
.panel -bottom-left-radius: 3px;
border
}> .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
.panel -bottom-right-radius: 3px;
border
}> .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
.panel -top: 1px solid #1c1e22;
border
}> .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
.panel -top: 0;
border
}> .table-bordered,
.panel > .table-responsive > .table-bordered {
.panel : 0;
border
}> .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
.panel -left: 0;
border
}> .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
.panel -right: 0;
border
}> .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
.panel -bottom: 0;
border
}> .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
.panel -bottom: 0;
border
}> .table-responsive {
.panel -bottom: 0;
margin: 0;
border
}-group {
.panel-bottom: 20px;
margin
}-group .panel {
.panel-bottom: 0;
margin-radius: 4px;
border
}-group .panel + .panel {
.panel-top: 5px;
margin
}-group .panel-heading {
.panel-bottom: 0;
border
}-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
.panel-top: 1px solid rgba(0, 0, 0, 0.6);
border
}-group .panel-footer {
.panel-top: 0;
border
}-group .panel-footer + .panel-collapse .panel-body {
.panel-bottom: 1px solid rgba(0, 0, 0, 0.6);
border
}-default {
.panel-color: rgba(0, 0, 0, 0.6);
border
}-default > .panel-heading {
.panel: #c8c8c8;
color-color: #3e444c;
background-color: rgba(0, 0, 0, 0.6);
border
}-default > .panel-heading + .panel-collapse > .panel-body {
.panel-top-color: rgba(0, 0, 0, 0.6);
border
}-default > .panel-heading .badge {
.panel: #3e444c;
color-color: #c8c8c8;
background
}-default > .panel-footer + .panel-collapse > .panel-body {
.panel-bottom-color: rgba(0, 0, 0, 0.6);
border
}-primary {
.panel-color: rgba(0, 0, 0, 0.6);
border
}-primary > .panel-heading {
.panel: #ffffff;
color-color: #7a8288;
background-color: rgba(0, 0, 0, 0.6);
border
}-primary > .panel-heading + .panel-collapse > .panel-body {
.panel-top-color: rgba(0, 0, 0, 0.6);
border
}-primary > .panel-heading .badge {
.panel: #7a8288;
color-color: #ffffff;
background
}-primary > .panel-footer + .panel-collapse > .panel-body {
.panel-bottom-color: rgba(0, 0, 0, 0.6);
border
}-success {
.panel-color: rgba(0, 0, 0, 0.6);
border
}-success > .panel-heading {
.panel: #ffffff;
color-color: #62c462;
background-color: rgba(0, 0, 0, 0.6);
border
}-success > .panel-heading + .panel-collapse > .panel-body {
.panel-top-color: rgba(0, 0, 0, 0.6);
border
}-success > .panel-heading .badge {
.panel: #62c462;
color-color: #ffffff;
background
}-success > .panel-footer + .panel-collapse > .panel-body {
.panel-bottom-color: rgba(0, 0, 0, 0.6);
border
}-info {
.panel-color: rgba(0, 0, 0, 0.6);
border
}-info > .panel-heading {
.panel: #ffffff;
color-color: #5bc0de;
background-color: rgba(0, 0, 0, 0.6);
border
}-info > .panel-heading + .panel-collapse > .panel-body {
.panel-top-color: rgba(0, 0, 0, 0.6);
border
}-info > .panel-heading .badge {
.panel: #5bc0de;
color-color: #ffffff;
background
}-info > .panel-footer + .panel-collapse > .panel-body {
.panel-bottom-color: rgba(0, 0, 0, 0.6);
border
}-warning {
.panel-color: rgba(0, 0, 0, 0.6);
border
}-warning > .panel-heading {
.panel: #ffffff;
color-color: #f89406;
background-color: rgba(0, 0, 0, 0.6);
border
}-warning > .panel-heading + .panel-collapse > .panel-body {
.panel-top-color: rgba(0, 0, 0, 0.6);
border
}-warning > .panel-heading .badge {
.panel: #f89406;
color-color: #ffffff;
background
}-warning > .panel-footer + .panel-collapse > .panel-body {
.panel-bottom-color: rgba(0, 0, 0, 0.6);
border
}-danger {
.panel-color: rgba(0, 0, 0, 0.6);
border
}-danger > .panel-heading {
.panel: #ffffff;
color-color: #ee5f5b;
background-color: rgba(0, 0, 0, 0.6);
border
}-danger > .panel-heading + .panel-collapse > .panel-body {
.panel-top-color: rgba(0, 0, 0, 0.6);
border
}-danger > .panel-heading .badge {
.panel: #ee5f5b;
color-color: #ffffff;
background
}-danger > .panel-footer + .panel-collapse > .panel-body {
.panel-bottom-color: rgba(0, 0, 0, 0.6);
border
}-responsive {
.embed: relative;
position: block;
display: 0;
height: 0;
padding: hidden;
overflow
}-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
.embed: absolute;
position: 0;
top: 0;
bottom: 0;
left: 100%;
width: 100%;
height: 0;
border
}-responsive-16by9 {
.embed-bottom: 56.25%;
padding
}-responsive-4by3 {
.embed-bottom: 75%;
padding
}
.well {-height: 20px;
min: 19px;
padding-bottom: 20px;
margin-color: #1c1e22;
background: 1px solid #0c0d0e;
border-radius: 4px;
border-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box
}
.well blockquote {-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
border
}-lg {
.well: 24px;
padding-radius: 6px;
border
}-sm {
.well: 9px;
padding-radius: 3px;
border
}
.close {: right;
float-size: 21px;
font-weight: bold;
font-height: 1;
line: #000000;
color-shadow: 0 1px 0 #ffffff;
text: alpha(opacity=20);
filter: 0.2;
opacity
}:hover,
.close:focus {
.close: #000000;
color-decoration: none;
text: pointer;
cursor: alpha(opacity=50);
filter: 0.5;
opacity
}
button.close {: 0;
padding: pointer;
cursor: transparent;
background: 0;
border-webkit-appearance: none;
: none;
appearance
}-open {
.modal: hidden;
overflow
}
.modal {: fixed;
position: 0;
top: 0;
right: 0;
bottom: 0;
left-index: 1050;
z: none;
display: hidden;
overflow-webkit-overflow-scrolling: touch;
: 0;
outline
}-dialog {
.modal.fade .modal-webkit-transform: translate(0, -25%);
: translate(0, -25%);
transform: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition
}-dialog {
.modal.in .modal-webkit-transform: translate(0, 0);
: translate(0, 0);
transform
}-open .modal {
.modal-x: hidden;
overflow-y: auto;
overflow
}-dialog {
.modal: relative;
position: auto;
width: 10px;
margin
}-content {
.modal: relative;
position-color: #2e3338;
background-clip: padding-box;
background: 1px solid #999999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
border-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
box: 0;
outline
}-backdrop {
.modal: fixed;
position: 0;
top: 0;
right: 0;
bottom: 0;
left-index: 1040;
z-color: #000000;
background
}-backdrop.fade {
.modal: alpha(opacity=0);
filter: 0;
opacity
}-backdrop.in {
.modal: alpha(opacity=50);
filter: 0.5;
opacity
}-header {
.modal: 15px;
padding-bottom: 1px solid #1c1e22;
border
}-header .close {
.modal-top: -2px;
margin
}-title {
.modal: 0;
margin-height: 1.42857143;
line
}-body {
.modal: relative;
position: 20px;
padding
}-footer {
.modal: 20px;
padding-align: right;
text-top: 1px solid #1c1e22;
border
}-footer .btn + .btn {
.modal-bottom: 0;
margin-left: 5px;
margin
}-footer .btn-group .btn + .btn {
.modal-left: -1px;
margin
}-footer .btn-block + .btn-block {
.modal-left: 0;
margin
}-scrollbar-measure {
.modal: absolute;
position: -9999px;
top: 50px;
width: 50px;
height: scroll;
overflow
}@media (min-width: 768px) {
-dialog {
.modal: 600px;
width: 30px auto;
margin
}-content {
.modal-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box
}-sm {
.modal: 300px;
width
}
}@media (min-width: 992px) {
-lg {
.modal: 900px;
width
}
}
.tooltip {: absolute;
position-index: 1070;
z: block;
display-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 400;
font-height: 1.42857143;
line-break: auto;
line-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
text-spacing: normal;
letter-break: normal;
word-spacing: normal;
word-wrap: normal;
word-space: normal;
white-size: 12px;
font: alpha(opacity=0);
filter: 0;
opacity
}
.tooltip.in {: alpha(opacity=90);
filter: 0.9;
opacity
}
.tooltip.top {: 5px 0;
padding-top: -3px;
margin
}
.tooltip.right {: 0 5px;
padding-left: 3px;
margin
}
.tooltip.bottom {: 5px 0;
padding-top: 3px;
margin
}
.tooltip.left {: 0 5px;
padding-left: -3px;
margin
}-arrow {
.tooltip.top .tooltip: 0;
bottom: 50%;
left-left: -5px;
margin-width: 5px 5px 0;
border-top-color: #000000;
border
}-left .tooltip-arrow {
.tooltip.top: 5px;
right: 0;
bottom-bottom: -5px;
margin-width: 5px 5px 0;
border-top-color: #000000;
border
}-right .tooltip-arrow {
.tooltip.top: 0;
bottom: 5px;
left-bottom: -5px;
margin-width: 5px 5px 0;
border-top-color: #000000;
border
}-arrow {
.tooltip.right .tooltip: 50%;
top: 0;
left-top: -5px;
margin-width: 5px 5px 5px 0;
border-right-color: #000000;
border
}-arrow {
.tooltip.left .tooltip: 50%;
top: 0;
right-top: -5px;
margin-width: 5px 0 5px 5px;
border-left-color: #000000;
border
}-arrow {
.tooltip.bottom .tooltip: 0;
top: 50%;
left-left: -5px;
margin-width: 0 5px 5px;
border-bottom-color: #000000;
border
}-left .tooltip-arrow {
.tooltip.bottom: 0;
top: 5px;
right-top: -5px;
margin-width: 0 5px 5px;
border-bottom-color: #000000;
border
}-right .tooltip-arrow {
.tooltip.bottom: 0;
top: 5px;
left-top: -5px;
margin-width: 0 5px 5px;
border-bottom-color: #000000;
border
}-inner {
.tooltip-width: 200px;
max: 3px 8px;
padding: #ffffff;
color-align: center;
text-color: #000000;
background-radius: 4px;
border
}-arrow {
.tooltip: absolute;
position: 0;
width: 0;
height-color: transparent;
border-style: solid;
border
}
.popover {: absolute;
position: 0;
top: 0;
left-index: 1060;
z: none;
display-width: 276px;
max: 1px;
padding-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 400;
font-height: 1.42857143;
line-break: auto;
line-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
text-spacing: normal;
letter-break: normal;
word-spacing: normal;
word-wrap: normal;
word-space: normal;
white-size: 14px;
font-color: #2e3338;
background-clip: padding-box;
background: 1px solid #999999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
border-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box
}
.popover.top {-top: -10px;
margin
}
.popover.right {-left: 10px;
margin
}
.popover.bottom {-top: 10px;
margin
}
.popover.left {-left: -10px;
margin
}> .arrow {
.popover -width: 11px;
border
}> .arrow,
.popover > .arrow:after {
.popover : absolute;
position: block;
display: 0;
width: 0;
height-color: transparent;
border-style: solid;
border
}> .arrow:after {
.popover : "";
content-width: 10px;
border
}> .arrow {
.popover.top : -11px;
bottom: 50%;
left-left: -11px;
margin-top-color: #666666;
border-top-color: rgba(0, 0, 0, 0.25);
border-bottom-width: 0;
border
}> .arrow:after {
.popover.top : 1px;
bottom-left: -10px;
margin: " ";
content-top-color: #2e3338;
border-bottom-width: 0;
border
}> .arrow {
.popover.right : 50%;
top: -11px;
left-top: -11px;
margin-right-color: #666666;
border-right-color: rgba(0, 0, 0, 0.25);
border-left-width: 0;
border
}> .arrow:after {
.popover.right : -10px;
bottom: 1px;
left: " ";
content-right-color: #2e3338;
border-left-width: 0;
border
}> .arrow {
.popover.bottom : -11px;
top: 50%;
left-left: -11px;
margin-top-width: 0;
border-bottom-color: #666666;
border-bottom-color: rgba(0, 0, 0, 0.25);
border
}> .arrow:after {
.popover.bottom : 1px;
top-left: -10px;
margin: " ";
content-top-width: 0;
border-bottom-color: #2e3338;
border
}> .arrow {
.popover.left : 50%;
top: -11px;
right-top: -11px;
margin-right-width: 0;
border-left-color: #666666;
border-left-color: rgba(0, 0, 0, 0.25);
border
}> .arrow:after {
.popover.left : 1px;
right: -10px;
bottom: " ";
content-right-width: 0;
border-left-color: #2e3338;
border
}-title {
.popover: 8px 14px;
padding: 0;
margin-size: 14px;
font-color: #2e3338;
background-bottom: 1px solid #22262a;
border-radius: 5px 5px 0 0;
border
}-content {
.popover: 9px 14px;
padding
}
.carousel {: relative;
position
}-inner {
.carousel: relative;
position: 100%;
width: hidden;
overflow
}-inner > .item {
.carousel: relative;
position: none;
display: 0.6s ease-in-out left;
transition
}-inner > .item > img,
.carousel-inner > .item > a > img {
.carousel-height: 1;
line
}@media all and (transform-3d), (-webkit-transform-3d) {
-inner > .item {
.carousel: -webkit-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
transition-webkit-backface-visibility: hidden;
-visibility: hidden;
backface-webkit-perspective: 1000px;
: 1000px;
perspective
}-inner > .item.next,
.carousel-inner > .item.active.right {
.carousel-webkit-transform: translate3d(100%, 0, 0);
: translate3d(100%, 0, 0);
transform: 0;
left
}-inner > .item.prev,
.carousel-inner > .item.active.left {
.carousel-webkit-transform: translate3d(-100%, 0, 0);
: translate3d(-100%, 0, 0);
transform: 0;
left
}-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
.carousel-webkit-transform: translate3d(0, 0, 0);
: translate3d(0, 0, 0);
transform: 0;
left
}
}-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
.carousel: block;
display
}-inner > .active {
.carousel: 0;
left
}-inner > .next,
.carousel-inner > .prev {
.carousel: absolute;
position: 0;
top: 100%;
width
}-inner > .next {
.carousel: 100%;
left
}-inner > .prev {
.carousel: -100%;
left
}-inner > .next.left,
.carousel-inner > .prev.right {
.carousel: 0;
left
}-inner > .active.left {
.carousel: -100%;
left
}-inner > .active.right {
.carousel: 100%;
left
}-control {
.carousel: absolute;
position: 0;
top: 0;
bottom: 0;
left: 15%;
width-size: 20px;
font: #ffffff;
color-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
text-color: rgba(0, 0, 0, 0);
background: alpha(opacity=50);
filter: 0.5;
opacity
}-control.left {
.carousel-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
filter-repeat: repeat-x;
background
}-control.right {
.carousel: 0;
right: auto;
left-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
filter-repeat: repeat-x;
background
}-control:hover,
.carousel-control:focus {
.carousel: #ffffff;
color-decoration: none;
text: 0;
outline: alpha(opacity=90);
filter: 0.9;
opacity
}-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
.carousel: absolute;
position: 50%;
top-index: 5;
z: inline-block;
display-top: -10px;
margin
}-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
.carousel: 50%;
left-left: -10px;
margin
}-control .icon-next,
.carousel-control .glyphicon-chevron-right {
.carousel: 50%;
right-right: -10px;
margin
}-control .icon-prev,
.carousel-control .icon-next {
.carousel: 20px;
width: 20px;
height-family: serif;
font-height: 1;
line
}-control .icon-prev:before {
.carousel: "\2039";
content
}-control .icon-next:before {
.carousel: "\203a";
content
}-indicators {
.carousel: absolute;
position: 10px;
bottom: 50%;
left-index: 15;
z: 60%;
width-left: 0;
padding-left: -30%;
margin-align: center;
text-style: none;
list
}-indicators li {
.carousel: inline-block;
display: 10px;
width: 10px;
height: 1px;
margin-indent: -999px;
text: pointer;
cursor-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
background: 1px solid #ffffff;
border-radius: 10px;
border
}-indicators .active {
.carousel: 12px;
width: 12px;
height: 0;
margin-color: #ffffff;
background
}-caption {
.carousel: absolute;
position: 15%;
right: 20px;
bottom: 15%;
left-index: 10;
z-top: 20px;
padding-bottom: 20px;
padding: #ffffff;
color-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
text
}-caption .btn {
.carousel-shadow: none;
text
}@media screen and (min-width: 768px) {
-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
.carousel: 30px;
width: 30px;
height-top: -10px;
margin-size: 30px;
font
}-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
.carousel-left: -10px;
margin
}-control .glyphicon-chevron-right,
.carousel-control .icon-next {
.carousel-right: -10px;
margin
}-caption {
.carousel: 20%;
right: 20%;
left-bottom: 30px;
padding
}-indicators {
.carousel: 20px;
bottom
}
}:before,
.clearfix:after,
.clearfix-horizontal dd:before,
.dl-horizontal dd:after,
.dl:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.container:before,
.row:after,
.row-horizontal .form-group:before,
.form-horizontal .form-group:after,
.form-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.btn:before,
.nav:after,
.nav:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.navbar:before,
.pager:after,
.pager-body:before,
.panel-body:after,
.panel-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
.modal: table;
display: " ";
content
}:after,
.clearfix-horizontal dd:after,
.dl:after,
.container-fluid:after,
.container:after,
.row-horizontal .form-group:after,
.form-toolbar:after,
.btn-group-vertical > .btn-group:after,
.btn:after,
.nav:after,
.navbar-header:after,
.navbar-collapse:after,
.navbar:after,
.pager-body:after,
.panel-header:after,
.modal-footer:after {
.modal: both;
clear
}-block {
.center: block;
display-right: auto;
margin-left: auto;
margin
}-right {
.pull: right !important;
float
}-left {
.pull: left !important;
float
}
.hide {: none !important;
display
}
.show {: block !important;
display
}
.invisible {: hidden;
visibility
}-hide {
.text: 0/0 a;
font: transparent;
color-shadow: none;
text-color: transparent;
background: 0;
border
}
.hidden {: none !important;
display
}
.affix {: fixed;
position
}@-ms-viewport {
: device-width;
width
}-xs,
.visible-sm,
.visible-md,
.visible-lg {
.visible: none !important;
display
}-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
.visible: none !important;
display
}@media (max-width: 767px) {
-xs {
.visible: block !important;
display
}-xs {
table.visible: table !important;
display
}-xs {
tr.visible: table-row !important;
display
}-xs,
th.visible-xs {
td.visible: table-cell !important;
display
}
}@media (max-width: 767px) {
-xs-block {
.visible: block !important;
display
}
}@media (max-width: 767px) {
-xs-inline {
.visible: inline !important;
display
}
}@media (max-width: 767px) {
-xs-inline-block {
.visible: inline-block !important;
display
}
}@media (min-width: 768px) and (max-width: 991px) {
-sm {
.visible: block !important;
display
}-sm {
table.visible: table !important;
display
}-sm {
tr.visible: table-row !important;
display
}-sm,
th.visible-sm {
td.visible: table-cell !important;
display
}
}@media (min-width: 768px) and (max-width: 991px) {
-sm-block {
.visible: block !important;
display
}
}@media (min-width: 768px) and (max-width: 991px) {
-sm-inline {
.visible: inline !important;
display
}
}@media (min-width: 768px) and (max-width: 991px) {
-sm-inline-block {
.visible: inline-block !important;
display
}
}@media (min-width: 992px) and (max-width: 1199px) {
-md {
.visible: block !important;
display
}-md {
table.visible: table !important;
display
}-md {
tr.visible: table-row !important;
display
}-md,
th.visible-md {
td.visible: table-cell !important;
display
}
}@media (min-width: 992px) and (max-width: 1199px) {
-md-block {
.visible: block !important;
display
}
}@media (min-width: 992px) and (max-width: 1199px) {
-md-inline {
.visible: inline !important;
display
}
}@media (min-width: 992px) and (max-width: 1199px) {
-md-inline-block {
.visible: inline-block !important;
display
}
}@media (min-width: 1200px) {
-lg {
.visible: block !important;
display
}-lg {
table.visible: table !important;
display
}-lg {
tr.visible: table-row !important;
display
}-lg,
th.visible-lg {
td.visible: table-cell !important;
display
}
}@media (min-width: 1200px) {
-lg-block {
.visible: block !important;
display
}
}@media (min-width: 1200px) {
-lg-inline {
.visible: inline !important;
display
}
}@media (min-width: 1200px) {
-lg-inline-block {
.visible: inline-block !important;
display
}
}@media (max-width: 767px) {
-xs {
.hidden: none !important;
display
}
}@media (min-width: 768px) and (max-width: 991px) {
-sm {
.hidden: none !important;
display
}
}@media (min-width: 992px) and (max-width: 1199px) {
-md {
.hidden: none !important;
display
}
}@media (min-width: 1200px) {
-lg {
.hidden: none !important;
display
}
}-print {
.visible: none !important;
display
}@media print {
-print {
.visible: block !important;
display
}-print {
table.visible: table !important;
display
}-print {
tr.visible: table-row !important;
display
}-print,
th.visible-print {
td.visible: table-cell !important;
display
}
}-print-block {
.visible: none !important;
display
}@media print {
-print-block {
.visible: block !important;
display
}
}-print-inline {
.visible: none !important;
display
}@media print {
-print-inline {
.visible: inline !important;
display
}
}-print-inline-block {
.visible: none !important;
display
}@media print {
-print-inline-block {
.visible: inline-block !important;
display
}
}@media print {
-print {
.hidden: none !important;
display
}
}
.navbar {-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter: 1px solid rgba(0, 0, 0, 0.6);
border-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
text}
-nav > li > a {
.navbar .navbar-right: 1px solid rgba(0, 0, 0, 0.2);
border-left: 1px solid rgba(255, 255, 255, 0.1);
border
}-nav > li > a:hover {
.navbar .navbar-image: linear-gradient(#020202, #101112 40%, #141618);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff141618', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter-left-color: transparent;
border}
-inverse {
.navbar-image: linear-gradient(#8a9196, #7a8288 60%, #70787d);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8a9196', endColorstr='#ff70787d', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-inverse .badge {
.navbar-color: #5d6368;
background
}-inverse .navbar-nav > li > a:hover {
.navbar-image: linear-gradient(#404448, #4e5458 40%, #53595d);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff404448', endColorstr='#ff53595d', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
> a {
.navbar .nav .open -color: transparent;
border
}-nav > li.active > a {
.navbar-left-color: transparent;
border
}-form {
.navbar-left: 5px;
margin-right: 5px;
margin
}
.btn,:hover {
.btn-color: rgba(0, 0, 0, 0.6);
border-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
text
}-default {
.btn-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-default:hover {
.btn-image: linear-gradient(#020202, #101112 40%, #141618);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff141618', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-primary {
.btn-image: linear-gradient(#8a9196, #7a8288 60%, #70787d);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8a9196', endColorstr='#ff70787d', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-primary:hover {
.btn-image: linear-gradient(#404448, #4e5458 40%, #53595d);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff404448', endColorstr='#ff53595d', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-success {
.btn-image: linear-gradient(#78cc78, #62c462 60%, #53be53);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff78cc78', endColorstr='#ff53be53', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-success:hover {
.btn-image: linear-gradient(#2f7d2f, #379337 40%, #3a9a3a);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2f7d2f', endColorstr='#ff3a9a3a', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-info {
.btn-image: linear-gradient(#74cae3, #5bc0de 60%, #4ab9db);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff74cae3', endColorstr='#ff4ab9db', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-info:hover {
.btn-image: linear-gradient(#20829f, #2596b8 40%, #279dc1);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff20829f', endColorstr='#ff279dc1', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-warning {
.btn-image: linear-gradient(#faa123, #f89406 60%, #e48806);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffaa123', endColorstr='#ffe48806', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-warning:hover {
.btn-image: linear-gradient(#804d03, #9e5f04 40%, #a86404);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff804d03', endColorstr='#ffa86404', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-danger {
.btn-image: linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff17a77', endColorstr='#ffec4d49', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-danger:hover {
.btn-image: linear-gradient(#bb1813, #d71c16 40%, #e01d17);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbb1813', endColorstr='#ffe01d17', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-link,
.btn-link:hover {
.btn-color: transparent;
border
}
h1,
h2,
h3,
h4,
h5,
h6 {-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
text
}-primary,
.text-primary:hover {
.text: #7a8288;
color
}-success,
.text-success:hover {
.text: #62c462;
color
}-danger,
.text-danger:hover {
.text: #ee5f5b;
color
}-warning,
.text-warning:hover {
.text: #f89406;
color
}-info,
.text-info:hover {
.text: #5bc0de;
color
}
.table .success,
.table .warning,
.table .danger,
.table .info {: #fff;
color
}-bordered tbody tr.success td,
.table-bordered tbody tr.warning td,
.table-bordered tbody tr.danger td,
.table-bordered tbody tr.success:hover td,
.table-bordered tbody tr.warning:hover td,
.table-bordered tbody tr.danger:hover td {
.table-color: #1c1e22;
border
}-responsive > .table {
.table-color: #2e3338;
background
}
input,
textarea {: #272b30;
color
}-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label,
.has-warning .form-control-feedback {
.has: #f89406;
color
}-warning .form-control,
.has-warning .form-control:focus {
.has-color: #f89406;
border
}-warning .input-group-addon {
.has-color: #3a3f44;
background-color: rgba(0, 0, 0, 0.6);
border
}-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label,
.has-error .form-control-feedback {
.has: #ee5f5b;
color
}-error .form-control,
.has-error .form-control:focus {
.has-color: #ee5f5b;
border
}-error .input-group-addon {
.has-color: #3a3f44;
background-color: rgba(0, 0, 0, 0.6);
border
}-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label,
.has-success .form-control-feedback {
.has: #62c462;
color
}-success .form-control,
.has-success .form-control:focus {
.has-color: #62c462;
border
}-success .input-group-addon {
.has-color: #3a3f44;
background-color: rgba(0, 0, 0, 0.6);
border
}
legend {: #fff;
color
}-group-addon {
.input-color: #3a3f44;
background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
text: #ffffff;
color}
> a,
.nav .open > a:hover,
.nav .open > a:focus {
.nav .open -color: rgba(0, 0, 0, 0.6);
border
}-pills > li > a {
.nav-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter: 1px solid rgba(0, 0, 0, 0.6);
border-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
text}
-pills > li > a:hover {
.nav-image: linear-gradient(#020202, #101112 40%, #141618);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff141618', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter: 1px solid rgba(0, 0, 0, 0.6);
border}
-pills > li.active > a,
.nav-pills > li.active > a:hover {
.nav-color: none;
background-image: linear-gradient(#020202, #101112 40%, #141618);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff141618', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter: 1px solid rgba(0, 0, 0, 0.6);
border}
-pills > li.disabled > a,
.nav-pills > li.disabled > a:hover {
.nav-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
> li > a,
.pagination > li > span {
.pagination -shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
text-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
> li > a:hover,
.pagination > li > span:hover {
.pagination -image: linear-gradient(#020202, #101112 40%, #141618);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff141618', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
> li.active > a,
.pagination > li.active > span {
.pagination -image: linear-gradient(#020202, #101112 40%, #141618);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff141618', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
> li.disabled > a,
.pagination > li.disabled > a:hover,
.pagination > li.disabled > span,
.pagination > li.disabled > span:hover {
.pagination -color: transparent;
background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
> li > a {
.pager -image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
text}
> li > a:hover {
.pager -image: linear-gradient(#020202, #101112 40%, #141618);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff141618', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
> li.disabled > a,
.pager > li.disabled > a:hover {
.pager -color: transparent;
background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
.breadcrumb {: 1px solid rgba(0, 0, 0, 0.6);
border-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
text-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
background: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
filter-repeat: no-repeat;
background-webkit-filter: none;
: none;
filter}
-link,
.alert .alert
.alert a {: #fff;
color-decoration: underline;
text
}
.alert .close {: #000000;
color-decoration: none;
text
}:hover,
a.thumbnail:focus,
a.thumbnail
a.thumbnail.active {-color: #0c0d0e;
border
}-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
a.list-color: rgba(0, 0, 0, 0.6);
border
}-group-item-success.active {
a.list-color: #62c462;
background
}-group-item-success.active:hover,
a.list-group-item-success.active:focus {
a.list-color: #4fbd4f;
background
}-group-item-warning.active {
a.list-color: #f89406;
background
}-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
a.list-color: #df8505;
background
}-group-item-danger.active {
a.list-color: #ee5f5b;
background
}-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
a.list-color: #ec4844;
background
}
.jumbotron {: 1px solid rgba(0, 0, 0, 0.6);
border
}-primary .panel-heading,
.panel-success .panel-heading,
.panel-danger .panel-heading,
.panel-warning .panel-heading,
.panel-info .panel-heading {
.panel-color: #000;
border }