├── public ├── favicon.ico ├── logo192.png ├── logo512.png ├── robots.txt ├── manifest.json └── index.html ├── README.md ├── src ├── RouterComponents │ ├── About │ │ └── index.js │ ├── Home │ │ └── index.js │ ├── MyNavLink │ │ └── index.js │ └── Link │ │ └── index.js ├── setupTests.js ├── App.test.js ├── index.css ├── reportWebVitals.js ├── githupSearch │ ├── index.css │ ├── index.js │ └── components │ │ ├── List │ │ └── index.js │ │ └── Search │ │ └── index.js ├── components │ ├── List │ │ └── index.js │ ├── Header │ │ └── index.js │ ├── Footer │ │ └── index.js │ └── Item │ │ └── index.js ├── setupProxy.js ├── index.js ├── App.js ├── todoList │ └── index.js ├── App.css └── bootstrap.css ├── .gitignore └── package.json /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengbid/react-template/main/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengbid/react-template/main/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengbid/react-template/main/public/logo512.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | react 相关生态使用方法 4 | In the project directory, you can run: 5 | 6 | ### `yarn start` 7 | -------------------------------------------------------------------------------- /src/RouterComponents/About/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | 3 | export default class About extends Component { 4 | render() { 5 | return

about

6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/RouterComponents/Home/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | 3 | export default class Home extends Component { 4 | render() { 5 | return

home

6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /src/RouterComponents/MyNavLink/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import { NavLink } from "react-router-dom" 3 | 4 | export default class MyNavLink extends Component { 5 | render() { 6 | // 标签体内容是一个特殊属性children 7 | // const { children } = this.props 8 | return 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /src/githupSearch/index.css: -------------------------------------------------------------------------------- 1 | .album { 2 | min-height: 50rem; /* Can be removed; just added for demo purposes */ 3 | padding-top: 3rem; 4 | padding-bottom: 3rem; 5 | background-color: #f7f7f7; 6 | } 7 | 8 | .card { 9 | float: left; 10 | width: 33.333%; 11 | padding: .75rem; 12 | margin-bottom: 2rem; 13 | border: 1px solid #efefef; 14 | text-align: center; 15 | } 16 | 17 | .card > img { 18 | margin-bottom: .75rem; 19 | border-radius: 100px; 20 | } 21 | 22 | .card-text { 23 | font-size: 85%; 24 | } 25 | -------------------------------------------------------------------------------- /src/components/List/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import Item from "../Item" 3 | 4 | export default class List extends Component { 5 | render() { 6 | const { todos, changeCheck, deleteTodo } = this.props 7 | return ( 8 | 18 | ) 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /src/setupProxy.js: -------------------------------------------------------------------------------- 1 | // const proxy = require("http-proxy-middleware") 2 | // 旧版本写法 3 | // module.exports = function (app) { 4 | // app.use( 5 | // proxy("/api1", { 6 | // target: "http://localhost:5000", 7 | // // changeOrigin: true, 8 | // pathRewrite: { "^/api1": "" }, 9 | // }) 10 | // ) 11 | // } 12 | const { createProxyMiddleware } = require("http-proxy-middleware") 13 | 14 | module.exports = function (app) { 15 | app.use( 16 | createProxyMiddleware("/api", { 17 | target: "http://localhost:5000", 18 | pathRewrite: { "^/api1": "" }, 19 | changeOrigin: true, // 控制服务器请求头中的host信息 20 | }) 21 | ) 22 | } 23 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react" 2 | import ReactDOM from "react-dom/client" 3 | import { BrowserRouter } from "react-router-dom" 4 | import App from "./App" 5 | import "./index.css" 6 | import reportWebVitals from "./reportWebVitals" 7 | 8 | const root = ReactDOM.createRoot(document.getElementById("root")) 9 | root.render( 10 | 11 | 12 | 13 | 14 | 15 | ) 16 | 17 | // If you want to start measuring performance in your app, pass a function 18 | // to log results (for example: reportWebVitals(console.log)) 19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 20 | reportWebVitals() 21 | -------------------------------------------------------------------------------- /src/githupSearch/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import "./index.css" 3 | import Header from "./components/Search" 4 | import List from "./components/List" 5 | 6 | export default class Search extends Component { 7 | // state = { 8 | // custmerList: [], 9 | // } 10 | // getCustmerList = (data) => { 11 | // this.setState({ 12 | // custmerList: data, 13 | // }) 14 | // } 15 | render() { 16 | // const { custmerList } = this.state 17 | return ( 18 |
19 | {/*
20 | */} 21 |
22 | 23 |
24 | ) 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import { nanoid } from "nanoid" 3 | import PropTypes from "prop-types" 4 | 5 | export default class Header extends Component { 6 | static propTypes = { 7 | addTodo: PropTypes.func.isRequired, 8 | } 9 | 10 | handleKeyUp = (e) => { 11 | const { target, keyCode } = e 12 | if (keyCode !== 13) return 13 | 14 | this.props.addTodo({ 15 | id: nanoid(), 16 | name: target.value, 17 | done: false, 18 | }) 19 | } 20 | render() { 21 | return ( 22 |
23 | 28 |
29 | ) 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import axios from "axios" 3 | import "./bootstrap.css" 4 | // import Search from "./githupSearch/index" 5 | import Link from "./RouterComponents/Link/index" 6 | 7 | class App extends Component { 8 | getStudent = () => { 9 | axios.get("http://localhost:3000/api1/search/users2").then( 10 | (response) => { 11 | console.log(response.data) 12 | }, 13 | (err) => { 14 | console.log("err") 15 | } 16 | ) 17 | } 18 | 19 | render() { 20 | return ( 21 |
22 | {/*
23 | 24 |
*/} 25 | {/* */} 26 | 27 |
28 | ) 29 | } 30 | } 31 | 32 | export default App 33 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | 19 | React App 20 | 21 | 22 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | 3 | export default class Footer extends Component { 4 | render() { 5 | const { todos, deleteDoneTodos, selectAll } = this.props 6 | const doneCount = todos.reduce((pre, cur) => { 7 | return pre + (cur.done ? 1 : 0) 8 | }, 0) 9 | const totalCount = todos.length 10 | return ( 11 |
12 | 19 | 20 | 已完成{doneCount} / 全部{totalCount} 21 | 22 | 25 |
26 | ) 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/githupSearch/components/List/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import PubSub from "pubsub-js" 3 | 4 | export default class Search extends Component { 5 | state = { 6 | custmerList: [], 7 | } 8 | componentDidMount() { 9 | PubSub.subscribe("getMessage", (_, data) => { 10 | // console.log(data) 11 | this.setState({ custmerList: data }) 12 | }) 13 | } 14 | render() { 15 | const { custmerList } = this.state 16 | 17 | return ( 18 |
19 | {custmerList && 20 | custmerList.map((item) => ( 21 |
22 | 23 | {item.avatar_url} 28 | 29 |

{item.login}

30 |
31 | ))} 32 |
33 | ) 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-template", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.14.1", 7 | "@testing-library/react": "^13.0.0", 8 | "@testing-library/user-event": "^13.2.1", 9 | "axios": "^1.6.2", 10 | "nanoid": "^5.0.3", 11 | "prop-types": "^15.8.1", 12 | "pubsub-js": "^1.9.4", 13 | "react": "^18.2.0", 14 | "react-dom": "^18.2.0", 15 | "react-router-dom": "^6.20.0", 16 | "react-scripts": "5.0.1", 17 | "web-vitals": "^2.1.0" 18 | }, 19 | "scripts": { 20 | "start": "react-scripts start", 21 | "build": "react-scripts build", 22 | "test": "react-scripts test", 23 | "eject": "react-scripts eject" 24 | }, 25 | "eslintConfig": { 26 | "extends": [ 27 | "react-app", 28 | "react-app/jest" 29 | ] 30 | }, 31 | "browserslist": { 32 | "production": [ 33 | ">0.2%", 34 | "not dead", 35 | "not op_mini all" 36 | ], 37 | "development": [ 38 | "last 1 chrome version", 39 | "last 1 firefox version", 40 | "last 1 safari version" 41 | ] 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/components/Item/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import PropTypes from "prop-types" 3 | 4 | export default class Item extends Component { 5 | static propTypes = { 6 | changeCheck: PropTypes.func.isRequired, 7 | deleteTodo: PropTypes.func.isRequired, 8 | } 9 | state = { mouse: false } 10 | // 鼠标移入移出 11 | handleMouse = (flag) => { 12 | return () => { 13 | this.setState({ 14 | mouse: flag, 15 | }) 16 | } 17 | } 18 | // 切换勾选 19 | handleCheck = (id) => { 20 | return (e) => { 21 | this.props.changeCheck({ id, done: e.target.checked }) 22 | } 23 | } 24 | // 删除 25 | handleDelete = (id) => { 26 | this.props.deleteTodo(id) 27 | } 28 | render() { 29 | const { name, done, id } = this.props 30 | const { mouse } = this.state 31 | return ( 32 |
  • 37 | 45 | 52 |
  • 53 | ) 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/githupSearch/components/Search/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import axios from "axios" 3 | import PubSub from "pubsub-js" 4 | 5 | export default class Search extends Component { 6 | // 搜索 7 | search = async () => { 8 | const { 9 | keyWordElement: { value }, 10 | } = this 11 | // const { getCustmerList } = this.props 12 | console.log(value) 13 | // 发送网络请求 14 | axios.get(`/api1/search/users2?q=${value}`).then( 15 | (response) => { 16 | const custmerList = response.data.items 17 | if (custmerList) { 18 | // getCustmerList(custmerList) 19 | PubSub.publish("getMessage", custmerList) 20 | } 21 | }, 22 | (err) => { 23 | console.log("err") 24 | } 25 | ) 26 | // fetch("/api1/search/users2") 27 | // .then( 28 | // (response) => { 29 | // console.log(response) 30 | // return response.json() 31 | // }, 32 | // (error) => { 33 | // console.log(error) 34 | // } 35 | // ) 36 | // .then((response) => { 37 | // console.log(response) 38 | // }) 39 | try { 40 | const response = await fetch("/api1/search/users2") 41 | const data = await response.json() 42 | console.log(data) 43 | } catch (error) {} 44 | } 45 | render() { 46 | return ( 47 |
    48 |

    搜索Github用户

    49 |
    50 | (this.keyWordElement = c)} 52 | type="text" 53 | placeholder="输入关键词点击搜索" 54 | /> 55 |   56 | 57 |
    58 |
    59 | ) 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /src/RouterComponents/Link/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import { Route, Routes } from "react-router-dom" 3 | import Home from "../Home/index" 4 | import About from "../About/index" 5 | // import About2 from "../About/index" 6 | import MyNavLink from "../MyNavLink" 7 | 8 | export default class RouteLink extends Component { 9 | render() { 10 | return ( 11 |
    12 |
    13 |
    14 |
    15 |

    React Router Demo

    16 |
    17 |
    18 |
    19 |
    20 |
    21 |
    22 | {/* About 23 | Home */} 24 | {/* 属性activeClassName="active"指定高亮样式类名 */} 25 | about 26 | home 27 |
    28 |
    29 |
    30 |
    31 |
    32 | {/* switch匹配成功后停止匹配,新版本没有,自动单次匹配 */} 33 | {/* */} 34 | {/* 新版本默认是严格匹配 exact */} 35 | 36 | } /> 37 | } /> 38 | } /> 39 | {/* } /> */} 40 | 41 | {/* */} 42 |
    43 |
    44 |
    45 |
    46 |
    47 | ) 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /src/todoList/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react" 2 | import Header from "./components/Header" 3 | import List from "./components/List" 4 | import Footer from "./components/Footer" 5 | 6 | import "./app.css" 7 | 8 | class TodoList extends Component { 9 | state = { 10 | todos: [ 11 | { id: "001", name: "吃饭", done: true }, 12 | { id: "002", name: "睡觉", done: true }, 13 | { id: "003", name: "打代码", done: false }, 14 | ], 15 | } 16 | addTodo = (item) => { 17 | const { todos } = this.state 18 | const newTodos = [item, ...todos] 19 | this.setState({ 20 | todos: newTodos, 21 | }) 22 | } 23 | // 删除 24 | deleteTodo = (id) => { 25 | const { todos } = this.state 26 | const newTodos = todos.filter((item) => { 27 | return item.id !== id 28 | }) 29 | this.setState({ 30 | todos: newTodos, 31 | }) 32 | } 33 | changeCheck = ({ id, done }) => { 34 | const { todos } = this.state 35 | const newTodos = todos.map((item) => { 36 | const newItem = { ...item } 37 | if (item.id === id) { 38 | newItem.done = done 39 | } 40 | return newItem 41 | }) 42 | this.setState({ 43 | todos: newTodos, 44 | }) 45 | } 46 | // 删除已完成任务 47 | deleteDoneTodos = () => { 48 | const { todos } = this.state 49 | const newTodos = todos.filter((item) => !item.done) 50 | this.setState({ 51 | todos: newTodos, 52 | }) 53 | } 54 | // 全选事件 55 | selectAll = (done) => { 56 | const { todos } = this.state 57 | const newTodos = todos.map((item) => { 58 | const newItem = { ...item, done } 59 | 60 | return newItem 61 | }) 62 | this.setState({ 63 | todos: newTodos, 64 | }) 65 | } 66 | render() { 67 | const { todos } = this.state 68 | return ( 69 |
    70 |
    71 |
    72 |
    73 | 78 |
    84 |
    85 |
    86 | ) 87 | } 88 | } 89 | 90 | export default TodoList 91 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | /*base*/ 2 | body { 3 | background: #fff; 4 | } 5 | 6 | .btn { 7 | display: inline-block; 8 | padding: 4px 12px; 9 | margin-bottom: 0; 10 | font-size: 14px; 11 | line-height: 20px; 12 | text-align: center; 13 | vertical-align: middle; 14 | cursor: pointer; 15 | box-shadow: inset 0 1px 0 rgba(46, 18, 18, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 16 | border-radius: 4px; 17 | } 18 | 19 | .btn-danger { 20 | color: #fff; 21 | background-color: #da4f49; 22 | border: 1px solid #bd362f; 23 | } 24 | 25 | .btn-danger:hover { 26 | color: #fff; 27 | background-color: #bd362f; 28 | } 29 | 30 | .btn:focus { 31 | outline: none; 32 | } 33 | 34 | .todo-container { 35 | width: 600px; 36 | margin: 0 auto; 37 | } 38 | 39 | .todo-container .todo-wrap { 40 | padding: 10px; 41 | border: 1px solid #ddd; 42 | border-radius: 5px; 43 | } 44 | 45 | /*header*/ 46 | .todo-header input { 47 | width: 560px; 48 | height: 28px; 49 | font-size: 14px; 50 | border: 1px solid #ccc; 51 | border-radius: 4px; 52 | padding: 4px 7px; 53 | } 54 | 55 | .todo-header input:focus { 56 | outline: none; 57 | border-color: rgba(82, 168, 236, 0.8); 58 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); 59 | } 60 | 61 | /*main*/ 62 | .todo-main { 63 | margin-left: 0px; 64 | border: 1px solid #ddd; 65 | border-radius: 2px; 66 | padding: 0px; 67 | } 68 | 69 | .todo-empty { 70 | height: 40px; 71 | line-height: 40px; 72 | border: 1px solid #ddd; 73 | border-radius: 2px; 74 | padding-left: 5px; 75 | margin-top: 10px; 76 | } 77 | 78 | /*item*/ 79 | li { 80 | list-style: none; 81 | height: 36px; 82 | line-height: 36px; 83 | padding: 0 5px; 84 | border-bottom: 1px solid #ddd; 85 | } 86 | 87 | li label { 88 | float: left; 89 | cursor: pointer; 90 | } 91 | 92 | li label li input { 93 | vertical-align: middle; 94 | margin-right: 6px; 95 | position: relative; 96 | top: -1px; 97 | } 98 | 99 | li button { 100 | float: right; 101 | display: none; 102 | margin-top: 3px; 103 | } 104 | 105 | li:before { 106 | content: initial; 107 | } 108 | 109 | li:last-child { 110 | border-bottom: none; 111 | } 112 | 113 | /*footer*/ 114 | .todo-footer { 115 | height: 40px; 116 | line-height: 40px; 117 | padding-left: 6px; 118 | margin-top: 5px; 119 | } 120 | 121 | .todo-footer label { 122 | display: inline-block; 123 | margin-right: 20px; 124 | cursor: pointer; 125 | } 126 | 127 | .todo-footer label input { 128 | position: relative; 129 | top: -1px; 130 | vertical-align: middle; 131 | margin-right: 5px; 132 | } 133 | 134 | .todo-footer button { 135 | float: right; 136 | margin-top: 5px; 137 | } -------------------------------------------------------------------------------- /src/bootstrap.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.5 (http://getbootstrap.com) 3 | * Copyright 2011-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ 7 | html { 8 | font-family: sans-serif; 9 | -webkit-text-size-adjust: 100%; 10 | -ms-text-size-adjust: 100%; 11 | } 12 | 13 | body { 14 | margin: 0; 15 | } 16 | 17 | article, 18 | aside, 19 | details, 20 | figcaption, 21 | figure, 22 | footer, 23 | header, 24 | hgroup, 25 | main, 26 | menu, 27 | nav, 28 | section, 29 | summary { 30 | display: block; 31 | } 32 | 33 | audio, 34 | canvas, 35 | progress, 36 | video { 37 | display: inline-block; 38 | vertical-align: baseline; 39 | } 40 | 41 | audio:not([controls]) { 42 | display: none; 43 | height: 0; 44 | } 45 | 46 | [hidden], 47 | template { 48 | display: none; 49 | } 50 | 51 | a { 52 | background-color: transparent; 53 | } 54 | 55 | a:active, 56 | a:hover { 57 | outline: 0; 58 | } 59 | 60 | abbr[title] { 61 | border-bottom: 1px dotted; 62 | } 63 | 64 | b, 65 | strong { 66 | font-weight: bold; 67 | } 68 | 69 | dfn { 70 | font-style: italic; 71 | } 72 | 73 | h1 { 74 | margin: .67em 0; 75 | font-size: 2em; 76 | } 77 | 78 | mark { 79 | color: #000; 80 | background: #ff0; 81 | } 82 | 83 | small { 84 | font-size: 80%; 85 | } 86 | 87 | sub, 88 | sup { 89 | position: relative; 90 | font-size: 75%; 91 | line-height: 0; 92 | vertical-align: baseline; 93 | } 94 | 95 | sup { 96 | top: -.5em; 97 | } 98 | 99 | sub { 100 | bottom: -.25em; 101 | } 102 | 103 | img { 104 | border: 0; 105 | } 106 | 107 | svg:not(:root) { 108 | overflow: hidden; 109 | } 110 | 111 | figure { 112 | margin: 1em 40px; 113 | } 114 | 115 | hr { 116 | height: 0; 117 | -webkit-box-sizing: content-box; 118 | -moz-box-sizing: content-box; 119 | box-sizing: content-box; 120 | } 121 | 122 | pre { 123 | overflow: auto; 124 | } 125 | 126 | code, 127 | kbd, 128 | pre, 129 | samp { 130 | font-family: monospace, monospace; 131 | font-size: 1em; 132 | } 133 | 134 | button, 135 | input, 136 | optgroup, 137 | select, 138 | textarea { 139 | margin: 0; 140 | font: inherit; 141 | color: inherit; 142 | } 143 | 144 | button { 145 | overflow: visible; 146 | } 147 | 148 | button, 149 | select { 150 | text-transform: none; 151 | } 152 | 153 | button, 154 | html input[type="button"], 155 | input[type="reset"], 156 | input[type="submit"] { 157 | -webkit-appearance: button; 158 | cursor: pointer; 159 | } 160 | 161 | button[disabled], 162 | html input[disabled] { 163 | cursor: default; 164 | } 165 | 166 | button::-moz-focus-inner, 167 | input::-moz-focus-inner { 168 | padding: 0; 169 | border: 0; 170 | } 171 | 172 | input { 173 | line-height: normal; 174 | } 175 | 176 | input[type="checkbox"], 177 | input[type="radio"] { 178 | -webkit-box-sizing: border-box; 179 | -moz-box-sizing: border-box; 180 | box-sizing: border-box; 181 | padding: 0; 182 | } 183 | 184 | input[type="number"]::-webkit-inner-spin-button, 185 | input[type="number"]::-webkit-outer-spin-button { 186 | height: auto; 187 | } 188 | 189 | input[type="search"] { 190 | -webkit-box-sizing: content-box; 191 | -moz-box-sizing: content-box; 192 | box-sizing: content-box; 193 | -webkit-appearance: textfield; 194 | } 195 | 196 | input[type="search"]::-webkit-search-cancel-button, 197 | input[type="search"]::-webkit-search-decoration { 198 | -webkit-appearance: none; 199 | } 200 | 201 | fieldset { 202 | padding: .35em .625em .75em; 203 | margin: 0 2px; 204 | border: 1px solid #c0c0c0; 205 | } 206 | 207 | legend { 208 | padding: 0; 209 | border: 0; 210 | } 211 | 212 | textarea { 213 | overflow: auto; 214 | } 215 | 216 | optgroup { 217 | font-weight: bold; 218 | } 219 | 220 | table { 221 | border-spacing: 0; 222 | border-collapse: collapse; 223 | } 224 | 225 | td, 226 | th { 227 | padding: 0; 228 | } 229 | 230 | /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ 231 | @media print { 232 | 233 | *, 234 | *:before, 235 | *:after { 236 | color: #000 !important; 237 | text-shadow: none !important; 238 | background: transparent !important; 239 | -webkit-box-shadow: none !important; 240 | box-shadow: none !important; 241 | } 242 | 243 | a, 244 | a:visited { 245 | text-decoration: underline; 246 | } 247 | 248 | a[href]:after { 249 | content: " ("attr(href) ")"; 250 | } 251 | 252 | abbr[title]:after { 253 | content: " ("attr(title) ")"; 254 | } 255 | 256 | a[href^="#"]:after, 257 | a[href^="javascript:"]:after { 258 | content: ""; 259 | } 260 | 261 | pre, 262 | blockquote { 263 | border: 1px solid #999; 264 | 265 | page-break-inside: avoid; 266 | } 267 | 268 | thead { 269 | display: table-header-group; 270 | } 271 | 272 | tr, 273 | img { 274 | page-break-inside: avoid; 275 | } 276 | 277 | img { 278 | max-width: 100% !important; 279 | } 280 | 281 | p, 282 | h2, 283 | h3 { 284 | orphans: 3; 285 | widows: 3; 286 | } 287 | 288 | h2, 289 | h3 { 290 | page-break-after: avoid; 291 | } 292 | 293 | .navbar { 294 | display: none; 295 | } 296 | 297 | .btn>.caret, 298 | .dropup>.btn>.caret { 299 | border-top-color: #000 !important; 300 | } 301 | 302 | .label { 303 | border: 1px solid #000; 304 | } 305 | 306 | .table { 307 | border-collapse: collapse !important; 308 | } 309 | 310 | .table td, 311 | .table th { 312 | background-color: #fff !important; 313 | } 314 | 315 | .table-bordered th, 316 | .table-bordered td { 317 | border: 1px solid #ddd !important; 318 | } 319 | } 320 | 321 | /* @font-face { 322 | font-family: 'Glyphicons Halflings'; 323 | 324 | src: url('../fonts/glyphicons-halflings-regular.eot'); 325 | 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'); 326 | } */ 327 | .glyphicon { 328 | position: relative; 329 | top: 1px; 330 | display: inline-block; 331 | font-family: 'Glyphicons Halflings'; 332 | font-style: normal; 333 | font-weight: normal; 334 | line-height: 1; 335 | 336 | -webkit-font-smoothing: antialiased; 337 | -moz-osx-font-smoothing: grayscale; 338 | } 339 | 340 | .glyphicon-asterisk:before { 341 | content: "\2a"; 342 | } 343 | 344 | .glyphicon-plus:before { 345 | content: "\2b"; 346 | } 347 | 348 | .glyphicon-euro:before, 349 | .glyphicon-eur:before { 350 | content: "\20ac"; 351 | } 352 | 353 | .glyphicon-minus:before { 354 | content: "\2212"; 355 | } 356 | 357 | .glyphicon-cloud:before { 358 | content: "\2601"; 359 | } 360 | 361 | .glyphicon-envelope:before { 362 | content: "\2709"; 363 | } 364 | 365 | .glyphicon-pencil:before { 366 | content: "\270f"; 367 | } 368 | 369 | .glyphicon-glass:before { 370 | content: "\e001"; 371 | } 372 | 373 | .glyphicon-music:before { 374 | content: "\e002"; 375 | } 376 | 377 | .glyphicon-search:before { 378 | content: "\e003"; 379 | } 380 | 381 | .glyphicon-heart:before { 382 | content: "\e005"; 383 | } 384 | 385 | .glyphicon-star:before { 386 | content: "\e006"; 387 | } 388 | 389 | .glyphicon-star-empty:before { 390 | content: "\e007"; 391 | } 392 | 393 | .glyphicon-user:before { 394 | content: "\e008"; 395 | } 396 | 397 | .glyphicon-film:before { 398 | content: "\e009"; 399 | } 400 | 401 | .glyphicon-th-large:before { 402 | content: "\e010"; 403 | } 404 | 405 | .glyphicon-th:before { 406 | content: "\e011"; 407 | } 408 | 409 | .glyphicon-th-list:before { 410 | content: "\e012"; 411 | } 412 | 413 | .glyphicon-ok:before { 414 | content: "\e013"; 415 | } 416 | 417 | .glyphicon-remove:before { 418 | content: "\e014"; 419 | } 420 | 421 | .glyphicon-zoom-in:before { 422 | content: "\e015"; 423 | } 424 | 425 | .glyphicon-zoom-out:before { 426 | content: "\e016"; 427 | } 428 | 429 | .glyphicon-off:before { 430 | content: "\e017"; 431 | } 432 | 433 | .glyphicon-signal:before { 434 | content: "\e018"; 435 | } 436 | 437 | .glyphicon-cog:before { 438 | content: "\e019"; 439 | } 440 | 441 | .glyphicon-trash:before { 442 | content: "\e020"; 443 | } 444 | 445 | .glyphicon-home:before { 446 | content: "\e021"; 447 | } 448 | 449 | .glyphicon-file:before { 450 | content: "\e022"; 451 | } 452 | 453 | .glyphicon-time:before { 454 | content: "\e023"; 455 | } 456 | 457 | .glyphicon-road:before { 458 | content: "\e024"; 459 | } 460 | 461 | .glyphicon-download-alt:before { 462 | content: "\e025"; 463 | } 464 | 465 | .glyphicon-download:before { 466 | content: "\e026"; 467 | } 468 | 469 | .glyphicon-upload:before { 470 | content: "\e027"; 471 | } 472 | 473 | .glyphicon-inbox:before { 474 | content: "\e028"; 475 | } 476 | 477 | .glyphicon-play-circle:before { 478 | content: "\e029"; 479 | } 480 | 481 | .glyphicon-repeat:before { 482 | content: "\e030"; 483 | } 484 | 485 | .glyphicon-refresh:before { 486 | content: "\e031"; 487 | } 488 | 489 | .glyphicon-list-alt:before { 490 | content: "\e032"; 491 | } 492 | 493 | .glyphicon-lock:before { 494 | content: "\e033"; 495 | } 496 | 497 | .glyphicon-flag:before { 498 | content: "\e034"; 499 | } 500 | 501 | .glyphicon-headphones:before { 502 | content: "\e035"; 503 | } 504 | 505 | .glyphicon-volume-off:before { 506 | content: "\e036"; 507 | } 508 | 509 | .glyphicon-volume-down:before { 510 | content: "\e037"; 511 | } 512 | 513 | .glyphicon-volume-up:before { 514 | content: "\e038"; 515 | } 516 | 517 | .glyphicon-qrcode:before { 518 | content: "\e039"; 519 | } 520 | 521 | .glyphicon-barcode:before { 522 | content: "\e040"; 523 | } 524 | 525 | .glyphicon-tag:before { 526 | content: "\e041"; 527 | } 528 | 529 | .glyphicon-tags:before { 530 | content: "\e042"; 531 | } 532 | 533 | .glyphicon-book:before { 534 | content: "\e043"; 535 | } 536 | 537 | .glyphicon-bookmark:before { 538 | content: "\e044"; 539 | } 540 | 541 | .glyphicon-print:before { 542 | content: "\e045"; 543 | } 544 | 545 | .glyphicon-camera:before { 546 | content: "\e046"; 547 | } 548 | 549 | .glyphicon-font:before { 550 | content: "\e047"; 551 | } 552 | 553 | .glyphicon-bold:before { 554 | content: "\e048"; 555 | } 556 | 557 | .glyphicon-italic:before { 558 | content: "\e049"; 559 | } 560 | 561 | .glyphicon-text-height:before { 562 | content: "\e050"; 563 | } 564 | 565 | .glyphicon-text-width:before { 566 | content: "\e051"; 567 | } 568 | 569 | .glyphicon-align-left:before { 570 | content: "\e052"; 571 | } 572 | 573 | .glyphicon-align-center:before { 574 | content: "\e053"; 575 | } 576 | 577 | .glyphicon-align-right:before { 578 | content: "\e054"; 579 | } 580 | 581 | .glyphicon-align-justify:before { 582 | content: "\e055"; 583 | } 584 | 585 | .glyphicon-list:before { 586 | content: "\e056"; 587 | } 588 | 589 | .glyphicon-indent-left:before { 590 | content: "\e057"; 591 | } 592 | 593 | .glyphicon-indent-right:before { 594 | content: "\e058"; 595 | } 596 | 597 | .glyphicon-facetime-video:before { 598 | content: "\e059"; 599 | } 600 | 601 | .glyphicon-picture:before { 602 | content: "\e060"; 603 | } 604 | 605 | .glyphicon-map-marker:before { 606 | content: "\e062"; 607 | } 608 | 609 | .glyphicon-adjust:before { 610 | content: "\e063"; 611 | } 612 | 613 | .glyphicon-tint:before { 614 | content: "\e064"; 615 | } 616 | 617 | .glyphicon-edit:before { 618 | content: "\e065"; 619 | } 620 | 621 | .glyphicon-share:before { 622 | content: "\e066"; 623 | } 624 | 625 | .glyphicon-check:before { 626 | content: "\e067"; 627 | } 628 | 629 | .glyphicon-move:before { 630 | content: "\e068"; 631 | } 632 | 633 | .glyphicon-step-backward:before { 634 | content: "\e069"; 635 | } 636 | 637 | .glyphicon-fast-backward:before { 638 | content: "\e070"; 639 | } 640 | 641 | .glyphicon-backward:before { 642 | content: "\e071"; 643 | } 644 | 645 | .glyphicon-play:before { 646 | content: "\e072"; 647 | } 648 | 649 | .glyphicon-pause:before { 650 | content: "\e073"; 651 | } 652 | 653 | .glyphicon-stop:before { 654 | content: "\e074"; 655 | } 656 | 657 | .glyphicon-forward:before { 658 | content: "\e075"; 659 | } 660 | 661 | .glyphicon-fast-forward:before { 662 | content: "\e076"; 663 | } 664 | 665 | .glyphicon-step-forward:before { 666 | content: "\e077"; 667 | } 668 | 669 | .glyphicon-eject:before { 670 | content: "\e078"; 671 | } 672 | 673 | .glyphicon-chevron-left:before { 674 | content: "\e079"; 675 | } 676 | 677 | .glyphicon-chevron-right:before { 678 | content: "\e080"; 679 | } 680 | 681 | .glyphicon-plus-sign:before { 682 | content: "\e081"; 683 | } 684 | 685 | .glyphicon-minus-sign:before { 686 | content: "\e082"; 687 | } 688 | 689 | .glyphicon-remove-sign:before { 690 | content: "\e083"; 691 | } 692 | 693 | .glyphicon-ok-sign:before { 694 | content: "\e084"; 695 | } 696 | 697 | .glyphicon-question-sign:before { 698 | content: "\e085"; 699 | } 700 | 701 | .glyphicon-info-sign:before { 702 | content: "\e086"; 703 | } 704 | 705 | .glyphicon-screenshot:before { 706 | content: "\e087"; 707 | } 708 | 709 | .glyphicon-remove-circle:before { 710 | content: "\e088"; 711 | } 712 | 713 | .glyphicon-ok-circle:before { 714 | content: "\e089"; 715 | } 716 | 717 | .glyphicon-ban-circle:before { 718 | content: "\e090"; 719 | } 720 | 721 | .glyphicon-arrow-left:before { 722 | content: "\e091"; 723 | } 724 | 725 | .glyphicon-arrow-right:before { 726 | content: "\e092"; 727 | } 728 | 729 | .glyphicon-arrow-up:before { 730 | content: "\e093"; 731 | } 732 | 733 | .glyphicon-arrow-down:before { 734 | content: "\e094"; 735 | } 736 | 737 | .glyphicon-share-alt:before { 738 | content: "\e095"; 739 | } 740 | 741 | .glyphicon-resize-full:before { 742 | content: "\e096"; 743 | } 744 | 745 | .glyphicon-resize-small:before { 746 | content: "\e097"; 747 | } 748 | 749 | .glyphicon-exclamation-sign:before { 750 | content: "\e101"; 751 | } 752 | 753 | .glyphicon-gift:before { 754 | content: "\e102"; 755 | } 756 | 757 | .glyphicon-leaf:before { 758 | content: "\e103"; 759 | } 760 | 761 | .glyphicon-fire:before { 762 | content: "\e104"; 763 | } 764 | 765 | .glyphicon-eye-open:before { 766 | content: "\e105"; 767 | } 768 | 769 | .glyphicon-eye-close:before { 770 | content: "\e106"; 771 | } 772 | 773 | .glyphicon-warning-sign:before { 774 | content: "\e107"; 775 | } 776 | 777 | .glyphicon-plane:before { 778 | content: "\e108"; 779 | } 780 | 781 | .glyphicon-calendar:before { 782 | content: "\e109"; 783 | } 784 | 785 | .glyphicon-random:before { 786 | content: "\e110"; 787 | } 788 | 789 | .glyphicon-comment:before { 790 | content: "\e111"; 791 | } 792 | 793 | .glyphicon-magnet:before { 794 | content: "\e112"; 795 | } 796 | 797 | .glyphicon-chevron-up:before { 798 | content: "\e113"; 799 | } 800 | 801 | .glyphicon-chevron-down:before { 802 | content: "\e114"; 803 | } 804 | 805 | .glyphicon-retweet:before { 806 | content: "\e115"; 807 | } 808 | 809 | .glyphicon-shopping-cart:before { 810 | content: "\e116"; 811 | } 812 | 813 | .glyphicon-folder-close:before { 814 | content: "\e117"; 815 | } 816 | 817 | .glyphicon-folder-open:before { 818 | content: "\e118"; 819 | } 820 | 821 | .glyphicon-resize-vertical:before { 822 | content: "\e119"; 823 | } 824 | 825 | .glyphicon-resize-horizontal:before { 826 | content: "\e120"; 827 | } 828 | 829 | .glyphicon-hdd:before { 830 | content: "\e121"; 831 | } 832 | 833 | .glyphicon-bullhorn:before { 834 | content: "\e122"; 835 | } 836 | 837 | .glyphicon-bell:before { 838 | content: "\e123"; 839 | } 840 | 841 | .glyphicon-certificate:before { 842 | content: "\e124"; 843 | } 844 | 845 | .glyphicon-thumbs-up:before { 846 | content: "\e125"; 847 | } 848 | 849 | .glyphicon-thumbs-down:before { 850 | content: "\e126"; 851 | } 852 | 853 | .glyphicon-hand-right:before { 854 | content: "\e127"; 855 | } 856 | 857 | .glyphicon-hand-left:before { 858 | content: "\e128"; 859 | } 860 | 861 | .glyphicon-hand-up:before { 862 | content: "\e129"; 863 | } 864 | 865 | .glyphicon-hand-down:before { 866 | content: "\e130"; 867 | } 868 | 869 | .glyphicon-circle-arrow-right:before { 870 | content: "\e131"; 871 | } 872 | 873 | .glyphicon-circle-arrow-left:before { 874 | content: "\e132"; 875 | } 876 | 877 | .glyphicon-circle-arrow-up:before { 878 | content: "\e133"; 879 | } 880 | 881 | .glyphicon-circle-arrow-down:before { 882 | content: "\e134"; 883 | } 884 | 885 | .glyphicon-globe:before { 886 | content: "\e135"; 887 | } 888 | 889 | .glyphicon-wrench:before { 890 | content: "\e136"; 891 | } 892 | 893 | .glyphicon-tasks:before { 894 | content: "\e137"; 895 | } 896 | 897 | .glyphicon-filter:before { 898 | content: "\e138"; 899 | } 900 | 901 | .glyphicon-briefcase:before { 902 | content: "\e139"; 903 | } 904 | 905 | .glyphicon-fullscreen:before { 906 | content: "\e140"; 907 | } 908 | 909 | .glyphicon-dashboard:before { 910 | content: "\e141"; 911 | } 912 | 913 | .glyphicon-paperclip:before { 914 | content: "\e142"; 915 | } 916 | 917 | .glyphicon-heart-empty:before { 918 | content: "\e143"; 919 | } 920 | 921 | .glyphicon-link:before { 922 | content: "\e144"; 923 | } 924 | 925 | .glyphicon-phone:before { 926 | content: "\e145"; 927 | } 928 | 929 | .glyphicon-pushpin:before { 930 | content: "\e146"; 931 | } 932 | 933 | .glyphicon-usd:before { 934 | content: "\e148"; 935 | } 936 | 937 | .glyphicon-gbp:before { 938 | content: "\e149"; 939 | } 940 | 941 | .glyphicon-sort:before { 942 | content: "\e150"; 943 | } 944 | 945 | .glyphicon-sort-by-alphabet:before { 946 | content: "\e151"; 947 | } 948 | 949 | .glyphicon-sort-by-alphabet-alt:before { 950 | content: "\e152"; 951 | } 952 | 953 | .glyphicon-sort-by-order:before { 954 | content: "\e153"; 955 | } 956 | 957 | .glyphicon-sort-by-order-alt:before { 958 | content: "\e154"; 959 | } 960 | 961 | .glyphicon-sort-by-attributes:before { 962 | content: "\e155"; 963 | } 964 | 965 | .glyphicon-sort-by-attributes-alt:before { 966 | content: "\e156"; 967 | } 968 | 969 | .glyphicon-unchecked:before { 970 | content: "\e157"; 971 | } 972 | 973 | .glyphicon-expand:before { 974 | content: "\e158"; 975 | } 976 | 977 | .glyphicon-collapse-down:before { 978 | content: "\e159"; 979 | } 980 | 981 | .glyphicon-collapse-up:before { 982 | content: "\e160"; 983 | } 984 | 985 | .glyphicon-log-in:before { 986 | content: "\e161"; 987 | } 988 | 989 | .glyphicon-flash:before { 990 | content: "\e162"; 991 | } 992 | 993 | .glyphicon-log-out:before { 994 | content: "\e163"; 995 | } 996 | 997 | .glyphicon-new-window:before { 998 | content: "\e164"; 999 | } 1000 | 1001 | .glyphicon-record:before { 1002 | content: "\e165"; 1003 | } 1004 | 1005 | .glyphicon-save:before { 1006 | content: "\e166"; 1007 | } 1008 | 1009 | .glyphicon-open:before { 1010 | content: "\e167"; 1011 | } 1012 | 1013 | .glyphicon-saved:before { 1014 | content: "\e168"; 1015 | } 1016 | 1017 | .glyphicon-import:before { 1018 | content: "\e169"; 1019 | } 1020 | 1021 | .glyphicon-export:before { 1022 | content: "\e170"; 1023 | } 1024 | 1025 | .glyphicon-send:before { 1026 | content: "\e171"; 1027 | } 1028 | 1029 | .glyphicon-floppy-disk:before { 1030 | content: "\e172"; 1031 | } 1032 | 1033 | .glyphicon-floppy-saved:before { 1034 | content: "\e173"; 1035 | } 1036 | 1037 | .glyphicon-floppy-remove:before { 1038 | content: "\e174"; 1039 | } 1040 | 1041 | .glyphicon-floppy-save:before { 1042 | content: "\e175"; 1043 | } 1044 | 1045 | .glyphicon-floppy-open:before { 1046 | content: "\e176"; 1047 | } 1048 | 1049 | .glyphicon-credit-card:before { 1050 | content: "\e177"; 1051 | } 1052 | 1053 | .glyphicon-transfer:before { 1054 | content: "\e178"; 1055 | } 1056 | 1057 | .glyphicon-cutlery:before { 1058 | content: "\e179"; 1059 | } 1060 | 1061 | .glyphicon-header:before { 1062 | content: "\e180"; 1063 | } 1064 | 1065 | .glyphicon-compressed:before { 1066 | content: "\e181"; 1067 | } 1068 | 1069 | .glyphicon-earphone:before { 1070 | content: "\e182"; 1071 | } 1072 | 1073 | .glyphicon-phone-alt:before { 1074 | content: "\e183"; 1075 | } 1076 | 1077 | .glyphicon-tower:before { 1078 | content: "\e184"; 1079 | } 1080 | 1081 | .glyphicon-stats:before { 1082 | content: "\e185"; 1083 | } 1084 | 1085 | .glyphicon-sd-video:before { 1086 | content: "\e186"; 1087 | } 1088 | 1089 | .glyphicon-hd-video:before { 1090 | content: "\e187"; 1091 | } 1092 | 1093 | .glyphicon-subtitles:before { 1094 | content: "\e188"; 1095 | } 1096 | 1097 | .glyphicon-sound-stereo:before { 1098 | content: "\e189"; 1099 | } 1100 | 1101 | .glyphicon-sound-dolby:before { 1102 | content: "\e190"; 1103 | } 1104 | 1105 | .glyphicon-sound-5-1:before { 1106 | content: "\e191"; 1107 | } 1108 | 1109 | .glyphicon-sound-6-1:before { 1110 | content: "\e192"; 1111 | } 1112 | 1113 | .glyphicon-sound-7-1:before { 1114 | content: "\e193"; 1115 | } 1116 | 1117 | .glyphicon-copyright-mark:before { 1118 | content: "\e194"; 1119 | } 1120 | 1121 | .glyphicon-registration-mark:before { 1122 | content: "\e195"; 1123 | } 1124 | 1125 | .glyphicon-cloud-download:before { 1126 | content: "\e197"; 1127 | } 1128 | 1129 | .glyphicon-cloud-upload:before { 1130 | content: "\e198"; 1131 | } 1132 | 1133 | .glyphicon-tree-conifer:before { 1134 | content: "\e199"; 1135 | } 1136 | 1137 | .glyphicon-tree-deciduous:before { 1138 | content: "\e200"; 1139 | } 1140 | 1141 | .glyphicon-cd:before { 1142 | content: "\e201"; 1143 | } 1144 | 1145 | .glyphicon-save-file:before { 1146 | content: "\e202"; 1147 | } 1148 | 1149 | .glyphicon-open-file:before { 1150 | content: "\e203"; 1151 | } 1152 | 1153 | .glyphicon-level-up:before { 1154 | content: "\e204"; 1155 | } 1156 | 1157 | .glyphicon-copy:before { 1158 | content: "\e205"; 1159 | } 1160 | 1161 | .glyphicon-paste:before { 1162 | content: "\e206"; 1163 | } 1164 | 1165 | .glyphicon-alert:before { 1166 | content: "\e209"; 1167 | } 1168 | 1169 | .glyphicon-equalizer:before { 1170 | content: "\e210"; 1171 | } 1172 | 1173 | .glyphicon-king:before { 1174 | content: "\e211"; 1175 | } 1176 | 1177 | .glyphicon-queen:before { 1178 | content: "\e212"; 1179 | } 1180 | 1181 | .glyphicon-pawn:before { 1182 | content: "\e213"; 1183 | } 1184 | 1185 | .glyphicon-bishop:before { 1186 | content: "\e214"; 1187 | } 1188 | 1189 | .glyphicon-knight:before { 1190 | content: "\e215"; 1191 | } 1192 | 1193 | .glyphicon-baby-formula:before { 1194 | content: "\e216"; 1195 | } 1196 | 1197 | .glyphicon-tent:before { 1198 | content: "\26fa"; 1199 | } 1200 | 1201 | .glyphicon-blackboard:before { 1202 | content: "\e218"; 1203 | } 1204 | 1205 | .glyphicon-bed:before { 1206 | content: "\e219"; 1207 | } 1208 | 1209 | .glyphicon-apple:before { 1210 | content: "\f8ff"; 1211 | } 1212 | 1213 | .glyphicon-erase:before { 1214 | content: "\e221"; 1215 | } 1216 | 1217 | .glyphicon-hourglass:before { 1218 | content: "\231b"; 1219 | } 1220 | 1221 | .glyphicon-lamp:before { 1222 | content: "\e223"; 1223 | } 1224 | 1225 | .glyphicon-duplicate:before { 1226 | content: "\e224"; 1227 | } 1228 | 1229 | .glyphicon-piggy-bank:before { 1230 | content: "\e225"; 1231 | } 1232 | 1233 | .glyphicon-scissors:before { 1234 | content: "\e226"; 1235 | } 1236 | 1237 | .glyphicon-bitcoin:before { 1238 | content: "\e227"; 1239 | } 1240 | 1241 | .glyphicon-btc:before { 1242 | content: "\e227"; 1243 | } 1244 | 1245 | .glyphicon-xbt:before { 1246 | content: "\e227"; 1247 | } 1248 | 1249 | .glyphicon-yen:before { 1250 | content: "\00a5"; 1251 | } 1252 | 1253 | .glyphicon-jpy:before { 1254 | content: "\00a5"; 1255 | } 1256 | 1257 | .glyphicon-ruble:before { 1258 | content: "\20bd"; 1259 | } 1260 | 1261 | .glyphicon-rub:before { 1262 | content: "\20bd"; 1263 | } 1264 | 1265 | .glyphicon-scale:before { 1266 | content: "\e230"; 1267 | } 1268 | 1269 | .glyphicon-ice-lolly:before { 1270 | content: "\e231"; 1271 | } 1272 | 1273 | .glyphicon-ice-lolly-tasted:before { 1274 | content: "\e232"; 1275 | } 1276 | 1277 | .glyphicon-education:before { 1278 | content: "\e233"; 1279 | } 1280 | 1281 | .glyphicon-option-horizontal:before { 1282 | content: "\e234"; 1283 | } 1284 | 1285 | .glyphicon-option-vertical:before { 1286 | content: "\e235"; 1287 | } 1288 | 1289 | .glyphicon-menu-hamburger:before { 1290 | content: "\e236"; 1291 | } 1292 | 1293 | .glyphicon-modal-window:before { 1294 | content: "\e237"; 1295 | } 1296 | 1297 | .glyphicon-oil:before { 1298 | content: "\e238"; 1299 | } 1300 | 1301 | .glyphicon-grain:before { 1302 | content: "\e239"; 1303 | } 1304 | 1305 | .glyphicon-sunglasses:before { 1306 | content: "\e240"; 1307 | } 1308 | 1309 | .glyphicon-text-size:before { 1310 | content: "\e241"; 1311 | } 1312 | 1313 | .glyphicon-text-color:before { 1314 | content: "\e242"; 1315 | } 1316 | 1317 | .glyphicon-text-background:before { 1318 | content: "\e243"; 1319 | } 1320 | 1321 | .glyphicon-object-align-top:before { 1322 | content: "\e244"; 1323 | } 1324 | 1325 | .glyphicon-object-align-bottom:before { 1326 | content: "\e245"; 1327 | } 1328 | 1329 | .glyphicon-object-align-horizontal:before { 1330 | content: "\e246"; 1331 | } 1332 | 1333 | .glyphicon-object-align-left:before { 1334 | content: "\e247"; 1335 | } 1336 | 1337 | .glyphicon-object-align-vertical:before { 1338 | content: "\e248"; 1339 | } 1340 | 1341 | .glyphicon-object-align-right:before { 1342 | content: "\e249"; 1343 | } 1344 | 1345 | .glyphicon-triangle-right:before { 1346 | content: "\e250"; 1347 | } 1348 | 1349 | .glyphicon-triangle-left:before { 1350 | content: "\e251"; 1351 | } 1352 | 1353 | .glyphicon-triangle-bottom:before { 1354 | content: "\e252"; 1355 | } 1356 | 1357 | .glyphicon-triangle-top:before { 1358 | content: "\e253"; 1359 | } 1360 | 1361 | .glyphicon-console:before { 1362 | content: "\e254"; 1363 | } 1364 | 1365 | .glyphicon-superscript:before { 1366 | content: "\e255"; 1367 | } 1368 | 1369 | .glyphicon-subscript:before { 1370 | content: "\e256"; 1371 | } 1372 | 1373 | .glyphicon-menu-left:before { 1374 | content: "\e257"; 1375 | } 1376 | 1377 | .glyphicon-menu-right:before { 1378 | content: "\e258"; 1379 | } 1380 | 1381 | .glyphicon-menu-down:before { 1382 | content: "\e259"; 1383 | } 1384 | 1385 | .glyphicon-menu-up:before { 1386 | content: "\e260"; 1387 | } 1388 | 1389 | * { 1390 | -webkit-box-sizing: border-box; 1391 | -moz-box-sizing: border-box; 1392 | box-sizing: border-box; 1393 | } 1394 | 1395 | *:before, 1396 | *:after { 1397 | -webkit-box-sizing: border-box; 1398 | -moz-box-sizing: border-box; 1399 | box-sizing: border-box; 1400 | } 1401 | 1402 | html { 1403 | font-size: 10px; 1404 | 1405 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 1406 | } 1407 | 1408 | body { 1409 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 1410 | font-size: 14px; 1411 | line-height: 1.42857143; 1412 | color: #333; 1413 | background-color: #fff; 1414 | } 1415 | 1416 | input, 1417 | button, 1418 | select, 1419 | textarea { 1420 | font-family: inherit; 1421 | font-size: inherit; 1422 | line-height: inherit; 1423 | } 1424 | 1425 | a { 1426 | color: #337ab7; 1427 | text-decoration: none; 1428 | } 1429 | 1430 | a:hover, 1431 | a:focus { 1432 | color: #23527c; 1433 | text-decoration: underline; 1434 | } 1435 | 1436 | a:focus { 1437 | outline: thin dotted; 1438 | outline: 5px auto -webkit-focus-ring-color; 1439 | outline-offset: -2px; 1440 | } 1441 | 1442 | figure { 1443 | margin: 0; 1444 | } 1445 | 1446 | img { 1447 | vertical-align: middle; 1448 | } 1449 | 1450 | .img-responsive, 1451 | .thumbnail>img, 1452 | .thumbnail a>img, 1453 | .carousel-inner>.item>img, 1454 | .carousel-inner>.item>a>img { 1455 | display: block; 1456 | max-width: 100%; 1457 | height: auto; 1458 | } 1459 | 1460 | .img-rounded { 1461 | border-radius: 6px; 1462 | } 1463 | 1464 | .img-thumbnail { 1465 | display: inline-block; 1466 | max-width: 100%; 1467 | height: auto; 1468 | padding: 4px; 1469 | line-height: 1.42857143; 1470 | background-color: #fff; 1471 | border: 1px solid #ddd; 1472 | border-radius: 4px; 1473 | -webkit-transition: all .2s ease-in-out; 1474 | -o-transition: all .2s ease-in-out; 1475 | transition: all .2s ease-in-out; 1476 | } 1477 | 1478 | .img-circle { 1479 | border-radius: 50%; 1480 | } 1481 | 1482 | hr { 1483 | margin-top: 20px; 1484 | margin-bottom: 20px; 1485 | border: 0; 1486 | border-top: 1px solid #eee; 1487 | } 1488 | 1489 | .sr-only { 1490 | position: absolute; 1491 | width: 1px; 1492 | height: 1px; 1493 | padding: 0; 1494 | margin: -1px; 1495 | overflow: hidden; 1496 | clip: rect(0, 0, 0, 0); 1497 | border: 0; 1498 | } 1499 | 1500 | .sr-only-focusable:active, 1501 | .sr-only-focusable:focus { 1502 | position: static; 1503 | width: auto; 1504 | height: auto; 1505 | margin: 0; 1506 | overflow: visible; 1507 | clip: auto; 1508 | } 1509 | 1510 | [role="button"] { 1511 | cursor: pointer; 1512 | } 1513 | 1514 | h1, 1515 | h2, 1516 | h3, 1517 | h4, 1518 | h5, 1519 | h6, 1520 | .h1, 1521 | .h2, 1522 | .h3, 1523 | .h4, 1524 | .h5, 1525 | .h6 { 1526 | font-family: inherit; 1527 | font-weight: 500; 1528 | line-height: 1.1; 1529 | color: inherit; 1530 | } 1531 | 1532 | h1 small, 1533 | h2 small, 1534 | h3 small, 1535 | h4 small, 1536 | h5 small, 1537 | h6 small, 1538 | .h1 small, 1539 | .h2 small, 1540 | .h3 small, 1541 | .h4 small, 1542 | .h5 small, 1543 | .h6 small, 1544 | h1 .small, 1545 | h2 .small, 1546 | h3 .small, 1547 | h4 .small, 1548 | h5 .small, 1549 | h6 .small, 1550 | .h1 .small, 1551 | .h2 .small, 1552 | .h3 .small, 1553 | .h4 .small, 1554 | .h5 .small, 1555 | .h6 .small { 1556 | font-weight: normal; 1557 | line-height: 1; 1558 | color: #777; 1559 | } 1560 | 1561 | h1, 1562 | .h1, 1563 | h2, 1564 | .h2, 1565 | h3, 1566 | .h3 { 1567 | margin-top: 20px; 1568 | margin-bottom: 10px; 1569 | } 1570 | 1571 | h1 small, 1572 | .h1 small, 1573 | h2 small, 1574 | .h2 small, 1575 | h3 small, 1576 | .h3 small, 1577 | h1 .small, 1578 | .h1 .small, 1579 | h2 .small, 1580 | .h2 .small, 1581 | h3 .small, 1582 | .h3 .small { 1583 | font-size: 65%; 1584 | } 1585 | 1586 | h4, 1587 | .h4, 1588 | h5, 1589 | .h5, 1590 | h6, 1591 | .h6 { 1592 | margin-top: 10px; 1593 | margin-bottom: 10px; 1594 | } 1595 | 1596 | h4 small, 1597 | .h4 small, 1598 | h5 small, 1599 | .h5 small, 1600 | h6 small, 1601 | .h6 small, 1602 | h4 .small, 1603 | .h4 .small, 1604 | h5 .small, 1605 | .h5 .small, 1606 | h6 .small, 1607 | .h6 .small { 1608 | font-size: 75%; 1609 | } 1610 | 1611 | h1, 1612 | .h1 { 1613 | font-size: 36px; 1614 | } 1615 | 1616 | h2, 1617 | .h2 { 1618 | font-size: 30px; 1619 | } 1620 | 1621 | h3, 1622 | .h3 { 1623 | font-size: 24px; 1624 | } 1625 | 1626 | h4, 1627 | .h4 { 1628 | font-size: 18px; 1629 | } 1630 | 1631 | h5, 1632 | .h5 { 1633 | font-size: 14px; 1634 | } 1635 | 1636 | h6, 1637 | .h6 { 1638 | font-size: 12px; 1639 | } 1640 | 1641 | p { 1642 | margin: 0 0 10px; 1643 | } 1644 | 1645 | .lead { 1646 | margin-bottom: 20px; 1647 | font-size: 16px; 1648 | font-weight: 300; 1649 | line-height: 1.4; 1650 | } 1651 | 1652 | @media (min-width: 768px) { 1653 | .lead { 1654 | font-size: 21px; 1655 | } 1656 | } 1657 | 1658 | small, 1659 | .small { 1660 | font-size: 85%; 1661 | } 1662 | 1663 | mark, 1664 | .mark { 1665 | padding: .2em; 1666 | background-color: #fcf8e3; 1667 | } 1668 | 1669 | .text-left { 1670 | text-align: left; 1671 | } 1672 | 1673 | .text-right { 1674 | text-align: right; 1675 | } 1676 | 1677 | .text-center { 1678 | text-align: center; 1679 | } 1680 | 1681 | .text-justify { 1682 | text-align: justify; 1683 | } 1684 | 1685 | .text-nowrap { 1686 | white-space: nowrap; 1687 | } 1688 | 1689 | .text-lowercase { 1690 | text-transform: lowercase; 1691 | } 1692 | 1693 | .text-uppercase { 1694 | text-transform: uppercase; 1695 | } 1696 | 1697 | .text-capitalize { 1698 | text-transform: capitalize; 1699 | } 1700 | 1701 | .text-muted { 1702 | color: #777; 1703 | } 1704 | 1705 | .text-primary { 1706 | color: #337ab7; 1707 | } 1708 | 1709 | a.text-primary:hover, 1710 | a.text-primary:focus { 1711 | color: #286090; 1712 | } 1713 | 1714 | .text-success { 1715 | color: #3c763d; 1716 | } 1717 | 1718 | a.text-success:hover, 1719 | a.text-success:focus { 1720 | color: #2b542c; 1721 | } 1722 | 1723 | .text-info { 1724 | color: #31708f; 1725 | } 1726 | 1727 | a.text-info:hover, 1728 | a.text-info:focus { 1729 | color: #245269; 1730 | } 1731 | 1732 | .text-warning { 1733 | color: #8a6d3b; 1734 | } 1735 | 1736 | a.text-warning:hover, 1737 | a.text-warning:focus { 1738 | color: #66512c; 1739 | } 1740 | 1741 | .text-danger { 1742 | color: #a94442; 1743 | } 1744 | 1745 | a.text-danger:hover, 1746 | a.text-danger:focus { 1747 | color: #843534; 1748 | } 1749 | 1750 | .bg-primary { 1751 | color: #fff; 1752 | background-color: #337ab7; 1753 | } 1754 | 1755 | a.bg-primary:hover, 1756 | a.bg-primary:focus { 1757 | background-color: #286090; 1758 | } 1759 | 1760 | .bg-success { 1761 | background-color: #dff0d8; 1762 | } 1763 | 1764 | a.bg-success:hover, 1765 | a.bg-success:focus { 1766 | background-color: #c1e2b3; 1767 | } 1768 | 1769 | .bg-info { 1770 | background-color: #d9edf7; 1771 | } 1772 | 1773 | a.bg-info:hover, 1774 | a.bg-info:focus { 1775 | background-color: #afd9ee; 1776 | } 1777 | 1778 | .bg-warning { 1779 | background-color: #fcf8e3; 1780 | } 1781 | 1782 | a.bg-warning:hover, 1783 | a.bg-warning:focus { 1784 | background-color: #f7ecb5; 1785 | } 1786 | 1787 | .bg-danger { 1788 | background-color: #f2dede; 1789 | } 1790 | 1791 | a.bg-danger:hover, 1792 | a.bg-danger:focus { 1793 | background-color: #e4b9b9; 1794 | } 1795 | 1796 | .page-header { 1797 | padding-bottom: 9px; 1798 | margin: 40px 0 20px; 1799 | border-bottom: 1px solid #eee; 1800 | } 1801 | 1802 | ul, 1803 | ol { 1804 | margin-top: 0; 1805 | margin-bottom: 10px; 1806 | } 1807 | 1808 | ul ul, 1809 | ol ul, 1810 | ul ol, 1811 | ol ol { 1812 | margin-bottom: 0; 1813 | } 1814 | 1815 | .list-unstyled { 1816 | padding-left: 0; 1817 | list-style: none; 1818 | } 1819 | 1820 | .list-inline { 1821 | padding-left: 0; 1822 | margin-left: -5px; 1823 | list-style: none; 1824 | } 1825 | 1826 | .list-inline>li { 1827 | display: inline-block; 1828 | padding-right: 5px; 1829 | padding-left: 5px; 1830 | } 1831 | 1832 | dl { 1833 | margin-top: 0; 1834 | margin-bottom: 20px; 1835 | } 1836 | 1837 | dt, 1838 | dd { 1839 | line-height: 1.42857143; 1840 | } 1841 | 1842 | dt { 1843 | font-weight: bold; 1844 | } 1845 | 1846 | dd { 1847 | margin-left: 0; 1848 | } 1849 | 1850 | @media (min-width: 768px) { 1851 | .dl-horizontal dt { 1852 | float: left; 1853 | width: 160px; 1854 | overflow: hidden; 1855 | clear: left; 1856 | text-align: right; 1857 | text-overflow: ellipsis; 1858 | white-space: nowrap; 1859 | } 1860 | 1861 | .dl-horizontal dd { 1862 | margin-left: 180px; 1863 | } 1864 | } 1865 | 1866 | abbr[title], 1867 | abbr[data-original-title] { 1868 | cursor: help; 1869 | border-bottom: 1px dotted #777; 1870 | } 1871 | 1872 | .initialism { 1873 | font-size: 90%; 1874 | text-transform: uppercase; 1875 | } 1876 | 1877 | blockquote { 1878 | padding: 10px 20px; 1879 | margin: 0 0 20px; 1880 | font-size: 17.5px; 1881 | border-left: 5px solid #eee; 1882 | } 1883 | 1884 | blockquote p:last-child, 1885 | blockquote ul:last-child, 1886 | blockquote ol:last-child { 1887 | margin-bottom: 0; 1888 | } 1889 | 1890 | blockquote footer, 1891 | blockquote small, 1892 | blockquote .small { 1893 | display: block; 1894 | font-size: 80%; 1895 | line-height: 1.42857143; 1896 | color: #777; 1897 | } 1898 | 1899 | blockquote footer:before, 1900 | blockquote small:before, 1901 | blockquote .small:before { 1902 | content: '\2014 \00A0'; 1903 | } 1904 | 1905 | .blockquote-reverse, 1906 | blockquote.pull-right { 1907 | padding-right: 15px; 1908 | padding-left: 0; 1909 | text-align: right; 1910 | border-right: 5px solid #eee; 1911 | border-left: 0; 1912 | } 1913 | 1914 | .blockquote-reverse footer:before, 1915 | blockquote.pull-right footer:before, 1916 | .blockquote-reverse small:before, 1917 | blockquote.pull-right small:before, 1918 | .blockquote-reverse .small:before, 1919 | blockquote.pull-right .small:before { 1920 | content: ''; 1921 | } 1922 | 1923 | .blockquote-reverse footer:after, 1924 | blockquote.pull-right footer:after, 1925 | .blockquote-reverse small:after, 1926 | blockquote.pull-right small:after, 1927 | .blockquote-reverse .small:after, 1928 | blockquote.pull-right .small:after { 1929 | content: '\00A0 \2014'; 1930 | } 1931 | 1932 | address { 1933 | margin-bottom: 20px; 1934 | font-style: normal; 1935 | line-height: 1.42857143; 1936 | } 1937 | 1938 | code, 1939 | kbd, 1940 | pre, 1941 | samp { 1942 | font-family: Menlo, Monaco, Consolas, "Courier New", monospace; 1943 | } 1944 | 1945 | code { 1946 | padding: 2px 4px; 1947 | font-size: 90%; 1948 | color: #c7254e; 1949 | background-color: #f9f2f4; 1950 | border-radius: 4px; 1951 | } 1952 | 1953 | kbd { 1954 | padding: 2px 4px; 1955 | font-size: 90%; 1956 | color: #fff; 1957 | background-color: #333; 1958 | border-radius: 3px; 1959 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); 1960 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); 1961 | } 1962 | 1963 | kbd kbd { 1964 | padding: 0; 1965 | font-size: 100%; 1966 | font-weight: bold; 1967 | -webkit-box-shadow: none; 1968 | box-shadow: none; 1969 | } 1970 | 1971 | pre { 1972 | display: block; 1973 | padding: 9.5px; 1974 | margin: 0 0 10px; 1975 | font-size: 13px; 1976 | line-height: 1.42857143; 1977 | color: #333; 1978 | word-break: break-all; 1979 | word-wrap: break-word; 1980 | background-color: #f5f5f5; 1981 | border: 1px solid #ccc; 1982 | border-radius: 4px; 1983 | } 1984 | 1985 | pre code { 1986 | padding: 0; 1987 | font-size: inherit; 1988 | color: inherit; 1989 | white-space: pre-wrap; 1990 | background-color: transparent; 1991 | border-radius: 0; 1992 | } 1993 | 1994 | .pre-scrollable { 1995 | max-height: 340px; 1996 | overflow-y: scroll; 1997 | } 1998 | 1999 | .container { 2000 | padding-right: 15px; 2001 | padding-left: 15px; 2002 | margin-right: auto; 2003 | margin-left: auto; 2004 | } 2005 | 2006 | @media (min-width: 768px) { 2007 | .container { 2008 | width: 750px; 2009 | } 2010 | } 2011 | 2012 | @media (min-width: 992px) { 2013 | .container { 2014 | width: 970px; 2015 | } 2016 | } 2017 | 2018 | @media (min-width: 1200px) { 2019 | .container { 2020 | width: 1170px; 2021 | } 2022 | } 2023 | 2024 | .container-fluid { 2025 | padding-right: 15px; 2026 | padding-left: 15px; 2027 | margin-right: auto; 2028 | margin-left: auto; 2029 | } 2030 | 2031 | .row { 2032 | margin-right: -15px; 2033 | margin-left: -15px; 2034 | } 2035 | 2036 | .col-xs-1, 2037 | .col-sm-1, 2038 | .col-md-1, 2039 | .col-lg-1, 2040 | .col-xs-2, 2041 | .col-sm-2, 2042 | .col-md-2, 2043 | .col-lg-2, 2044 | .col-xs-3, 2045 | .col-sm-3, 2046 | .col-md-3, 2047 | .col-lg-3, 2048 | .col-xs-4, 2049 | .col-sm-4, 2050 | .col-md-4, 2051 | .col-lg-4, 2052 | .col-xs-5, 2053 | .col-sm-5, 2054 | .col-md-5, 2055 | .col-lg-5, 2056 | .col-xs-6, 2057 | .col-sm-6, 2058 | .col-md-6, 2059 | .col-lg-6, 2060 | .col-xs-7, 2061 | .col-sm-7, 2062 | .col-md-7, 2063 | .col-lg-7, 2064 | .col-xs-8, 2065 | .col-sm-8, 2066 | .col-md-8, 2067 | .col-lg-8, 2068 | .col-xs-9, 2069 | .col-sm-9, 2070 | .col-md-9, 2071 | .col-lg-9, 2072 | .col-xs-10, 2073 | .col-sm-10, 2074 | .col-md-10, 2075 | .col-lg-10, 2076 | .col-xs-11, 2077 | .col-sm-11, 2078 | .col-md-11, 2079 | .col-lg-11, 2080 | .col-xs-12, 2081 | .col-sm-12, 2082 | .col-md-12, 2083 | .col-lg-12 { 2084 | position: relative; 2085 | min-height: 1px; 2086 | padding-right: 15px; 2087 | padding-left: 15px; 2088 | } 2089 | 2090 | .col-xs-1, 2091 | .col-xs-2, 2092 | .col-xs-3, 2093 | .col-xs-4, 2094 | .col-xs-5, 2095 | .col-xs-6, 2096 | .col-xs-7, 2097 | .col-xs-8, 2098 | .col-xs-9, 2099 | .col-xs-10, 2100 | .col-xs-11, 2101 | .col-xs-12 { 2102 | float: left; 2103 | } 2104 | 2105 | .col-xs-12 { 2106 | width: 100%; 2107 | } 2108 | 2109 | .col-xs-11 { 2110 | width: 91.66666667%; 2111 | } 2112 | 2113 | .col-xs-10 { 2114 | width: 83.33333333%; 2115 | } 2116 | 2117 | .col-xs-9 { 2118 | width: 75%; 2119 | } 2120 | 2121 | .col-xs-8 { 2122 | width: 66.66666667%; 2123 | } 2124 | 2125 | .col-xs-7 { 2126 | width: 58.33333333%; 2127 | } 2128 | 2129 | .col-xs-6 { 2130 | width: 50%; 2131 | } 2132 | 2133 | .col-xs-5 { 2134 | width: 41.66666667%; 2135 | } 2136 | 2137 | .col-xs-4 { 2138 | width: 33.33333333%; 2139 | } 2140 | 2141 | .col-xs-3 { 2142 | width: 25%; 2143 | } 2144 | 2145 | .col-xs-2 { 2146 | width: 16.66666667%; 2147 | } 2148 | 2149 | .col-xs-1 { 2150 | width: 8.33333333%; 2151 | } 2152 | 2153 | .col-xs-pull-12 { 2154 | right: 100%; 2155 | } 2156 | 2157 | .col-xs-pull-11 { 2158 | right: 91.66666667%; 2159 | } 2160 | 2161 | .col-xs-pull-10 { 2162 | right: 83.33333333%; 2163 | } 2164 | 2165 | .col-xs-pull-9 { 2166 | right: 75%; 2167 | } 2168 | 2169 | .col-xs-pull-8 { 2170 | right: 66.66666667%; 2171 | } 2172 | 2173 | .col-xs-pull-7 { 2174 | right: 58.33333333%; 2175 | } 2176 | 2177 | .col-xs-pull-6 { 2178 | right: 50%; 2179 | } 2180 | 2181 | .col-xs-pull-5 { 2182 | right: 41.66666667%; 2183 | } 2184 | 2185 | .col-xs-pull-4 { 2186 | right: 33.33333333%; 2187 | } 2188 | 2189 | .col-xs-pull-3 { 2190 | right: 25%; 2191 | } 2192 | 2193 | .col-xs-pull-2 { 2194 | right: 16.66666667%; 2195 | } 2196 | 2197 | .col-xs-pull-1 { 2198 | right: 8.33333333%; 2199 | } 2200 | 2201 | .col-xs-pull-0 { 2202 | right: auto; 2203 | } 2204 | 2205 | .col-xs-push-12 { 2206 | left: 100%; 2207 | } 2208 | 2209 | .col-xs-push-11 { 2210 | left: 91.66666667%; 2211 | } 2212 | 2213 | .col-xs-push-10 { 2214 | left: 83.33333333%; 2215 | } 2216 | 2217 | .col-xs-push-9 { 2218 | left: 75%; 2219 | } 2220 | 2221 | .col-xs-push-8 { 2222 | left: 66.66666667%; 2223 | } 2224 | 2225 | .col-xs-push-7 { 2226 | left: 58.33333333%; 2227 | } 2228 | 2229 | .col-xs-push-6 { 2230 | left: 50%; 2231 | } 2232 | 2233 | .col-xs-push-5 { 2234 | left: 41.66666667%; 2235 | } 2236 | 2237 | .col-xs-push-4 { 2238 | left: 33.33333333%; 2239 | } 2240 | 2241 | .col-xs-push-3 { 2242 | left: 25%; 2243 | } 2244 | 2245 | .col-xs-push-2 { 2246 | left: 16.66666667%; 2247 | } 2248 | 2249 | .col-xs-push-1 { 2250 | left: 8.33333333%; 2251 | } 2252 | 2253 | .col-xs-push-0 { 2254 | left: auto; 2255 | } 2256 | 2257 | .col-xs-offset-12 { 2258 | margin-left: 100%; 2259 | } 2260 | 2261 | .col-xs-offset-11 { 2262 | margin-left: 91.66666667%; 2263 | } 2264 | 2265 | .col-xs-offset-10 { 2266 | margin-left: 83.33333333%; 2267 | } 2268 | 2269 | .col-xs-offset-9 { 2270 | margin-left: 75%; 2271 | } 2272 | 2273 | .col-xs-offset-8 { 2274 | margin-left: 66.66666667%; 2275 | } 2276 | 2277 | .col-xs-offset-7 { 2278 | margin-left: 58.33333333%; 2279 | } 2280 | 2281 | .col-xs-offset-6 { 2282 | margin-left: 50%; 2283 | } 2284 | 2285 | .col-xs-offset-5 { 2286 | margin-left: 41.66666667%; 2287 | } 2288 | 2289 | .col-xs-offset-4 { 2290 | margin-left: 33.33333333%; 2291 | } 2292 | 2293 | .col-xs-offset-3 { 2294 | margin-left: 25%; 2295 | } 2296 | 2297 | .col-xs-offset-2 { 2298 | margin-left: 16.66666667%; 2299 | } 2300 | 2301 | .col-xs-offset-1 { 2302 | margin-left: 8.33333333%; 2303 | } 2304 | 2305 | .col-xs-offset-0 { 2306 | margin-left: 0; 2307 | } 2308 | 2309 | @media (min-width: 768px) { 2310 | 2311 | .col-sm-1, 2312 | .col-sm-2, 2313 | .col-sm-3, 2314 | .col-sm-4, 2315 | .col-sm-5, 2316 | .col-sm-6, 2317 | .col-sm-7, 2318 | .col-sm-8, 2319 | .col-sm-9, 2320 | .col-sm-10, 2321 | .col-sm-11, 2322 | .col-sm-12 { 2323 | float: left; 2324 | } 2325 | 2326 | .col-sm-12 { 2327 | width: 100%; 2328 | } 2329 | 2330 | .col-sm-11 { 2331 | width: 91.66666667%; 2332 | } 2333 | 2334 | .col-sm-10 { 2335 | width: 83.33333333%; 2336 | } 2337 | 2338 | .col-sm-9 { 2339 | width: 75%; 2340 | } 2341 | 2342 | .col-sm-8 { 2343 | width: 66.66666667%; 2344 | } 2345 | 2346 | .col-sm-7 { 2347 | width: 58.33333333%; 2348 | } 2349 | 2350 | .col-sm-6 { 2351 | width: 50%; 2352 | } 2353 | 2354 | .col-sm-5 { 2355 | width: 41.66666667%; 2356 | } 2357 | 2358 | .col-sm-4 { 2359 | width: 33.33333333%; 2360 | } 2361 | 2362 | .col-sm-3 { 2363 | width: 25%; 2364 | } 2365 | 2366 | .col-sm-2 { 2367 | width: 16.66666667%; 2368 | } 2369 | 2370 | .col-sm-1 { 2371 | width: 8.33333333%; 2372 | } 2373 | 2374 | .col-sm-pull-12 { 2375 | right: 100%; 2376 | } 2377 | 2378 | .col-sm-pull-11 { 2379 | right: 91.66666667%; 2380 | } 2381 | 2382 | .col-sm-pull-10 { 2383 | right: 83.33333333%; 2384 | } 2385 | 2386 | .col-sm-pull-9 { 2387 | right: 75%; 2388 | } 2389 | 2390 | .col-sm-pull-8 { 2391 | right: 66.66666667%; 2392 | } 2393 | 2394 | .col-sm-pull-7 { 2395 | right: 58.33333333%; 2396 | } 2397 | 2398 | .col-sm-pull-6 { 2399 | right: 50%; 2400 | } 2401 | 2402 | .col-sm-pull-5 { 2403 | right: 41.66666667%; 2404 | } 2405 | 2406 | .col-sm-pull-4 { 2407 | right: 33.33333333%; 2408 | } 2409 | 2410 | .col-sm-pull-3 { 2411 | right: 25%; 2412 | } 2413 | 2414 | .col-sm-pull-2 { 2415 | right: 16.66666667%; 2416 | } 2417 | 2418 | .col-sm-pull-1 { 2419 | right: 8.33333333%; 2420 | } 2421 | 2422 | .col-sm-pull-0 { 2423 | right: auto; 2424 | } 2425 | 2426 | .col-sm-push-12 { 2427 | left: 100%; 2428 | } 2429 | 2430 | .col-sm-push-11 { 2431 | left: 91.66666667%; 2432 | } 2433 | 2434 | .col-sm-push-10 { 2435 | left: 83.33333333%; 2436 | } 2437 | 2438 | .col-sm-push-9 { 2439 | left: 75%; 2440 | } 2441 | 2442 | .col-sm-push-8 { 2443 | left: 66.66666667%; 2444 | } 2445 | 2446 | .col-sm-push-7 { 2447 | left: 58.33333333%; 2448 | } 2449 | 2450 | .col-sm-push-6 { 2451 | left: 50%; 2452 | } 2453 | 2454 | .col-sm-push-5 { 2455 | left: 41.66666667%; 2456 | } 2457 | 2458 | .col-sm-push-4 { 2459 | left: 33.33333333%; 2460 | } 2461 | 2462 | .col-sm-push-3 { 2463 | left: 25%; 2464 | } 2465 | 2466 | .col-sm-push-2 { 2467 | left: 16.66666667%; 2468 | } 2469 | 2470 | .col-sm-push-1 { 2471 | left: 8.33333333%; 2472 | } 2473 | 2474 | .col-sm-push-0 { 2475 | left: auto; 2476 | } 2477 | 2478 | .col-sm-offset-12 { 2479 | margin-left: 100%; 2480 | } 2481 | 2482 | .col-sm-offset-11 { 2483 | margin-left: 91.66666667%; 2484 | } 2485 | 2486 | .col-sm-offset-10 { 2487 | margin-left: 83.33333333%; 2488 | } 2489 | 2490 | .col-sm-offset-9 { 2491 | margin-left: 75%; 2492 | } 2493 | 2494 | .col-sm-offset-8 { 2495 | margin-left: 66.66666667%; 2496 | } 2497 | 2498 | .col-sm-offset-7 { 2499 | margin-left: 58.33333333%; 2500 | } 2501 | 2502 | .col-sm-offset-6 { 2503 | margin-left: 50%; 2504 | } 2505 | 2506 | .col-sm-offset-5 { 2507 | margin-left: 41.66666667%; 2508 | } 2509 | 2510 | .col-sm-offset-4 { 2511 | margin-left: 33.33333333%; 2512 | } 2513 | 2514 | .col-sm-offset-3 { 2515 | margin-left: 25%; 2516 | } 2517 | 2518 | .col-sm-offset-2 { 2519 | margin-left: 16.66666667%; 2520 | } 2521 | 2522 | .col-sm-offset-1 { 2523 | margin-left: 8.33333333%; 2524 | } 2525 | 2526 | .col-sm-offset-0 { 2527 | margin-left: 0; 2528 | } 2529 | } 2530 | 2531 | @media (min-width: 992px) { 2532 | 2533 | .col-md-1, 2534 | .col-md-2, 2535 | .col-md-3, 2536 | .col-md-4, 2537 | .col-md-5, 2538 | .col-md-6, 2539 | .col-md-7, 2540 | .col-md-8, 2541 | .col-md-9, 2542 | .col-md-10, 2543 | .col-md-11, 2544 | .col-md-12 { 2545 | float: left; 2546 | } 2547 | 2548 | .col-md-12 { 2549 | width: 100%; 2550 | } 2551 | 2552 | .col-md-11 { 2553 | width: 91.66666667%; 2554 | } 2555 | 2556 | .col-md-10 { 2557 | width: 83.33333333%; 2558 | } 2559 | 2560 | .col-md-9 { 2561 | width: 75%; 2562 | } 2563 | 2564 | .col-md-8 { 2565 | width: 66.66666667%; 2566 | } 2567 | 2568 | .col-md-7 { 2569 | width: 58.33333333%; 2570 | } 2571 | 2572 | .col-md-6 { 2573 | width: 50%; 2574 | } 2575 | 2576 | .col-md-5 { 2577 | width: 41.66666667%; 2578 | } 2579 | 2580 | .col-md-4 { 2581 | width: 33.33333333%; 2582 | } 2583 | 2584 | .col-md-3 { 2585 | width: 25%; 2586 | } 2587 | 2588 | .col-md-2 { 2589 | width: 16.66666667%; 2590 | } 2591 | 2592 | .col-md-1 { 2593 | width: 8.33333333%; 2594 | } 2595 | 2596 | .col-md-pull-12 { 2597 | right: 100%; 2598 | } 2599 | 2600 | .col-md-pull-11 { 2601 | right: 91.66666667%; 2602 | } 2603 | 2604 | .col-md-pull-10 { 2605 | right: 83.33333333%; 2606 | } 2607 | 2608 | .col-md-pull-9 { 2609 | right: 75%; 2610 | } 2611 | 2612 | .col-md-pull-8 { 2613 | right: 66.66666667%; 2614 | } 2615 | 2616 | .col-md-pull-7 { 2617 | right: 58.33333333%; 2618 | } 2619 | 2620 | .col-md-pull-6 { 2621 | right: 50%; 2622 | } 2623 | 2624 | .col-md-pull-5 { 2625 | right: 41.66666667%; 2626 | } 2627 | 2628 | .col-md-pull-4 { 2629 | right: 33.33333333%; 2630 | } 2631 | 2632 | .col-md-pull-3 { 2633 | right: 25%; 2634 | } 2635 | 2636 | .col-md-pull-2 { 2637 | right: 16.66666667%; 2638 | } 2639 | 2640 | .col-md-pull-1 { 2641 | right: 8.33333333%; 2642 | } 2643 | 2644 | .col-md-pull-0 { 2645 | right: auto; 2646 | } 2647 | 2648 | .col-md-push-12 { 2649 | left: 100%; 2650 | } 2651 | 2652 | .col-md-push-11 { 2653 | left: 91.66666667%; 2654 | } 2655 | 2656 | .col-md-push-10 { 2657 | left: 83.33333333%; 2658 | } 2659 | 2660 | .col-md-push-9 { 2661 | left: 75%; 2662 | } 2663 | 2664 | .col-md-push-8 { 2665 | left: 66.66666667%; 2666 | } 2667 | 2668 | .col-md-push-7 { 2669 | left: 58.33333333%; 2670 | } 2671 | 2672 | .col-md-push-6 { 2673 | left: 50%; 2674 | } 2675 | 2676 | .col-md-push-5 { 2677 | left: 41.66666667%; 2678 | } 2679 | 2680 | .col-md-push-4 { 2681 | left: 33.33333333%; 2682 | } 2683 | 2684 | .col-md-push-3 { 2685 | left: 25%; 2686 | } 2687 | 2688 | .col-md-push-2 { 2689 | left: 16.66666667%; 2690 | } 2691 | 2692 | .col-md-push-1 { 2693 | left: 8.33333333%; 2694 | } 2695 | 2696 | .col-md-push-0 { 2697 | left: auto; 2698 | } 2699 | 2700 | .col-md-offset-12 { 2701 | margin-left: 100%; 2702 | } 2703 | 2704 | .col-md-offset-11 { 2705 | margin-left: 91.66666667%; 2706 | } 2707 | 2708 | .col-md-offset-10 { 2709 | margin-left: 83.33333333%; 2710 | } 2711 | 2712 | .col-md-offset-9 { 2713 | margin-left: 75%; 2714 | } 2715 | 2716 | .col-md-offset-8 { 2717 | margin-left: 66.66666667%; 2718 | } 2719 | 2720 | .col-md-offset-7 { 2721 | margin-left: 58.33333333%; 2722 | } 2723 | 2724 | .col-md-offset-6 { 2725 | margin-left: 50%; 2726 | } 2727 | 2728 | .col-md-offset-5 { 2729 | margin-left: 41.66666667%; 2730 | } 2731 | 2732 | .col-md-offset-4 { 2733 | margin-left: 33.33333333%; 2734 | } 2735 | 2736 | .col-md-offset-3 { 2737 | margin-left: 25%; 2738 | } 2739 | 2740 | .col-md-offset-2 { 2741 | margin-left: 16.66666667%; 2742 | } 2743 | 2744 | .col-md-offset-1 { 2745 | margin-left: 8.33333333%; 2746 | } 2747 | 2748 | .col-md-offset-0 { 2749 | margin-left: 0; 2750 | } 2751 | } 2752 | 2753 | @media (min-width: 1200px) { 2754 | 2755 | .col-lg-1, 2756 | .col-lg-2, 2757 | .col-lg-3, 2758 | .col-lg-4, 2759 | .col-lg-5, 2760 | .col-lg-6, 2761 | .col-lg-7, 2762 | .col-lg-8, 2763 | .col-lg-9, 2764 | .col-lg-10, 2765 | .col-lg-11, 2766 | .col-lg-12 { 2767 | float: left; 2768 | } 2769 | 2770 | .col-lg-12 { 2771 | width: 100%; 2772 | } 2773 | 2774 | .col-lg-11 { 2775 | width: 91.66666667%; 2776 | } 2777 | 2778 | .col-lg-10 { 2779 | width: 83.33333333%; 2780 | } 2781 | 2782 | .col-lg-9 { 2783 | width: 75%; 2784 | } 2785 | 2786 | .col-lg-8 { 2787 | width: 66.66666667%; 2788 | } 2789 | 2790 | .col-lg-7 { 2791 | width: 58.33333333%; 2792 | } 2793 | 2794 | .col-lg-6 { 2795 | width: 50%; 2796 | } 2797 | 2798 | .col-lg-5 { 2799 | width: 41.66666667%; 2800 | } 2801 | 2802 | .col-lg-4 { 2803 | width: 33.33333333%; 2804 | } 2805 | 2806 | .col-lg-3 { 2807 | width: 25%; 2808 | } 2809 | 2810 | .col-lg-2 { 2811 | width: 16.66666667%; 2812 | } 2813 | 2814 | .col-lg-1 { 2815 | width: 8.33333333%; 2816 | } 2817 | 2818 | .col-lg-pull-12 { 2819 | right: 100%; 2820 | } 2821 | 2822 | .col-lg-pull-11 { 2823 | right: 91.66666667%; 2824 | } 2825 | 2826 | .col-lg-pull-10 { 2827 | right: 83.33333333%; 2828 | } 2829 | 2830 | .col-lg-pull-9 { 2831 | right: 75%; 2832 | } 2833 | 2834 | .col-lg-pull-8 { 2835 | right: 66.66666667%; 2836 | } 2837 | 2838 | .col-lg-pull-7 { 2839 | right: 58.33333333%; 2840 | } 2841 | 2842 | .col-lg-pull-6 { 2843 | right: 50%; 2844 | } 2845 | 2846 | .col-lg-pull-5 { 2847 | right: 41.66666667%; 2848 | } 2849 | 2850 | .col-lg-pull-4 { 2851 | right: 33.33333333%; 2852 | } 2853 | 2854 | .col-lg-pull-3 { 2855 | right: 25%; 2856 | } 2857 | 2858 | .col-lg-pull-2 { 2859 | right: 16.66666667%; 2860 | } 2861 | 2862 | .col-lg-pull-1 { 2863 | right: 8.33333333%; 2864 | } 2865 | 2866 | .col-lg-pull-0 { 2867 | right: auto; 2868 | } 2869 | 2870 | .col-lg-push-12 { 2871 | left: 100%; 2872 | } 2873 | 2874 | .col-lg-push-11 { 2875 | left: 91.66666667%; 2876 | } 2877 | 2878 | .col-lg-push-10 { 2879 | left: 83.33333333%; 2880 | } 2881 | 2882 | .col-lg-push-9 { 2883 | left: 75%; 2884 | } 2885 | 2886 | .col-lg-push-8 { 2887 | left: 66.66666667%; 2888 | } 2889 | 2890 | .col-lg-push-7 { 2891 | left: 58.33333333%; 2892 | } 2893 | 2894 | .col-lg-push-6 { 2895 | left: 50%; 2896 | } 2897 | 2898 | .col-lg-push-5 { 2899 | left: 41.66666667%; 2900 | } 2901 | 2902 | .col-lg-push-4 { 2903 | left: 33.33333333%; 2904 | } 2905 | 2906 | .col-lg-push-3 { 2907 | left: 25%; 2908 | } 2909 | 2910 | .col-lg-push-2 { 2911 | left: 16.66666667%; 2912 | } 2913 | 2914 | .col-lg-push-1 { 2915 | left: 8.33333333%; 2916 | } 2917 | 2918 | .col-lg-push-0 { 2919 | left: auto; 2920 | } 2921 | 2922 | .col-lg-offset-12 { 2923 | margin-left: 100%; 2924 | } 2925 | 2926 | .col-lg-offset-11 { 2927 | margin-left: 91.66666667%; 2928 | } 2929 | 2930 | .col-lg-offset-10 { 2931 | margin-left: 83.33333333%; 2932 | } 2933 | 2934 | .col-lg-offset-9 { 2935 | margin-left: 75%; 2936 | } 2937 | 2938 | .col-lg-offset-8 { 2939 | margin-left: 66.66666667%; 2940 | } 2941 | 2942 | .col-lg-offset-7 { 2943 | margin-left: 58.33333333%; 2944 | } 2945 | 2946 | .col-lg-offset-6 { 2947 | margin-left: 50%; 2948 | } 2949 | 2950 | .col-lg-offset-5 { 2951 | margin-left: 41.66666667%; 2952 | } 2953 | 2954 | .col-lg-offset-4 { 2955 | margin-left: 33.33333333%; 2956 | } 2957 | 2958 | .col-lg-offset-3 { 2959 | margin-left: 25%; 2960 | } 2961 | 2962 | .col-lg-offset-2 { 2963 | margin-left: 16.66666667%; 2964 | } 2965 | 2966 | .col-lg-offset-1 { 2967 | margin-left: 8.33333333%; 2968 | } 2969 | 2970 | .col-lg-offset-0 { 2971 | margin-left: 0; 2972 | } 2973 | } 2974 | 2975 | table { 2976 | background-color: transparent; 2977 | } 2978 | 2979 | caption { 2980 | padding-top: 8px; 2981 | padding-bottom: 8px; 2982 | color: #777; 2983 | text-align: left; 2984 | } 2985 | 2986 | th { 2987 | text-align: left; 2988 | } 2989 | 2990 | .table { 2991 | width: 100%; 2992 | max-width: 100%; 2993 | margin-bottom: 20px; 2994 | } 2995 | 2996 | .table>thead>tr>th, 2997 | .table>tbody>tr>th, 2998 | .table>tfoot>tr>th, 2999 | .table>thead>tr>td, 3000 | .table>tbody>tr>td, 3001 | .table>tfoot>tr>td { 3002 | padding: 8px; 3003 | line-height: 1.42857143; 3004 | vertical-align: top; 3005 | border-top: 1px solid #ddd; 3006 | } 3007 | 3008 | .table>thead>tr>th { 3009 | vertical-align: bottom; 3010 | border-bottom: 2px solid #ddd; 3011 | } 3012 | 3013 | .table>caption+thead>tr:first-child>th, 3014 | .table>colgroup+thead>tr:first-child>th, 3015 | .table>thead:first-child>tr:first-child>th, 3016 | .table>caption+thead>tr:first-child>td, 3017 | .table>colgroup+thead>tr:first-child>td, 3018 | .table>thead:first-child>tr:first-child>td { 3019 | border-top: 0; 3020 | } 3021 | 3022 | .table>tbody+tbody { 3023 | border-top: 2px solid #ddd; 3024 | } 3025 | 3026 | .table .table { 3027 | background-color: #fff; 3028 | } 3029 | 3030 | .table-condensed>thead>tr>th, 3031 | .table-condensed>tbody>tr>th, 3032 | .table-condensed>tfoot>tr>th, 3033 | .table-condensed>thead>tr>td, 3034 | .table-condensed>tbody>tr>td, 3035 | .table-condensed>tfoot>tr>td { 3036 | padding: 5px; 3037 | } 3038 | 3039 | .table-bordered { 3040 | border: 1px solid #ddd; 3041 | } 3042 | 3043 | .table-bordered>thead>tr>th, 3044 | .table-bordered>tbody>tr>th, 3045 | .table-bordered>tfoot>tr>th, 3046 | .table-bordered>thead>tr>td, 3047 | .table-bordered>tbody>tr>td, 3048 | .table-bordered>tfoot>tr>td { 3049 | border: 1px solid #ddd; 3050 | } 3051 | 3052 | .table-bordered>thead>tr>th, 3053 | .table-bordered>thead>tr>td { 3054 | border-bottom-width: 2px; 3055 | } 3056 | 3057 | .table-striped>tbody>tr:nth-of-type(odd) { 3058 | background-color: #f9f9f9; 3059 | } 3060 | 3061 | .table-hover>tbody>tr:hover { 3062 | background-color: #f5f5f5; 3063 | } 3064 | 3065 | table col[class*="col-"] { 3066 | position: static; 3067 | display: table-column; 3068 | float: none; 3069 | } 3070 | 3071 | table td[class*="col-"], 3072 | table th[class*="col-"] { 3073 | position: static; 3074 | display: table-cell; 3075 | float: none; 3076 | } 3077 | 3078 | .table>thead>tr>td.active, 3079 | .table>tbody>tr>td.active, 3080 | .table>tfoot>tr>td.active, 3081 | .table>thead>tr>th.active, 3082 | .table>tbody>tr>th.active, 3083 | .table>tfoot>tr>th.active, 3084 | .table>thead>tr.active>td, 3085 | .table>tbody>tr.active>td, 3086 | .table>tfoot>tr.active>td, 3087 | .table>thead>tr.active>th, 3088 | .table>tbody>tr.active>th, 3089 | .table>tfoot>tr.active>th { 3090 | background-color: #f5f5f5; 3091 | } 3092 | 3093 | .table-hover>tbody>tr>td.active:hover, 3094 | .table-hover>tbody>tr>th.active:hover, 3095 | .table-hover>tbody>tr.active:hover>td, 3096 | .table-hover>tbody>tr:hover>.active, 3097 | .table-hover>tbody>tr.active:hover>th { 3098 | background-color: #e8e8e8; 3099 | } 3100 | 3101 | .table>thead>tr>td.success, 3102 | .table>tbody>tr>td.success, 3103 | .table>tfoot>tr>td.success, 3104 | .table>thead>tr>th.success, 3105 | .table>tbody>tr>th.success, 3106 | .table>tfoot>tr>th.success, 3107 | .table>thead>tr.success>td, 3108 | .table>tbody>tr.success>td, 3109 | .table>tfoot>tr.success>td, 3110 | .table>thead>tr.success>th, 3111 | .table>tbody>tr.success>th, 3112 | .table>tfoot>tr.success>th { 3113 | background-color: #dff0d8; 3114 | } 3115 | 3116 | .table-hover>tbody>tr>td.success:hover, 3117 | .table-hover>tbody>tr>th.success:hover, 3118 | .table-hover>tbody>tr.success:hover>td, 3119 | .table-hover>tbody>tr:hover>.success, 3120 | .table-hover>tbody>tr.success:hover>th { 3121 | background-color: #d0e9c6; 3122 | } 3123 | 3124 | .table>thead>tr>td.info, 3125 | .table>tbody>tr>td.info, 3126 | .table>tfoot>tr>td.info, 3127 | .table>thead>tr>th.info, 3128 | .table>tbody>tr>th.info, 3129 | .table>tfoot>tr>th.info, 3130 | .table>thead>tr.info>td, 3131 | .table>tbody>tr.info>td, 3132 | .table>tfoot>tr.info>td, 3133 | .table>thead>tr.info>th, 3134 | .table>tbody>tr.info>th, 3135 | .table>tfoot>tr.info>th { 3136 | background-color: #d9edf7; 3137 | } 3138 | 3139 | .table-hover>tbody>tr>td.info:hover, 3140 | .table-hover>tbody>tr>th.info:hover, 3141 | .table-hover>tbody>tr.info:hover>td, 3142 | .table-hover>tbody>tr:hover>.info, 3143 | .table-hover>tbody>tr.info:hover>th { 3144 | background-color: #c4e3f3; 3145 | } 3146 | 3147 | .table>thead>tr>td.warning, 3148 | .table>tbody>tr>td.warning, 3149 | .table>tfoot>tr>td.warning, 3150 | .table>thead>tr>th.warning, 3151 | .table>tbody>tr>th.warning, 3152 | .table>tfoot>tr>th.warning, 3153 | .table>thead>tr.warning>td, 3154 | .table>tbody>tr.warning>td, 3155 | .table>tfoot>tr.warning>td, 3156 | .table>thead>tr.warning>th, 3157 | .table>tbody>tr.warning>th, 3158 | .table>tfoot>tr.warning>th { 3159 | background-color: #fcf8e3; 3160 | } 3161 | 3162 | .table-hover>tbody>tr>td.warning:hover, 3163 | .table-hover>tbody>tr>th.warning:hover, 3164 | .table-hover>tbody>tr.warning:hover>td, 3165 | .table-hover>tbody>tr:hover>.warning, 3166 | .table-hover>tbody>tr.warning:hover>th { 3167 | background-color: #faf2cc; 3168 | } 3169 | 3170 | .table>thead>tr>td.danger, 3171 | .table>tbody>tr>td.danger, 3172 | .table>tfoot>tr>td.danger, 3173 | .table>thead>tr>th.danger, 3174 | .table>tbody>tr>th.danger, 3175 | .table>tfoot>tr>th.danger, 3176 | .table>thead>tr.danger>td, 3177 | .table>tbody>tr.danger>td, 3178 | .table>tfoot>tr.danger>td, 3179 | .table>thead>tr.danger>th, 3180 | .table>tbody>tr.danger>th, 3181 | .table>tfoot>tr.danger>th { 3182 | background-color: #f2dede; 3183 | } 3184 | 3185 | .table-hover>tbody>tr>td.danger:hover, 3186 | .table-hover>tbody>tr>th.danger:hover, 3187 | .table-hover>tbody>tr.danger:hover>td, 3188 | .table-hover>tbody>tr:hover>.danger, 3189 | .table-hover>tbody>tr.danger:hover>th { 3190 | background-color: #ebcccc; 3191 | } 3192 | 3193 | .table-responsive { 3194 | min-height: .01%; 3195 | overflow-x: auto; 3196 | } 3197 | 3198 | @media screen and (max-width: 767px) { 3199 | .table-responsive { 3200 | width: 100%; 3201 | margin-bottom: 15px; 3202 | overflow-y: hidden; 3203 | -ms-overflow-style: -ms-autohiding-scrollbar; 3204 | border: 1px solid #ddd; 3205 | } 3206 | 3207 | .table-responsive>.table { 3208 | margin-bottom: 0; 3209 | } 3210 | 3211 | .table-responsive>.table>thead>tr>th, 3212 | .table-responsive>.table>tbody>tr>th, 3213 | .table-responsive>.table>tfoot>tr>th, 3214 | .table-responsive>.table>thead>tr>td, 3215 | .table-responsive>.table>tbody>tr>td, 3216 | .table-responsive>.table>tfoot>tr>td { 3217 | white-space: nowrap; 3218 | } 3219 | 3220 | .table-responsive>.table-bordered { 3221 | border: 0; 3222 | } 3223 | 3224 | .table-responsive>.table-bordered>thead>tr>th:first-child, 3225 | .table-responsive>.table-bordered>tbody>tr>th:first-child, 3226 | .table-responsive>.table-bordered>tfoot>tr>th:first-child, 3227 | .table-responsive>.table-bordered>thead>tr>td:first-child, 3228 | .table-responsive>.table-bordered>tbody>tr>td:first-child, 3229 | .table-responsive>.table-bordered>tfoot>tr>td:first-child { 3230 | border-left: 0; 3231 | } 3232 | 3233 | .table-responsive>.table-bordered>thead>tr>th:last-child, 3234 | .table-responsive>.table-bordered>tbody>tr>th:last-child, 3235 | .table-responsive>.table-bordered>tfoot>tr>th:last-child, 3236 | .table-responsive>.table-bordered>thead>tr>td:last-child, 3237 | .table-responsive>.table-bordered>tbody>tr>td:last-child, 3238 | .table-responsive>.table-bordered>tfoot>tr>td:last-child { 3239 | border-right: 0; 3240 | } 3241 | 3242 | .table-responsive>.table-bordered>tbody>tr:last-child>th, 3243 | .table-responsive>.table-bordered>tfoot>tr:last-child>th, 3244 | .table-responsive>.table-bordered>tbody>tr:last-child>td, 3245 | .table-responsive>.table-bordered>tfoot>tr:last-child>td { 3246 | border-bottom: 0; 3247 | } 3248 | } 3249 | 3250 | fieldset { 3251 | min-width: 0; 3252 | padding: 0; 3253 | margin: 0; 3254 | border: 0; 3255 | } 3256 | 3257 | legend { 3258 | display: block; 3259 | width: 100%; 3260 | padding: 0; 3261 | margin-bottom: 20px; 3262 | font-size: 21px; 3263 | line-height: inherit; 3264 | color: #333; 3265 | border: 0; 3266 | border-bottom: 1px solid #e5e5e5; 3267 | } 3268 | 3269 | label { 3270 | display: inline-block; 3271 | max-width: 100%; 3272 | margin-bottom: 5px; 3273 | font-weight: bold; 3274 | } 3275 | 3276 | input[type="search"] { 3277 | -webkit-box-sizing: border-box; 3278 | -moz-box-sizing: border-box; 3279 | box-sizing: border-box; 3280 | } 3281 | 3282 | input[type="radio"], 3283 | input[type="checkbox"] { 3284 | margin: 4px 0 0; 3285 | margin-top: 1px \9; 3286 | line-height: normal; 3287 | } 3288 | 3289 | input[type="file"] { 3290 | display: block; 3291 | } 3292 | 3293 | input[type="range"] { 3294 | display: block; 3295 | width: 100%; 3296 | } 3297 | 3298 | select[multiple], 3299 | select[size] { 3300 | height: auto; 3301 | } 3302 | 3303 | input[type="file"]:focus, 3304 | input[type="radio"]:focus, 3305 | input[type="checkbox"]:focus { 3306 | outline: thin dotted; 3307 | outline: 5px auto -webkit-focus-ring-color; 3308 | outline-offset: -2px; 3309 | } 3310 | 3311 | output { 3312 | display: block; 3313 | padding-top: 7px; 3314 | font-size: 14px; 3315 | line-height: 1.42857143; 3316 | color: #555; 3317 | } 3318 | 3319 | .form-control { 3320 | display: block; 3321 | width: 100%; 3322 | height: 34px; 3323 | padding: 6px 12px; 3324 | font-size: 14px; 3325 | line-height: 1.42857143; 3326 | color: #555; 3327 | background-color: #fff; 3328 | background-image: none; 3329 | border: 1px solid #ccc; 3330 | border-radius: 4px; 3331 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 3332 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 3333 | -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; 3334 | -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 3335 | transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 3336 | } 3337 | 3338 | .form-control:focus { 3339 | border-color: #66afe9; 3340 | outline: 0; 3341 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6); 3342 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6); 3343 | } 3344 | 3345 | .form-control::-moz-placeholder { 3346 | color: #999; 3347 | opacity: 1; 3348 | } 3349 | 3350 | .form-control:-ms-input-placeholder { 3351 | color: #999; 3352 | } 3353 | 3354 | .form-control::-webkit-input-placeholder { 3355 | color: #999; 3356 | } 3357 | 3358 | .form-control[disabled], 3359 | .form-control[readonly], 3360 | fieldset[disabled] .form-control { 3361 | background-color: #eee; 3362 | opacity: 1; 3363 | } 3364 | 3365 | .form-control[disabled], 3366 | fieldset[disabled] .form-control { 3367 | cursor: not-allowed; 3368 | } 3369 | 3370 | textarea.form-control { 3371 | height: auto; 3372 | } 3373 | 3374 | input[type="search"] { 3375 | -webkit-appearance: none; 3376 | } 3377 | 3378 | @media screen and (-webkit-min-device-pixel-ratio: 0) { 3379 | 3380 | input[type="date"].form-control, 3381 | input[type="time"].form-control, 3382 | input[type="datetime-local"].form-control, 3383 | input[type="month"].form-control { 3384 | line-height: 34px; 3385 | } 3386 | 3387 | input[type="date"].input-sm, 3388 | input[type="time"].input-sm, 3389 | input[type="datetime-local"].input-sm, 3390 | input[type="month"].input-sm, 3391 | .input-group-sm input[type="date"], 3392 | .input-group-sm input[type="time"], 3393 | .input-group-sm input[type="datetime-local"], 3394 | .input-group-sm input[type="month"] { 3395 | line-height: 30px; 3396 | } 3397 | 3398 | input[type="date"].input-lg, 3399 | input[type="time"].input-lg, 3400 | input[type="datetime-local"].input-lg, 3401 | input[type="month"].input-lg, 3402 | .input-group-lg input[type="date"], 3403 | .input-group-lg input[type="time"], 3404 | .input-group-lg input[type="datetime-local"], 3405 | .input-group-lg input[type="month"] { 3406 | line-height: 46px; 3407 | } 3408 | } 3409 | 3410 | .form-group { 3411 | margin-bottom: 15px; 3412 | } 3413 | 3414 | .radio, 3415 | .checkbox { 3416 | position: relative; 3417 | display: block; 3418 | margin-top: 10px; 3419 | margin-bottom: 10px; 3420 | } 3421 | 3422 | .radio label, 3423 | .checkbox label { 3424 | min-height: 20px; 3425 | padding-left: 20px; 3426 | margin-bottom: 0; 3427 | font-weight: normal; 3428 | cursor: pointer; 3429 | } 3430 | 3431 | .radio input[type="radio"], 3432 | .radio-inline input[type="radio"], 3433 | .checkbox input[type="checkbox"], 3434 | .checkbox-inline input[type="checkbox"] { 3435 | position: absolute; 3436 | margin-top: 4px \9; 3437 | margin-left: -20px; 3438 | } 3439 | 3440 | .radio+.radio, 3441 | .checkbox+.checkbox { 3442 | margin-top: -5px; 3443 | } 3444 | 3445 | .radio-inline, 3446 | .checkbox-inline { 3447 | position: relative; 3448 | display: inline-block; 3449 | padding-left: 20px; 3450 | margin-bottom: 0; 3451 | font-weight: normal; 3452 | vertical-align: middle; 3453 | cursor: pointer; 3454 | } 3455 | 3456 | .radio-inline+.radio-inline, 3457 | .checkbox-inline+.checkbox-inline { 3458 | margin-top: 0; 3459 | margin-left: 10px; 3460 | } 3461 | 3462 | input[type="radio"][disabled], 3463 | input[type="checkbox"][disabled], 3464 | input[type="radio"].disabled, 3465 | input[type="checkbox"].disabled, 3466 | fieldset[disabled] input[type="radio"], 3467 | fieldset[disabled] input[type="checkbox"] { 3468 | cursor: not-allowed; 3469 | } 3470 | 3471 | .radio-inline.disabled, 3472 | .checkbox-inline.disabled, 3473 | fieldset[disabled] .radio-inline, 3474 | fieldset[disabled] .checkbox-inline { 3475 | cursor: not-allowed; 3476 | } 3477 | 3478 | .radio.disabled label, 3479 | .checkbox.disabled label, 3480 | fieldset[disabled] .radio label, 3481 | fieldset[disabled] .checkbox label { 3482 | cursor: not-allowed; 3483 | } 3484 | 3485 | .form-control-static { 3486 | min-height: 34px; 3487 | padding-top: 7px; 3488 | padding-bottom: 7px; 3489 | margin-bottom: 0; 3490 | } 3491 | 3492 | .form-control-static.input-lg, 3493 | .form-control-static.input-sm { 3494 | padding-right: 0; 3495 | padding-left: 0; 3496 | } 3497 | 3498 | .input-sm { 3499 | height: 30px; 3500 | padding: 5px 10px; 3501 | font-size: 12px; 3502 | line-height: 1.5; 3503 | border-radius: 3px; 3504 | } 3505 | 3506 | select.input-sm { 3507 | height: 30px; 3508 | line-height: 30px; 3509 | } 3510 | 3511 | textarea.input-sm, 3512 | select[multiple].input-sm { 3513 | height: auto; 3514 | } 3515 | 3516 | .form-group-sm .form-control { 3517 | height: 30px; 3518 | padding: 5px 10px; 3519 | font-size: 12px; 3520 | line-height: 1.5; 3521 | border-radius: 3px; 3522 | } 3523 | 3524 | .form-group-sm select.form-control { 3525 | height: 30px; 3526 | line-height: 30px; 3527 | } 3528 | 3529 | .form-group-sm textarea.form-control, 3530 | .form-group-sm select[multiple].form-control { 3531 | height: auto; 3532 | } 3533 | 3534 | .form-group-sm .form-control-static { 3535 | height: 30px; 3536 | min-height: 32px; 3537 | padding: 6px 10px; 3538 | font-size: 12px; 3539 | line-height: 1.5; 3540 | } 3541 | 3542 | .input-lg { 3543 | height: 46px; 3544 | padding: 10px 16px; 3545 | font-size: 18px; 3546 | line-height: 1.3333333; 3547 | border-radius: 6px; 3548 | } 3549 | 3550 | select.input-lg { 3551 | height: 46px; 3552 | line-height: 46px; 3553 | } 3554 | 3555 | textarea.input-lg, 3556 | select[multiple].input-lg { 3557 | height: auto; 3558 | } 3559 | 3560 | .form-group-lg .form-control { 3561 | height: 46px; 3562 | padding: 10px 16px; 3563 | font-size: 18px; 3564 | line-height: 1.3333333; 3565 | border-radius: 6px; 3566 | } 3567 | 3568 | .form-group-lg select.form-control { 3569 | height: 46px; 3570 | line-height: 46px; 3571 | } 3572 | 3573 | .form-group-lg textarea.form-control, 3574 | .form-group-lg select[multiple].form-control { 3575 | height: auto; 3576 | } 3577 | 3578 | .form-group-lg .form-control-static { 3579 | height: 46px; 3580 | min-height: 38px; 3581 | padding: 11px 16px; 3582 | font-size: 18px; 3583 | line-height: 1.3333333; 3584 | } 3585 | 3586 | .has-feedback { 3587 | position: relative; 3588 | } 3589 | 3590 | .has-feedback .form-control { 3591 | padding-right: 42.5px; 3592 | } 3593 | 3594 | .form-control-feedback { 3595 | position: absolute; 3596 | top: 0; 3597 | right: 0; 3598 | z-index: 2; 3599 | display: block; 3600 | width: 34px; 3601 | height: 34px; 3602 | line-height: 34px; 3603 | text-align: center; 3604 | pointer-events: none; 3605 | } 3606 | 3607 | .input-lg+.form-control-feedback, 3608 | .input-group-lg+.form-control-feedback, 3609 | .form-group-lg .form-control+.form-control-feedback { 3610 | width: 46px; 3611 | height: 46px; 3612 | line-height: 46px; 3613 | } 3614 | 3615 | .input-sm+.form-control-feedback, 3616 | .input-group-sm+.form-control-feedback, 3617 | .form-group-sm .form-control+.form-control-feedback { 3618 | width: 30px; 3619 | height: 30px; 3620 | line-height: 30px; 3621 | } 3622 | 3623 | .has-success .help-block, 3624 | .has-success .control-label, 3625 | .has-success .radio, 3626 | .has-success .checkbox, 3627 | .has-success .radio-inline, 3628 | .has-success .checkbox-inline, 3629 | .has-success.radio label, 3630 | .has-success.checkbox label, 3631 | .has-success.radio-inline label, 3632 | .has-success.checkbox-inline label { 3633 | color: #3c763d; 3634 | } 3635 | 3636 | .has-success .form-control { 3637 | border-color: #3c763d; 3638 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 3639 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 3640 | } 3641 | 3642 | .has-success .form-control:focus { 3643 | border-color: #2b542c; 3644 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; 3645 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; 3646 | } 3647 | 3648 | .has-success .input-group-addon { 3649 | color: #3c763d; 3650 | background-color: #dff0d8; 3651 | border-color: #3c763d; 3652 | } 3653 | 3654 | .has-success .form-control-feedback { 3655 | color: #3c763d; 3656 | } 3657 | 3658 | .has-warning .help-block, 3659 | .has-warning .control-label, 3660 | .has-warning .radio, 3661 | .has-warning .checkbox, 3662 | .has-warning .radio-inline, 3663 | .has-warning .checkbox-inline, 3664 | .has-warning.radio label, 3665 | .has-warning.checkbox label, 3666 | .has-warning.radio-inline label, 3667 | .has-warning.checkbox-inline label { 3668 | color: #8a6d3b; 3669 | } 3670 | 3671 | .has-warning .form-control { 3672 | border-color: #8a6d3b; 3673 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 3674 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 3675 | } 3676 | 3677 | .has-warning .form-control:focus { 3678 | border-color: #66512c; 3679 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; 3680 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; 3681 | } 3682 | 3683 | .has-warning .input-group-addon { 3684 | color: #8a6d3b; 3685 | background-color: #fcf8e3; 3686 | border-color: #8a6d3b; 3687 | } 3688 | 3689 | .has-warning .form-control-feedback { 3690 | color: #8a6d3b; 3691 | } 3692 | 3693 | .has-error .help-block, 3694 | .has-error .control-label, 3695 | .has-error .radio, 3696 | .has-error .checkbox, 3697 | .has-error .radio-inline, 3698 | .has-error .checkbox-inline, 3699 | .has-error.radio label, 3700 | .has-error.checkbox label, 3701 | .has-error.radio-inline label, 3702 | .has-error.checkbox-inline label { 3703 | color: #a94442; 3704 | } 3705 | 3706 | .has-error .form-control { 3707 | border-color: #a94442; 3708 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 3709 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); 3710 | } 3711 | 3712 | .has-error .form-control:focus { 3713 | border-color: #843534; 3714 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; 3715 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; 3716 | } 3717 | 3718 | .has-error .input-group-addon { 3719 | color: #a94442; 3720 | background-color: #f2dede; 3721 | border-color: #a94442; 3722 | } 3723 | 3724 | .has-error .form-control-feedback { 3725 | color: #a94442; 3726 | } 3727 | 3728 | .has-feedback label~.form-control-feedback { 3729 | top: 25px; 3730 | } 3731 | 3732 | .has-feedback label.sr-only~.form-control-feedback { 3733 | top: 0; 3734 | } 3735 | 3736 | .help-block { 3737 | display: block; 3738 | margin-top: 5px; 3739 | margin-bottom: 10px; 3740 | color: #737373; 3741 | } 3742 | 3743 | @media (min-width: 768px) { 3744 | .form-inline .form-group { 3745 | display: inline-block; 3746 | margin-bottom: 0; 3747 | vertical-align: middle; 3748 | } 3749 | 3750 | .form-inline .form-control { 3751 | display: inline-block; 3752 | width: auto; 3753 | vertical-align: middle; 3754 | } 3755 | 3756 | .form-inline .form-control-static { 3757 | display: inline-block; 3758 | } 3759 | 3760 | .form-inline .input-group { 3761 | display: inline-table; 3762 | vertical-align: middle; 3763 | } 3764 | 3765 | .form-inline .input-group .input-group-addon, 3766 | .form-inline .input-group .input-group-btn, 3767 | .form-inline .input-group .form-control { 3768 | width: auto; 3769 | } 3770 | 3771 | .form-inline .input-group>.form-control { 3772 | width: 100%; 3773 | } 3774 | 3775 | .form-inline .control-label { 3776 | margin-bottom: 0; 3777 | vertical-align: middle; 3778 | } 3779 | 3780 | .form-inline .radio, 3781 | .form-inline .checkbox { 3782 | display: inline-block; 3783 | margin-top: 0; 3784 | margin-bottom: 0; 3785 | vertical-align: middle; 3786 | } 3787 | 3788 | .form-inline .radio label, 3789 | .form-inline .checkbox label { 3790 | padding-left: 0; 3791 | } 3792 | 3793 | .form-inline .radio input[type="radio"], 3794 | .form-inline .checkbox input[type="checkbox"] { 3795 | position: relative; 3796 | margin-left: 0; 3797 | } 3798 | 3799 | .form-inline .has-feedback .form-control-feedback { 3800 | top: 0; 3801 | } 3802 | } 3803 | 3804 | .form-horizontal .radio, 3805 | .form-horizontal .checkbox, 3806 | .form-horizontal .radio-inline, 3807 | .form-horizontal .checkbox-inline { 3808 | padding-top: 7px; 3809 | margin-top: 0; 3810 | margin-bottom: 0; 3811 | } 3812 | 3813 | .form-horizontal .radio, 3814 | .form-horizontal .checkbox { 3815 | min-height: 27px; 3816 | } 3817 | 3818 | .form-horizontal .form-group { 3819 | margin-right: -15px; 3820 | margin-left: -15px; 3821 | } 3822 | 3823 | @media (min-width: 768px) { 3824 | .form-horizontal .control-label { 3825 | padding-top: 7px; 3826 | margin-bottom: 0; 3827 | text-align: right; 3828 | } 3829 | } 3830 | 3831 | .form-horizontal .has-feedback .form-control-feedback { 3832 | right: 15px; 3833 | } 3834 | 3835 | @media (min-width: 768px) { 3836 | .form-horizontal .form-group-lg .control-label { 3837 | padding-top: 14.333333px; 3838 | font-size: 18px; 3839 | } 3840 | } 3841 | 3842 | @media (min-width: 768px) { 3843 | .form-horizontal .form-group-sm .control-label { 3844 | padding-top: 6px; 3845 | font-size: 12px; 3846 | } 3847 | } 3848 | 3849 | .btn { 3850 | display: inline-block; 3851 | padding: 6px 12px; 3852 | margin-bottom: 0; 3853 | font-size: 14px; 3854 | font-weight: normal; 3855 | line-height: 1.42857143; 3856 | text-align: center; 3857 | white-space: nowrap; 3858 | vertical-align: middle; 3859 | -ms-touch-action: manipulation; 3860 | touch-action: manipulation; 3861 | cursor: pointer; 3862 | -webkit-user-select: none; 3863 | -moz-user-select: none; 3864 | -ms-user-select: none; 3865 | user-select: none; 3866 | background-image: none; 3867 | border: 1px solid transparent; 3868 | border-radius: 4px; 3869 | } 3870 | 3871 | .btn:focus, 3872 | .btn:active:focus, 3873 | .btn.active:focus, 3874 | .btn.focus, 3875 | .btn:active.focus, 3876 | .btn.active.focus { 3877 | outline: thin dotted; 3878 | outline: 5px auto -webkit-focus-ring-color; 3879 | outline-offset: -2px; 3880 | } 3881 | 3882 | .btn:hover, 3883 | .btn:focus, 3884 | .btn.focus { 3885 | color: #333; 3886 | text-decoration: none; 3887 | } 3888 | 3889 | .btn:active, 3890 | .btn.active { 3891 | background-image: none; 3892 | outline: 0; 3893 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); 3894 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); 3895 | } 3896 | 3897 | .btn.disabled, 3898 | .btn[disabled], 3899 | fieldset[disabled] .btn { 3900 | cursor: not-allowed; 3901 | filter: alpha(opacity=65); 3902 | -webkit-box-shadow: none; 3903 | box-shadow: none; 3904 | opacity: .65; 3905 | } 3906 | 3907 | a.btn.disabled, 3908 | fieldset[disabled] a.btn { 3909 | pointer-events: none; 3910 | } 3911 | 3912 | .btn-default { 3913 | color: #333; 3914 | background-color: #fff; 3915 | border-color: #ccc; 3916 | } 3917 | 3918 | .btn-default:focus, 3919 | .btn-default.focus { 3920 | color: #333; 3921 | background-color: #e6e6e6; 3922 | border-color: #8c8c8c; 3923 | } 3924 | 3925 | .btn-default:hover { 3926 | color: #333; 3927 | background-color: #e6e6e6; 3928 | border-color: #adadad; 3929 | } 3930 | 3931 | .btn-default:active, 3932 | .btn-default.active, 3933 | .open>.dropdown-toggle.btn-default { 3934 | color: #333; 3935 | background-color: #e6e6e6; 3936 | border-color: #adadad; 3937 | } 3938 | 3939 | .btn-default:active:hover, 3940 | .btn-default.active:hover, 3941 | .open>.dropdown-toggle.btn-default:hover, 3942 | .btn-default:active:focus, 3943 | .btn-default.active:focus, 3944 | .open>.dropdown-toggle.btn-default:focus, 3945 | .btn-default:active.focus, 3946 | .btn-default.active.focus, 3947 | .open>.dropdown-toggle.btn-default.focus { 3948 | color: #333; 3949 | background-color: #d4d4d4; 3950 | border-color: #8c8c8c; 3951 | } 3952 | 3953 | .btn-default:active, 3954 | .btn-default.active, 3955 | .open>.dropdown-toggle.btn-default { 3956 | background-image: none; 3957 | } 3958 | 3959 | .btn-default.disabled, 3960 | .btn-default[disabled], 3961 | fieldset[disabled] .btn-default, 3962 | .btn-default.disabled:hover, 3963 | .btn-default[disabled]:hover, 3964 | fieldset[disabled] .btn-default:hover, 3965 | .btn-default.disabled:focus, 3966 | .btn-default[disabled]:focus, 3967 | fieldset[disabled] .btn-default:focus, 3968 | .btn-default.disabled.focus, 3969 | .btn-default[disabled].focus, 3970 | fieldset[disabled] .btn-default.focus, 3971 | .btn-default.disabled:active, 3972 | .btn-default[disabled]:active, 3973 | fieldset[disabled] .btn-default:active, 3974 | .btn-default.disabled.active, 3975 | .btn-default[disabled].active, 3976 | fieldset[disabled] .btn-default.active { 3977 | background-color: #fff; 3978 | border-color: #ccc; 3979 | } 3980 | 3981 | .btn-default .badge { 3982 | color: #fff; 3983 | background-color: #333; 3984 | } 3985 | 3986 | .btn-primary { 3987 | color: #fff; 3988 | background-color: #337ab7; 3989 | border-color: #2e6da4; 3990 | } 3991 | 3992 | .btn-primary:focus, 3993 | .btn-primary.focus { 3994 | color: #fff; 3995 | background-color: #286090; 3996 | border-color: #122b40; 3997 | } 3998 | 3999 | .btn-primary:hover { 4000 | color: #fff; 4001 | background-color: #286090; 4002 | border-color: #204d74; 4003 | } 4004 | 4005 | .btn-primary:active, 4006 | .btn-primary.active, 4007 | .open>.dropdown-toggle.btn-primary { 4008 | color: #fff; 4009 | background-color: #286090; 4010 | border-color: #204d74; 4011 | } 4012 | 4013 | .btn-primary:active:hover, 4014 | .btn-primary.active:hover, 4015 | .open>.dropdown-toggle.btn-primary:hover, 4016 | .btn-primary:active:focus, 4017 | .btn-primary.active:focus, 4018 | .open>.dropdown-toggle.btn-primary:focus, 4019 | .btn-primary:active.focus, 4020 | .btn-primary.active.focus, 4021 | .open>.dropdown-toggle.btn-primary.focus { 4022 | color: #fff; 4023 | background-color: #204d74; 4024 | border-color: #122b40; 4025 | } 4026 | 4027 | .btn-primary:active, 4028 | .btn-primary.active, 4029 | .open>.dropdown-toggle.btn-primary { 4030 | background-image: none; 4031 | } 4032 | 4033 | .btn-primary.disabled, 4034 | .btn-primary[disabled], 4035 | fieldset[disabled] .btn-primary, 4036 | .btn-primary.disabled:hover, 4037 | .btn-primary[disabled]:hover, 4038 | fieldset[disabled] .btn-primary:hover, 4039 | .btn-primary.disabled:focus, 4040 | .btn-primary[disabled]:focus, 4041 | fieldset[disabled] .btn-primary:focus, 4042 | .btn-primary.disabled.focus, 4043 | .btn-primary[disabled].focus, 4044 | fieldset[disabled] .btn-primary.focus, 4045 | .btn-primary.disabled:active, 4046 | .btn-primary[disabled]:active, 4047 | fieldset[disabled] .btn-primary:active, 4048 | .btn-primary.disabled.active, 4049 | .btn-primary[disabled].active, 4050 | fieldset[disabled] .btn-primary.active { 4051 | background-color: #337ab7; 4052 | border-color: #2e6da4; 4053 | } 4054 | 4055 | .btn-primary .badge { 4056 | color: #337ab7; 4057 | background-color: #fff; 4058 | } 4059 | 4060 | .btn-success { 4061 | color: #fff; 4062 | background-color: #5cb85c; 4063 | border-color: #4cae4c; 4064 | } 4065 | 4066 | .btn-success:focus, 4067 | .btn-success.focus { 4068 | color: #fff; 4069 | background-color: #449d44; 4070 | border-color: #255625; 4071 | } 4072 | 4073 | .btn-success:hover { 4074 | color: #fff; 4075 | background-color: #449d44; 4076 | border-color: #398439; 4077 | } 4078 | 4079 | .btn-success:active, 4080 | .btn-success.active, 4081 | .open>.dropdown-toggle.btn-success { 4082 | color: #fff; 4083 | background-color: #449d44; 4084 | border-color: #398439; 4085 | } 4086 | 4087 | .btn-success:active:hover, 4088 | .btn-success.active:hover, 4089 | .open>.dropdown-toggle.btn-success:hover, 4090 | .btn-success:active:focus, 4091 | .btn-success.active:focus, 4092 | .open>.dropdown-toggle.btn-success:focus, 4093 | .btn-success:active.focus, 4094 | .btn-success.active.focus, 4095 | .open>.dropdown-toggle.btn-success.focus { 4096 | color: #fff; 4097 | background-color: #398439; 4098 | border-color: #255625; 4099 | } 4100 | 4101 | .btn-success:active, 4102 | .btn-success.active, 4103 | .open>.dropdown-toggle.btn-success { 4104 | background-image: none; 4105 | } 4106 | 4107 | .btn-success.disabled, 4108 | .btn-success[disabled], 4109 | fieldset[disabled] .btn-success, 4110 | .btn-success.disabled:hover, 4111 | .btn-success[disabled]:hover, 4112 | fieldset[disabled] .btn-success:hover, 4113 | .btn-success.disabled:focus, 4114 | .btn-success[disabled]:focus, 4115 | fieldset[disabled] .btn-success:focus, 4116 | .btn-success.disabled.focus, 4117 | .btn-success[disabled].focus, 4118 | fieldset[disabled] .btn-success.focus, 4119 | .btn-success.disabled:active, 4120 | .btn-success[disabled]:active, 4121 | fieldset[disabled] .btn-success:active, 4122 | .btn-success.disabled.active, 4123 | .btn-success[disabled].active, 4124 | fieldset[disabled] .btn-success.active { 4125 | background-color: #5cb85c; 4126 | border-color: #4cae4c; 4127 | } 4128 | 4129 | .btn-success .badge { 4130 | color: #5cb85c; 4131 | background-color: #fff; 4132 | } 4133 | 4134 | .btn-info { 4135 | color: #fff; 4136 | background-color: #5bc0de; 4137 | border-color: #46b8da; 4138 | } 4139 | 4140 | .btn-info:focus, 4141 | .btn-info.focus { 4142 | color: #fff; 4143 | background-color: #31b0d5; 4144 | border-color: #1b6d85; 4145 | } 4146 | 4147 | .btn-info:hover { 4148 | color: #fff; 4149 | background-color: #31b0d5; 4150 | border-color: #269abc; 4151 | } 4152 | 4153 | .btn-info:active, 4154 | .btn-info.active, 4155 | .open>.dropdown-toggle.btn-info { 4156 | color: #fff; 4157 | background-color: #31b0d5; 4158 | border-color: #269abc; 4159 | } 4160 | 4161 | .btn-info:active:hover, 4162 | .btn-info.active:hover, 4163 | .open>.dropdown-toggle.btn-info:hover, 4164 | .btn-info:active:focus, 4165 | .btn-info.active:focus, 4166 | .open>.dropdown-toggle.btn-info:focus, 4167 | .btn-info:active.focus, 4168 | .btn-info.active.focus, 4169 | .open>.dropdown-toggle.btn-info.focus { 4170 | color: #fff; 4171 | background-color: #269abc; 4172 | border-color: #1b6d85; 4173 | } 4174 | 4175 | .btn-info:active, 4176 | .btn-info.active, 4177 | .open>.dropdown-toggle.btn-info { 4178 | background-image: none; 4179 | } 4180 | 4181 | .btn-info.disabled, 4182 | .btn-info[disabled], 4183 | fieldset[disabled] .btn-info, 4184 | .btn-info.disabled:hover, 4185 | .btn-info[disabled]:hover, 4186 | fieldset[disabled] .btn-info:hover, 4187 | .btn-info.disabled:focus, 4188 | .btn-info[disabled]:focus, 4189 | fieldset[disabled] .btn-info:focus, 4190 | .btn-info.disabled.focus, 4191 | .btn-info[disabled].focus, 4192 | fieldset[disabled] .btn-info.focus, 4193 | .btn-info.disabled:active, 4194 | .btn-info[disabled]:active, 4195 | fieldset[disabled] .btn-info:active, 4196 | .btn-info.disabled.active, 4197 | .btn-info[disabled].active, 4198 | fieldset[disabled] .btn-info.active { 4199 | background-color: #5bc0de; 4200 | border-color: #46b8da; 4201 | } 4202 | 4203 | .btn-info .badge { 4204 | color: #5bc0de; 4205 | background-color: #fff; 4206 | } 4207 | 4208 | .btn-warning { 4209 | color: #fff; 4210 | background-color: #f0ad4e; 4211 | border-color: #eea236; 4212 | } 4213 | 4214 | .btn-warning:focus, 4215 | .btn-warning.focus { 4216 | color: #fff; 4217 | background-color: #ec971f; 4218 | border-color: #985f0d; 4219 | } 4220 | 4221 | .btn-warning:hover { 4222 | color: #fff; 4223 | background-color: #ec971f; 4224 | border-color: #d58512; 4225 | } 4226 | 4227 | .btn-warning:active, 4228 | .btn-warning.active, 4229 | .open>.dropdown-toggle.btn-warning { 4230 | color: #fff; 4231 | background-color: #ec971f; 4232 | border-color: #d58512; 4233 | } 4234 | 4235 | .btn-warning:active:hover, 4236 | .btn-warning.active:hover, 4237 | .open>.dropdown-toggle.btn-warning:hover, 4238 | .btn-warning:active:focus, 4239 | .btn-warning.active:focus, 4240 | .open>.dropdown-toggle.btn-warning:focus, 4241 | .btn-warning:active.focus, 4242 | .btn-warning.active.focus, 4243 | .open>.dropdown-toggle.btn-warning.focus { 4244 | color: #fff; 4245 | background-color: #d58512; 4246 | border-color: #985f0d; 4247 | } 4248 | 4249 | .btn-warning:active, 4250 | .btn-warning.active, 4251 | .open>.dropdown-toggle.btn-warning { 4252 | background-image: none; 4253 | } 4254 | 4255 | .btn-warning.disabled, 4256 | .btn-warning[disabled], 4257 | fieldset[disabled] .btn-warning, 4258 | .btn-warning.disabled:hover, 4259 | .btn-warning[disabled]:hover, 4260 | fieldset[disabled] .btn-warning:hover, 4261 | .btn-warning.disabled:focus, 4262 | .btn-warning[disabled]:focus, 4263 | fieldset[disabled] .btn-warning:focus, 4264 | .btn-warning.disabled.focus, 4265 | .btn-warning[disabled].focus, 4266 | fieldset[disabled] .btn-warning.focus, 4267 | .btn-warning.disabled:active, 4268 | .btn-warning[disabled]:active, 4269 | fieldset[disabled] .btn-warning:active, 4270 | .btn-warning.disabled.active, 4271 | .btn-warning[disabled].active, 4272 | fieldset[disabled] .btn-warning.active { 4273 | background-color: #f0ad4e; 4274 | border-color: #eea236; 4275 | } 4276 | 4277 | .btn-warning .badge { 4278 | color: #f0ad4e; 4279 | background-color: #fff; 4280 | } 4281 | 4282 | .btn-danger { 4283 | color: #fff; 4284 | background-color: #d9534f; 4285 | border-color: #d43f3a; 4286 | } 4287 | 4288 | .btn-danger:focus, 4289 | .btn-danger.focus { 4290 | color: #fff; 4291 | background-color: #c9302c; 4292 | border-color: #761c19; 4293 | } 4294 | 4295 | .btn-danger:hover { 4296 | color: #fff; 4297 | background-color: #c9302c; 4298 | border-color: #ac2925; 4299 | } 4300 | 4301 | .btn-danger:active, 4302 | .btn-danger.active, 4303 | .open>.dropdown-toggle.btn-danger { 4304 | color: #fff; 4305 | background-color: #c9302c; 4306 | border-color: #ac2925; 4307 | } 4308 | 4309 | .btn-danger:active:hover, 4310 | .btn-danger.active:hover, 4311 | .open>.dropdown-toggle.btn-danger:hover, 4312 | .btn-danger:active:focus, 4313 | .btn-danger.active:focus, 4314 | .open>.dropdown-toggle.btn-danger:focus, 4315 | .btn-danger:active.focus, 4316 | .btn-danger.active.focus, 4317 | .open>.dropdown-toggle.btn-danger.focus { 4318 | color: #fff; 4319 | background-color: #ac2925; 4320 | border-color: #761c19; 4321 | } 4322 | 4323 | .btn-danger:active, 4324 | .btn-danger.active, 4325 | .open>.dropdown-toggle.btn-danger { 4326 | background-image: none; 4327 | } 4328 | 4329 | .btn-danger.disabled, 4330 | .btn-danger[disabled], 4331 | fieldset[disabled] .btn-danger, 4332 | .btn-danger.disabled:hover, 4333 | .btn-danger[disabled]:hover, 4334 | fieldset[disabled] .btn-danger:hover, 4335 | .btn-danger.disabled:focus, 4336 | .btn-danger[disabled]:focus, 4337 | fieldset[disabled] .btn-danger:focus, 4338 | .btn-danger.disabled.focus, 4339 | .btn-danger[disabled].focus, 4340 | fieldset[disabled] .btn-danger.focus, 4341 | .btn-danger.disabled:active, 4342 | .btn-danger[disabled]:active, 4343 | fieldset[disabled] .btn-danger:active, 4344 | .btn-danger.disabled.active, 4345 | .btn-danger[disabled].active, 4346 | fieldset[disabled] .btn-danger.active { 4347 | background-color: #d9534f; 4348 | border-color: #d43f3a; 4349 | } 4350 | 4351 | .btn-danger .badge { 4352 | color: #d9534f; 4353 | background-color: #fff; 4354 | } 4355 | 4356 | .btn-link { 4357 | font-weight: normal; 4358 | color: #337ab7; 4359 | border-radius: 0; 4360 | } 4361 | 4362 | .btn-link, 4363 | .btn-link:active, 4364 | .btn-link.active, 4365 | .btn-link[disabled], 4366 | fieldset[disabled] .btn-link { 4367 | background-color: transparent; 4368 | -webkit-box-shadow: none; 4369 | box-shadow: none; 4370 | } 4371 | 4372 | .btn-link, 4373 | .btn-link:hover, 4374 | .btn-link:focus, 4375 | .btn-link:active { 4376 | border-color: transparent; 4377 | } 4378 | 4379 | .btn-link:hover, 4380 | .btn-link:focus { 4381 | color: #23527c; 4382 | text-decoration: underline; 4383 | background-color: transparent; 4384 | } 4385 | 4386 | .btn-link[disabled]:hover, 4387 | fieldset[disabled] .btn-link:hover, 4388 | .btn-link[disabled]:focus, 4389 | fieldset[disabled] .btn-link:focus { 4390 | color: #777; 4391 | text-decoration: none; 4392 | } 4393 | 4394 | .btn-lg, 4395 | .btn-group-lg>.btn { 4396 | padding: 10px 16px; 4397 | font-size: 18px; 4398 | line-height: 1.3333333; 4399 | border-radius: 6px; 4400 | } 4401 | 4402 | .btn-sm, 4403 | .btn-group-sm>.btn { 4404 | padding: 5px 10px; 4405 | font-size: 12px; 4406 | line-height: 1.5; 4407 | border-radius: 3px; 4408 | } 4409 | 4410 | .btn-xs, 4411 | .btn-group-xs>.btn { 4412 | padding: 1px 5px; 4413 | font-size: 12px; 4414 | line-height: 1.5; 4415 | border-radius: 3px; 4416 | } 4417 | 4418 | .btn-block { 4419 | display: block; 4420 | width: 100%; 4421 | } 4422 | 4423 | .btn-block+.btn-block { 4424 | margin-top: 5px; 4425 | } 4426 | 4427 | input[type="submit"].btn-block, 4428 | input[type="reset"].btn-block, 4429 | input[type="button"].btn-block { 4430 | width: 100%; 4431 | } 4432 | 4433 | .fade { 4434 | opacity: 0; 4435 | -webkit-transition: opacity .15s linear; 4436 | -o-transition: opacity .15s linear; 4437 | transition: opacity .15s linear; 4438 | } 4439 | 4440 | .fade.in { 4441 | opacity: 1; 4442 | } 4443 | 4444 | .collapse { 4445 | display: none; 4446 | } 4447 | 4448 | .collapse.in { 4449 | display: block; 4450 | } 4451 | 4452 | tr.collapse.in { 4453 | display: table-row; 4454 | } 4455 | 4456 | tbody.collapse.in { 4457 | display: table-row-group; 4458 | } 4459 | 4460 | .collapsing { 4461 | position: relative; 4462 | height: 0; 4463 | overflow: hidden; 4464 | -webkit-transition-timing-function: ease; 4465 | -o-transition-timing-function: ease; 4466 | transition-timing-function: ease; 4467 | -webkit-transition-duration: .35s; 4468 | -o-transition-duration: .35s; 4469 | transition-duration: .35s; 4470 | -webkit-transition-property: height, visibility; 4471 | -o-transition-property: height, visibility; 4472 | transition-property: height, visibility; 4473 | } 4474 | 4475 | .caret { 4476 | display: inline-block; 4477 | width: 0; 4478 | height: 0; 4479 | margin-left: 2px; 4480 | vertical-align: middle; 4481 | border-top: 4px dashed; 4482 | border-top: 4px solid \9; 4483 | border-right: 4px solid transparent; 4484 | border-left: 4px solid transparent; 4485 | } 4486 | 4487 | .dropup, 4488 | .dropdown { 4489 | position: relative; 4490 | } 4491 | 4492 | .dropdown-toggle:focus { 4493 | outline: 0; 4494 | } 4495 | 4496 | .dropdown-menu { 4497 | position: absolute; 4498 | top: 100%; 4499 | left: 0; 4500 | z-index: 1000; 4501 | display: none; 4502 | float: left; 4503 | min-width: 160px; 4504 | padding: 5px 0; 4505 | margin: 2px 0 0; 4506 | font-size: 14px; 4507 | text-align: left; 4508 | list-style: none; 4509 | background-color: #fff; 4510 | -webkit-background-clip: padding-box; 4511 | background-clip: padding-box; 4512 | border: 1px solid #ccc; 4513 | border: 1px solid rgba(0, 0, 0, .15); 4514 | border-radius: 4px; 4515 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); 4516 | box-shadow: 0 6px 12px rgba(0, 0, 0, .175); 4517 | } 4518 | 4519 | .dropdown-menu.pull-right { 4520 | right: 0; 4521 | left: auto; 4522 | } 4523 | 4524 | .dropdown-menu .divider { 4525 | height: 1px; 4526 | margin: 9px 0; 4527 | overflow: hidden; 4528 | background-color: #e5e5e5; 4529 | } 4530 | 4531 | .dropdown-menu>li>a { 4532 | display: block; 4533 | padding: 3px 20px; 4534 | clear: both; 4535 | font-weight: normal; 4536 | line-height: 1.42857143; 4537 | color: #333; 4538 | white-space: nowrap; 4539 | } 4540 | 4541 | .dropdown-menu>li>a:hover, 4542 | .dropdown-menu>li>a:focus { 4543 | color: #262626; 4544 | text-decoration: none; 4545 | background-color: #f5f5f5; 4546 | } 4547 | 4548 | .dropdown-menu>.active>a, 4549 | .dropdown-menu>.active>a:hover, 4550 | .dropdown-menu>.active>a:focus { 4551 | color: #fff; 4552 | text-decoration: none; 4553 | background-color: #337ab7; 4554 | outline: 0; 4555 | } 4556 | 4557 | .dropdown-menu>.disabled>a, 4558 | .dropdown-menu>.disabled>a:hover, 4559 | .dropdown-menu>.disabled>a:focus { 4560 | color: #777; 4561 | } 4562 | 4563 | .dropdown-menu>.disabled>a:hover, 4564 | .dropdown-menu>.disabled>a:focus { 4565 | text-decoration: none; 4566 | cursor: not-allowed; 4567 | background-color: transparent; 4568 | background-image: none; 4569 | filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); 4570 | } 4571 | 4572 | .open>.dropdown-menu { 4573 | display: block; 4574 | } 4575 | 4576 | .open>a { 4577 | outline: 0; 4578 | } 4579 | 4580 | .dropdown-menu-right { 4581 | right: 0; 4582 | left: auto; 4583 | } 4584 | 4585 | .dropdown-menu-left { 4586 | right: auto; 4587 | left: 0; 4588 | } 4589 | 4590 | .dropdown-header { 4591 | display: block; 4592 | padding: 3px 20px; 4593 | font-size: 12px; 4594 | line-height: 1.42857143; 4595 | color: #777; 4596 | white-space: nowrap; 4597 | } 4598 | 4599 | .dropdown-backdrop { 4600 | position: fixed; 4601 | top: 0; 4602 | right: 0; 4603 | bottom: 0; 4604 | left: 0; 4605 | z-index: 990; 4606 | } 4607 | 4608 | .pull-right>.dropdown-menu { 4609 | right: 0; 4610 | left: auto; 4611 | } 4612 | 4613 | .dropup .caret, 4614 | .navbar-fixed-bottom .dropdown .caret { 4615 | content: ""; 4616 | border-top: 0; 4617 | border-bottom: 4px dashed; 4618 | border-bottom: 4px solid \9; 4619 | } 4620 | 4621 | .dropup .dropdown-menu, 4622 | .navbar-fixed-bottom .dropdown .dropdown-menu { 4623 | top: auto; 4624 | bottom: 100%; 4625 | margin-bottom: 2px; 4626 | } 4627 | 4628 | @media (min-width: 768px) { 4629 | .navbar-right .dropdown-menu { 4630 | right: 0; 4631 | left: auto; 4632 | } 4633 | 4634 | .navbar-right .dropdown-menu-left { 4635 | right: auto; 4636 | left: 0; 4637 | } 4638 | } 4639 | 4640 | .btn-group, 4641 | .btn-group-vertical { 4642 | position: relative; 4643 | display: inline-block; 4644 | vertical-align: middle; 4645 | } 4646 | 4647 | .btn-group>.btn, 4648 | .btn-group-vertical>.btn { 4649 | position: relative; 4650 | float: left; 4651 | } 4652 | 4653 | .btn-group>.btn:hover, 4654 | .btn-group-vertical>.btn:hover, 4655 | .btn-group>.btn:focus, 4656 | .btn-group-vertical>.btn:focus, 4657 | .btn-group>.btn:active, 4658 | .btn-group-vertical>.btn:active, 4659 | .btn-group>.btn.active, 4660 | .btn-group-vertical>.btn.active { 4661 | z-index: 2; 4662 | } 4663 | 4664 | .btn-group .btn+.btn, 4665 | .btn-group .btn+.btn-group, 4666 | .btn-group .btn-group+.btn, 4667 | .btn-group .btn-group+.btn-group { 4668 | margin-left: -1px; 4669 | } 4670 | 4671 | .btn-toolbar { 4672 | margin-left: -5px; 4673 | } 4674 | 4675 | .btn-toolbar .btn, 4676 | .btn-toolbar .btn-group, 4677 | .btn-toolbar .input-group { 4678 | float: left; 4679 | } 4680 | 4681 | .btn-toolbar>.btn, 4682 | .btn-toolbar>.btn-group, 4683 | .btn-toolbar>.input-group { 4684 | margin-left: 5px; 4685 | } 4686 | 4687 | .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { 4688 | border-radius: 0; 4689 | } 4690 | 4691 | .btn-group>.btn:first-child { 4692 | margin-left: 0; 4693 | } 4694 | 4695 | .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { 4696 | border-top-right-radius: 0; 4697 | border-bottom-right-radius: 0; 4698 | } 4699 | 4700 | .btn-group>.btn:last-child:not(:first-child), 4701 | .btn-group>.dropdown-toggle:not(:first-child) { 4702 | border-top-left-radius: 0; 4703 | border-bottom-left-radius: 0; 4704 | } 4705 | 4706 | .btn-group>.btn-group { 4707 | float: left; 4708 | } 4709 | 4710 | .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { 4711 | border-radius: 0; 4712 | } 4713 | 4714 | .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child, 4715 | .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle { 4716 | border-top-right-radius: 0; 4717 | border-bottom-right-radius: 0; 4718 | } 4719 | 4720 | .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child { 4721 | border-top-left-radius: 0; 4722 | border-bottom-left-radius: 0; 4723 | } 4724 | 4725 | .btn-group .dropdown-toggle:active, 4726 | .btn-group.open .dropdown-toggle { 4727 | outline: 0; 4728 | } 4729 | 4730 | .btn-group>.btn+.dropdown-toggle { 4731 | padding-right: 8px; 4732 | padding-left: 8px; 4733 | } 4734 | 4735 | .btn-group>.btn-lg+.dropdown-toggle { 4736 | padding-right: 12px; 4737 | padding-left: 12px; 4738 | } 4739 | 4740 | .btn-group.open .dropdown-toggle { 4741 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); 4742 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); 4743 | } 4744 | 4745 | .btn-group.open .dropdown-toggle.btn-link { 4746 | -webkit-box-shadow: none; 4747 | box-shadow: none; 4748 | } 4749 | 4750 | .btn .caret { 4751 | margin-left: 0; 4752 | } 4753 | 4754 | .btn-lg .caret { 4755 | border-width: 5px 5px 0; 4756 | border-bottom-width: 0; 4757 | } 4758 | 4759 | .dropup .btn-lg .caret { 4760 | border-width: 0 5px 5px; 4761 | } 4762 | 4763 | .btn-group-vertical>.btn, 4764 | .btn-group-vertical>.btn-group, 4765 | .btn-group-vertical>.btn-group>.btn { 4766 | display: block; 4767 | float: none; 4768 | width: 100%; 4769 | max-width: 100%; 4770 | } 4771 | 4772 | .btn-group-vertical>.btn-group>.btn { 4773 | float: none; 4774 | } 4775 | 4776 | .btn-group-vertical>.btn+.btn, 4777 | .btn-group-vertical>.btn+.btn-group, 4778 | .btn-group-vertical>.btn-group+.btn, 4779 | .btn-group-vertical>.btn-group+.btn-group { 4780 | margin-top: -1px; 4781 | margin-left: 0; 4782 | } 4783 | 4784 | .btn-group-vertical>.btn:not(:first-child):not(:last-child) { 4785 | border-radius: 0; 4786 | } 4787 | 4788 | .btn-group-vertical>.btn:first-child:not(:last-child) { 4789 | border-top-right-radius: 4px; 4790 | border-bottom-right-radius: 0; 4791 | border-bottom-left-radius: 0; 4792 | } 4793 | 4794 | .btn-group-vertical>.btn:last-child:not(:first-child) { 4795 | border-top-left-radius: 0; 4796 | border-top-right-radius: 0; 4797 | border-bottom-left-radius: 4px; 4798 | } 4799 | 4800 | .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { 4801 | border-radius: 0; 4802 | } 4803 | 4804 | .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child, 4805 | .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle { 4806 | border-bottom-right-radius: 0; 4807 | border-bottom-left-radius: 0; 4808 | } 4809 | 4810 | .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child { 4811 | border-top-left-radius: 0; 4812 | border-top-right-radius: 0; 4813 | } 4814 | 4815 | .btn-group-justified { 4816 | display: table; 4817 | width: 100%; 4818 | table-layout: fixed; 4819 | border-collapse: separate; 4820 | } 4821 | 4822 | .btn-group-justified>.btn, 4823 | .btn-group-justified>.btn-group { 4824 | display: table-cell; 4825 | float: none; 4826 | width: 1%; 4827 | } 4828 | 4829 | .btn-group-justified>.btn-group .btn { 4830 | width: 100%; 4831 | } 4832 | 4833 | .btn-group-justified>.btn-group .dropdown-menu { 4834 | left: auto; 4835 | } 4836 | 4837 | [data-toggle="buttons"]>.btn input[type="radio"], 4838 | [data-toggle="buttons"]>.btn-group>.btn input[type="radio"], 4839 | [data-toggle="buttons"]>.btn input[type="checkbox"], 4840 | [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] { 4841 | position: absolute; 4842 | clip: rect(0, 0, 0, 0); 4843 | pointer-events: none; 4844 | } 4845 | 4846 | .input-group { 4847 | position: relative; 4848 | display: table; 4849 | border-collapse: separate; 4850 | } 4851 | 4852 | .input-group[class*="col-"] { 4853 | float: none; 4854 | padding-right: 0; 4855 | padding-left: 0; 4856 | } 4857 | 4858 | .input-group .form-control { 4859 | position: relative; 4860 | z-index: 2; 4861 | float: left; 4862 | width: 100%; 4863 | margin-bottom: 0; 4864 | } 4865 | 4866 | .input-group-lg>.form-control, 4867 | .input-group-lg>.input-group-addon, 4868 | .input-group-lg>.input-group-btn>.btn { 4869 | height: 46px; 4870 | padding: 10px 16px; 4871 | font-size: 18px; 4872 | line-height: 1.3333333; 4873 | border-radius: 6px; 4874 | } 4875 | 4876 | select.input-group-lg>.form-control, 4877 | select.input-group-lg>.input-group-addon, 4878 | select.input-group-lg>.input-group-btn>.btn { 4879 | height: 46px; 4880 | line-height: 46px; 4881 | } 4882 | 4883 | textarea.input-group-lg>.form-control, 4884 | textarea.input-group-lg>.input-group-addon, 4885 | textarea.input-group-lg>.input-group-btn>.btn, 4886 | select[multiple].input-group-lg>.form-control, 4887 | select[multiple].input-group-lg>.input-group-addon, 4888 | select[multiple].input-group-lg>.input-group-btn>.btn { 4889 | height: auto; 4890 | } 4891 | 4892 | .input-group-sm>.form-control, 4893 | .input-group-sm>.input-group-addon, 4894 | .input-group-sm>.input-group-btn>.btn { 4895 | height: 30px; 4896 | padding: 5px 10px; 4897 | font-size: 12px; 4898 | line-height: 1.5; 4899 | border-radius: 3px; 4900 | } 4901 | 4902 | select.input-group-sm>.form-control, 4903 | select.input-group-sm>.input-group-addon, 4904 | select.input-group-sm>.input-group-btn>.btn { 4905 | height: 30px; 4906 | line-height: 30px; 4907 | } 4908 | 4909 | textarea.input-group-sm>.form-control, 4910 | textarea.input-group-sm>.input-group-addon, 4911 | textarea.input-group-sm>.input-group-btn>.btn, 4912 | select[multiple].input-group-sm>.form-control, 4913 | select[multiple].input-group-sm>.input-group-addon, 4914 | select[multiple].input-group-sm>.input-group-btn>.btn { 4915 | height: auto; 4916 | } 4917 | 4918 | .input-group-addon, 4919 | .input-group-btn, 4920 | .input-group .form-control { 4921 | display: table-cell; 4922 | } 4923 | 4924 | .input-group-addon:not(:first-child):not(:last-child), 4925 | .input-group-btn:not(:first-child):not(:last-child), 4926 | .input-group .form-control:not(:first-child):not(:last-child) { 4927 | border-radius: 0; 4928 | } 4929 | 4930 | .input-group-addon, 4931 | .input-group-btn { 4932 | width: 1%; 4933 | white-space: nowrap; 4934 | vertical-align: middle; 4935 | } 4936 | 4937 | .input-group-addon { 4938 | padding: 6px 12px; 4939 | font-size: 14px; 4940 | font-weight: normal; 4941 | line-height: 1; 4942 | color: #555; 4943 | text-align: center; 4944 | background-color: #eee; 4945 | border: 1px solid #ccc; 4946 | border-radius: 4px; 4947 | } 4948 | 4949 | .input-group-addon.input-sm { 4950 | padding: 5px 10px; 4951 | font-size: 12px; 4952 | border-radius: 3px; 4953 | } 4954 | 4955 | .input-group-addon.input-lg { 4956 | padding: 10px 16px; 4957 | font-size: 18px; 4958 | border-radius: 6px; 4959 | } 4960 | 4961 | .input-group-addon input[type="radio"], 4962 | .input-group-addon input[type="checkbox"] { 4963 | margin-top: 0; 4964 | } 4965 | 4966 | .input-group .form-control:first-child, 4967 | .input-group-addon:first-child, 4968 | .input-group-btn:first-child>.btn, 4969 | .input-group-btn:first-child>.btn-group>.btn, 4970 | .input-group-btn:first-child>.dropdown-toggle, 4971 | .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), 4972 | .input-group-btn:last-child>.btn-group:not(:last-child)>.btn { 4973 | border-top-right-radius: 0; 4974 | border-bottom-right-radius: 0; 4975 | } 4976 | 4977 | .input-group-addon:first-child { 4978 | border-right: 0; 4979 | } 4980 | 4981 | .input-group .form-control:last-child, 4982 | .input-group-addon:last-child, 4983 | .input-group-btn:last-child>.btn, 4984 | .input-group-btn:last-child>.btn-group>.btn, 4985 | .input-group-btn:last-child>.dropdown-toggle, 4986 | .input-group-btn:first-child>.btn:not(:first-child), 4987 | .input-group-btn:first-child>.btn-group:not(:first-child)>.btn { 4988 | border-top-left-radius: 0; 4989 | border-bottom-left-radius: 0; 4990 | } 4991 | 4992 | .input-group-addon:last-child { 4993 | border-left: 0; 4994 | } 4995 | 4996 | .input-group-btn { 4997 | position: relative; 4998 | font-size: 0; 4999 | white-space: nowrap; 5000 | } 5001 | 5002 | .input-group-btn>.btn { 5003 | position: relative; 5004 | } 5005 | 5006 | .input-group-btn>.btn+.btn { 5007 | margin-left: -1px; 5008 | } 5009 | 5010 | .input-group-btn>.btn:hover, 5011 | .input-group-btn>.btn:focus, 5012 | .input-group-btn>.btn:active { 5013 | z-index: 2; 5014 | } 5015 | 5016 | .input-group-btn:first-child>.btn, 5017 | .input-group-btn:first-child>.btn-group { 5018 | margin-right: -1px; 5019 | } 5020 | 5021 | .input-group-btn:last-child>.btn, 5022 | .input-group-btn:last-child>.btn-group { 5023 | z-index: 2; 5024 | margin-left: -1px; 5025 | } 5026 | 5027 | .nav { 5028 | padding-left: 0; 5029 | margin-bottom: 0; 5030 | list-style: none; 5031 | } 5032 | 5033 | .nav>li { 5034 | position: relative; 5035 | display: block; 5036 | } 5037 | 5038 | .nav>li>a { 5039 | position: relative; 5040 | display: block; 5041 | padding: 10px 15px; 5042 | } 5043 | 5044 | .nav>li>a:hover, 5045 | .nav>li>a:focus { 5046 | text-decoration: none; 5047 | background-color: #eee; 5048 | } 5049 | 5050 | .nav>li.disabled>a { 5051 | color: #777; 5052 | } 5053 | 5054 | .nav>li.disabled>a:hover, 5055 | .nav>li.disabled>a:focus { 5056 | color: #777; 5057 | text-decoration: none; 5058 | cursor: not-allowed; 5059 | background-color: transparent; 5060 | } 5061 | 5062 | .nav .open>a, 5063 | .nav .open>a:hover, 5064 | .nav .open>a:focus { 5065 | background-color: #eee; 5066 | border-color: #337ab7; 5067 | } 5068 | 5069 | .nav .nav-divider { 5070 | height: 1px; 5071 | margin: 9px 0; 5072 | overflow: hidden; 5073 | background-color: #e5e5e5; 5074 | } 5075 | 5076 | .nav>li>a>img { 5077 | max-width: none; 5078 | } 5079 | 5080 | .nav-tabs { 5081 | border-bottom: 1px solid #ddd; 5082 | } 5083 | 5084 | .nav-tabs>li { 5085 | float: left; 5086 | margin-bottom: -1px; 5087 | } 5088 | 5089 | .nav-tabs>li>a { 5090 | margin-right: 2px; 5091 | line-height: 1.42857143; 5092 | border: 1px solid transparent; 5093 | border-radius: 4px 4px 0 0; 5094 | } 5095 | 5096 | .nav-tabs>li>a:hover { 5097 | border-color: #eee #eee #ddd; 5098 | } 5099 | 5100 | .nav-tabs>li.active>a, 5101 | .nav-tabs>li.active>a:hover, 5102 | .nav-tabs>li.active>a:focus { 5103 | color: #555; 5104 | cursor: default; 5105 | background-color: #fff; 5106 | border: 1px solid #ddd; 5107 | border-bottom-color: transparent; 5108 | } 5109 | 5110 | .nav-tabs.nav-justified { 5111 | width: 100%; 5112 | border-bottom: 0; 5113 | } 5114 | 5115 | .nav-tabs.nav-justified>li { 5116 | float: none; 5117 | } 5118 | 5119 | .nav-tabs.nav-justified>li>a { 5120 | margin-bottom: 5px; 5121 | text-align: center; 5122 | } 5123 | 5124 | .nav-tabs.nav-justified>.dropdown .dropdown-menu { 5125 | top: auto; 5126 | left: auto; 5127 | } 5128 | 5129 | @media (min-width: 768px) { 5130 | .nav-tabs.nav-justified>li { 5131 | display: table-cell; 5132 | width: 1%; 5133 | } 5134 | 5135 | .nav-tabs.nav-justified>li>a { 5136 | margin-bottom: 0; 5137 | } 5138 | } 5139 | 5140 | .nav-tabs.nav-justified>li>a { 5141 | margin-right: 0; 5142 | border-radius: 4px; 5143 | } 5144 | 5145 | .nav-tabs.nav-justified>.active>a, 5146 | .nav-tabs.nav-justified>.active>a:hover, 5147 | .nav-tabs.nav-justified>.active>a:focus { 5148 | border: 1px solid #ddd; 5149 | } 5150 | 5151 | @media (min-width: 768px) { 5152 | .nav-tabs.nav-justified>li>a { 5153 | border-bottom: 1px solid #ddd; 5154 | border-radius: 4px 4px 0 0; 5155 | } 5156 | 5157 | .nav-tabs.nav-justified>.active>a, 5158 | .nav-tabs.nav-justified>.active>a:hover, 5159 | .nav-tabs.nav-justified>.active>a:focus { 5160 | border-bottom-color: #fff; 5161 | } 5162 | } 5163 | 5164 | .nav-pills>li { 5165 | float: left; 5166 | } 5167 | 5168 | .nav-pills>li>a { 5169 | border-radius: 4px; 5170 | } 5171 | 5172 | .nav-pills>li+li { 5173 | margin-left: 2px; 5174 | } 5175 | 5176 | .nav-pills>li.active>a, 5177 | .nav-pills>li.active>a:hover, 5178 | .nav-pills>li.active>a:focus { 5179 | color: #fff; 5180 | background-color: #337ab7; 5181 | } 5182 | 5183 | .nav-stacked>li { 5184 | float: none; 5185 | } 5186 | 5187 | .nav-stacked>li+li { 5188 | margin-top: 2px; 5189 | margin-left: 0; 5190 | } 5191 | 5192 | .nav-justified { 5193 | width: 100%; 5194 | } 5195 | 5196 | .nav-justified>li { 5197 | float: none; 5198 | } 5199 | 5200 | .nav-justified>li>a { 5201 | margin-bottom: 5px; 5202 | text-align: center; 5203 | } 5204 | 5205 | .nav-justified>.dropdown .dropdown-menu { 5206 | top: auto; 5207 | left: auto; 5208 | } 5209 | 5210 | @media (min-width: 768px) { 5211 | .nav-justified>li { 5212 | display: table-cell; 5213 | width: 1%; 5214 | } 5215 | 5216 | .nav-justified>li>a { 5217 | margin-bottom: 0; 5218 | } 5219 | } 5220 | 5221 | .nav-tabs-justified { 5222 | border-bottom: 0; 5223 | } 5224 | 5225 | .nav-tabs-justified>li>a { 5226 | margin-right: 0; 5227 | border-radius: 4px; 5228 | } 5229 | 5230 | .nav-tabs-justified>.active>a, 5231 | .nav-tabs-justified>.active>a:hover, 5232 | .nav-tabs-justified>.active>a:focus { 5233 | border: 1px solid #ddd; 5234 | } 5235 | 5236 | @media (min-width: 768px) { 5237 | .nav-tabs-justified>li>a { 5238 | border-bottom: 1px solid #ddd; 5239 | border-radius: 4px 4px 0 0; 5240 | } 5241 | 5242 | .nav-tabs-justified>.active>a, 5243 | .nav-tabs-justified>.active>a:hover, 5244 | .nav-tabs-justified>.active>a:focus { 5245 | border-bottom-color: #fff; 5246 | } 5247 | } 5248 | 5249 | .tab-content>.tab-pane { 5250 | display: none; 5251 | } 5252 | 5253 | .tab-content>.active { 5254 | display: block; 5255 | } 5256 | 5257 | .nav-tabs .dropdown-menu { 5258 | margin-top: -1px; 5259 | border-top-left-radius: 0; 5260 | border-top-right-radius: 0; 5261 | } 5262 | 5263 | .navbar { 5264 | position: relative; 5265 | min-height: 50px; 5266 | margin-bottom: 20px; 5267 | border: 1px solid transparent; 5268 | } 5269 | 5270 | @media (min-width: 768px) { 5271 | .navbar { 5272 | border-radius: 4px; 5273 | } 5274 | } 5275 | 5276 | @media (min-width: 768px) { 5277 | .navbar-header { 5278 | float: left; 5279 | } 5280 | } 5281 | 5282 | .navbar-collapse { 5283 | padding-right: 15px; 5284 | padding-left: 15px; 5285 | overflow-x: visible; 5286 | -webkit-overflow-scrolling: touch; 5287 | border-top: 1px solid transparent; 5288 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); 5289 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); 5290 | } 5291 | 5292 | .navbar-collapse.in { 5293 | overflow-y: auto; 5294 | } 5295 | 5296 | @media (min-width: 768px) { 5297 | .navbar-collapse { 5298 | width: auto; 5299 | border-top: 0; 5300 | -webkit-box-shadow: none; 5301 | box-shadow: none; 5302 | } 5303 | 5304 | .navbar-collapse.collapse { 5305 | display: block !important; 5306 | height: auto !important; 5307 | padding-bottom: 0; 5308 | overflow: visible !important; 5309 | } 5310 | 5311 | .navbar-collapse.in { 5312 | overflow-y: visible; 5313 | } 5314 | 5315 | .navbar-fixed-top .navbar-collapse, 5316 | .navbar-static-top .navbar-collapse, 5317 | .navbar-fixed-bottom .navbar-collapse { 5318 | padding-right: 0; 5319 | padding-left: 0; 5320 | } 5321 | } 5322 | 5323 | .navbar-fixed-top .navbar-collapse, 5324 | .navbar-fixed-bottom .navbar-collapse { 5325 | max-height: 340px; 5326 | } 5327 | 5328 | @media (max-device-width: 480px) and (orientation: landscape) { 5329 | 5330 | .navbar-fixed-top .navbar-collapse, 5331 | .navbar-fixed-bottom .navbar-collapse { 5332 | max-height: 200px; 5333 | } 5334 | } 5335 | 5336 | .container>.navbar-header, 5337 | .container-fluid>.navbar-header, 5338 | .container>.navbar-collapse, 5339 | .container-fluid>.navbar-collapse { 5340 | margin-right: -15px; 5341 | margin-left: -15px; 5342 | } 5343 | 5344 | @media (min-width: 768px) { 5345 | 5346 | .container>.navbar-header, 5347 | .container-fluid>.navbar-header, 5348 | .container>.navbar-collapse, 5349 | .container-fluid>.navbar-collapse { 5350 | margin-right: 0; 5351 | margin-left: 0; 5352 | } 5353 | } 5354 | 5355 | .navbar-static-top { 5356 | z-index: 1000; 5357 | border-width: 0 0 1px; 5358 | } 5359 | 5360 | @media (min-width: 768px) { 5361 | .navbar-static-top { 5362 | border-radius: 0; 5363 | } 5364 | } 5365 | 5366 | .navbar-fixed-top, 5367 | .navbar-fixed-bottom { 5368 | position: fixed; 5369 | right: 0; 5370 | left: 0; 5371 | z-index: 1030; 5372 | } 5373 | 5374 | @media (min-width: 768px) { 5375 | 5376 | .navbar-fixed-top, 5377 | .navbar-fixed-bottom { 5378 | border-radius: 0; 5379 | } 5380 | } 5381 | 5382 | .navbar-fixed-top { 5383 | top: 0; 5384 | border-width: 0 0 1px; 5385 | } 5386 | 5387 | .navbar-fixed-bottom { 5388 | bottom: 0; 5389 | margin-bottom: 0; 5390 | border-width: 1px 0 0; 5391 | } 5392 | 5393 | .navbar-brand { 5394 | float: left; 5395 | height: 50px; 5396 | padding: 15px 15px; 5397 | font-size: 18px; 5398 | line-height: 20px; 5399 | } 5400 | 5401 | .navbar-brand:hover, 5402 | .navbar-brand:focus { 5403 | text-decoration: none; 5404 | } 5405 | 5406 | .navbar-brand>img { 5407 | display: block; 5408 | } 5409 | 5410 | @media (min-width: 768px) { 5411 | 5412 | .navbar>.container .navbar-brand, 5413 | .navbar>.container-fluid .navbar-brand { 5414 | margin-left: -15px; 5415 | } 5416 | } 5417 | 5418 | .navbar-toggle { 5419 | position: relative; 5420 | float: right; 5421 | padding: 9px 10px; 5422 | margin-top: 8px; 5423 | margin-right: 15px; 5424 | margin-bottom: 8px; 5425 | background-color: transparent; 5426 | background-image: none; 5427 | border: 1px solid transparent; 5428 | border-radius: 4px; 5429 | } 5430 | 5431 | .navbar-toggle:focus { 5432 | outline: 0; 5433 | } 5434 | 5435 | .navbar-toggle .icon-bar { 5436 | display: block; 5437 | width: 22px; 5438 | height: 2px; 5439 | border-radius: 1px; 5440 | } 5441 | 5442 | .navbar-toggle .icon-bar+.icon-bar { 5443 | margin-top: 4px; 5444 | } 5445 | 5446 | @media (min-width: 768px) { 5447 | .navbar-toggle { 5448 | display: none; 5449 | } 5450 | } 5451 | 5452 | .navbar-nav { 5453 | margin: 7.5px -15px; 5454 | } 5455 | 5456 | .navbar-nav>li>a { 5457 | padding-top: 10px; 5458 | padding-bottom: 10px; 5459 | line-height: 20px; 5460 | } 5461 | 5462 | @media (max-width: 767px) { 5463 | .navbar-nav .open .dropdown-menu { 5464 | position: static; 5465 | float: none; 5466 | width: auto; 5467 | margin-top: 0; 5468 | background-color: transparent; 5469 | border: 0; 5470 | -webkit-box-shadow: none; 5471 | box-shadow: none; 5472 | } 5473 | 5474 | .navbar-nav .open .dropdown-menu>li>a, 5475 | .navbar-nav .open .dropdown-menu .dropdown-header { 5476 | padding: 5px 15px 5px 25px; 5477 | } 5478 | 5479 | .navbar-nav .open .dropdown-menu>li>a { 5480 | line-height: 20px; 5481 | } 5482 | 5483 | .navbar-nav .open .dropdown-menu>li>a:hover, 5484 | .navbar-nav .open .dropdown-menu>li>a:focus { 5485 | background-image: none; 5486 | } 5487 | } 5488 | 5489 | @media (min-width: 768px) { 5490 | .navbar-nav { 5491 | float: left; 5492 | margin: 0; 5493 | } 5494 | 5495 | .navbar-nav>li { 5496 | float: left; 5497 | } 5498 | 5499 | .navbar-nav>li>a { 5500 | padding-top: 15px; 5501 | padding-bottom: 15px; 5502 | } 5503 | } 5504 | 5505 | .navbar-form { 5506 | padding: 10px 15px; 5507 | margin-top: 8px; 5508 | margin-right: -15px; 5509 | margin-bottom: 8px; 5510 | margin-left: -15px; 5511 | border-top: 1px solid transparent; 5512 | border-bottom: 1px solid transparent; 5513 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); 5514 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); 5515 | } 5516 | 5517 | @media (min-width: 768px) { 5518 | .navbar-form .form-group { 5519 | display: inline-block; 5520 | margin-bottom: 0; 5521 | vertical-align: middle; 5522 | } 5523 | 5524 | .navbar-form .form-control { 5525 | display: inline-block; 5526 | width: auto; 5527 | vertical-align: middle; 5528 | } 5529 | 5530 | .navbar-form .form-control-static { 5531 | display: inline-block; 5532 | } 5533 | 5534 | .navbar-form .input-group { 5535 | display: inline-table; 5536 | vertical-align: middle; 5537 | } 5538 | 5539 | .navbar-form .input-group .input-group-addon, 5540 | .navbar-form .input-group .input-group-btn, 5541 | .navbar-form .input-group .form-control { 5542 | width: auto; 5543 | } 5544 | 5545 | .navbar-form .input-group>.form-control { 5546 | width: 100%; 5547 | } 5548 | 5549 | .navbar-form .control-label { 5550 | margin-bottom: 0; 5551 | vertical-align: middle; 5552 | } 5553 | 5554 | .navbar-form .radio, 5555 | .navbar-form .checkbox { 5556 | display: inline-block; 5557 | margin-top: 0; 5558 | margin-bottom: 0; 5559 | vertical-align: middle; 5560 | } 5561 | 5562 | .navbar-form .radio label, 5563 | .navbar-form .checkbox label { 5564 | padding-left: 0; 5565 | } 5566 | 5567 | .navbar-form .radio input[type="radio"], 5568 | .navbar-form .checkbox input[type="checkbox"] { 5569 | position: relative; 5570 | margin-left: 0; 5571 | } 5572 | 5573 | .navbar-form .has-feedback .form-control-feedback { 5574 | top: 0; 5575 | } 5576 | } 5577 | 5578 | @media (max-width: 767px) { 5579 | .navbar-form .form-group { 5580 | margin-bottom: 5px; 5581 | } 5582 | 5583 | .navbar-form .form-group:last-child { 5584 | margin-bottom: 0; 5585 | } 5586 | } 5587 | 5588 | @media (min-width: 768px) { 5589 | .navbar-form { 5590 | width: auto; 5591 | padding-top: 0; 5592 | padding-bottom: 0; 5593 | margin-right: 0; 5594 | margin-left: 0; 5595 | border: 0; 5596 | -webkit-box-shadow: none; 5597 | box-shadow: none; 5598 | } 5599 | } 5600 | 5601 | .navbar-nav>li>.dropdown-menu { 5602 | margin-top: 0; 5603 | border-top-left-radius: 0; 5604 | border-top-right-radius: 0; 5605 | } 5606 | 5607 | .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { 5608 | margin-bottom: 0; 5609 | border-top-left-radius: 4px; 5610 | border-top-right-radius: 4px; 5611 | border-bottom-right-radius: 0; 5612 | border-bottom-left-radius: 0; 5613 | } 5614 | 5615 | .navbar-btn { 5616 | margin-top: 8px; 5617 | margin-bottom: 8px; 5618 | } 5619 | 5620 | .navbar-btn.btn-sm { 5621 | margin-top: 10px; 5622 | margin-bottom: 10px; 5623 | } 5624 | 5625 | .navbar-btn.btn-xs { 5626 | margin-top: 14px; 5627 | margin-bottom: 14px; 5628 | } 5629 | 5630 | .navbar-text { 5631 | margin-top: 15px; 5632 | margin-bottom: 15px; 5633 | } 5634 | 5635 | @media (min-width: 768px) { 5636 | .navbar-text { 5637 | float: left; 5638 | margin-right: 15px; 5639 | margin-left: 15px; 5640 | } 5641 | } 5642 | 5643 | @media (min-width: 768px) { 5644 | .navbar-left { 5645 | float: left !important; 5646 | } 5647 | 5648 | .navbar-right { 5649 | float: right !important; 5650 | margin-right: -15px; 5651 | } 5652 | 5653 | .navbar-right~.navbar-right { 5654 | margin-right: 0; 5655 | } 5656 | } 5657 | 5658 | .navbar-default { 5659 | background-color: #f8f8f8; 5660 | border-color: #e7e7e7; 5661 | } 5662 | 5663 | .navbar-default .navbar-brand { 5664 | color: #777; 5665 | } 5666 | 5667 | .navbar-default .navbar-brand:hover, 5668 | .navbar-default .navbar-brand:focus { 5669 | color: #5e5e5e; 5670 | background-color: transparent; 5671 | } 5672 | 5673 | .navbar-default .navbar-text { 5674 | color: #777; 5675 | } 5676 | 5677 | .navbar-default .navbar-nav>li>a { 5678 | color: #777; 5679 | } 5680 | 5681 | .navbar-default .navbar-nav>li>a:hover, 5682 | .navbar-default .navbar-nav>li>a:focus { 5683 | color: #333; 5684 | background-color: transparent; 5685 | } 5686 | 5687 | .navbar-default .navbar-nav>.active>a, 5688 | .navbar-default .navbar-nav>.active>a:hover, 5689 | .navbar-default .navbar-nav>.active>a:focus { 5690 | color: #555; 5691 | background-color: #e7e7e7; 5692 | } 5693 | 5694 | .navbar-default .navbar-nav>.disabled>a, 5695 | .navbar-default .navbar-nav>.disabled>a:hover, 5696 | .navbar-default .navbar-nav>.disabled>a:focus { 5697 | color: #ccc; 5698 | background-color: transparent; 5699 | } 5700 | 5701 | .navbar-default .navbar-toggle { 5702 | border-color: #ddd; 5703 | } 5704 | 5705 | .navbar-default .navbar-toggle:hover, 5706 | .navbar-default .navbar-toggle:focus { 5707 | background-color: #ddd; 5708 | } 5709 | 5710 | .navbar-default .navbar-toggle .icon-bar { 5711 | background-color: #888; 5712 | } 5713 | 5714 | .navbar-default .navbar-collapse, 5715 | .navbar-default .navbar-form { 5716 | border-color: #e7e7e7; 5717 | } 5718 | 5719 | .navbar-default .navbar-nav>.open>a, 5720 | .navbar-default .navbar-nav>.open>a:hover, 5721 | .navbar-default .navbar-nav>.open>a:focus { 5722 | color: #555; 5723 | background-color: #e7e7e7; 5724 | } 5725 | 5726 | @media (max-width: 767px) { 5727 | .navbar-default .navbar-nav .open .dropdown-menu>li>a { 5728 | color: #777; 5729 | } 5730 | 5731 | .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, 5732 | .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus { 5733 | color: #333; 5734 | background-color: transparent; 5735 | } 5736 | 5737 | .navbar-default .navbar-nav .open .dropdown-menu>.active>a, 5738 | .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, 5739 | .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus { 5740 | color: #555; 5741 | background-color: #e7e7e7; 5742 | } 5743 | 5744 | .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, 5745 | .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, 5746 | .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus { 5747 | color: #ccc; 5748 | background-color: transparent; 5749 | } 5750 | } 5751 | 5752 | .navbar-default .navbar-link { 5753 | color: #777; 5754 | } 5755 | 5756 | .navbar-default .navbar-link:hover { 5757 | color: #333; 5758 | } 5759 | 5760 | .navbar-default .btn-link { 5761 | color: #777; 5762 | } 5763 | 5764 | .navbar-default .btn-link:hover, 5765 | .navbar-default .btn-link:focus { 5766 | color: #333; 5767 | } 5768 | 5769 | .navbar-default .btn-link[disabled]:hover, 5770 | fieldset[disabled] .navbar-default .btn-link:hover, 5771 | .navbar-default .btn-link[disabled]:focus, 5772 | fieldset[disabled] .navbar-default .btn-link:focus { 5773 | color: #ccc; 5774 | } 5775 | 5776 | .navbar-inverse { 5777 | background-color: #222; 5778 | border-color: #080808; 5779 | } 5780 | 5781 | .navbar-inverse .navbar-brand { 5782 | color: #9d9d9d; 5783 | } 5784 | 5785 | .navbar-inverse .navbar-brand:hover, 5786 | .navbar-inverse .navbar-brand:focus { 5787 | color: #fff; 5788 | background-color: transparent; 5789 | } 5790 | 5791 | .navbar-inverse .navbar-text { 5792 | color: #9d9d9d; 5793 | } 5794 | 5795 | .navbar-inverse .navbar-nav>li>a { 5796 | color: #9d9d9d; 5797 | } 5798 | 5799 | .navbar-inverse .navbar-nav>li>a:hover, 5800 | .navbar-inverse .navbar-nav>li>a:focus { 5801 | color: #fff; 5802 | background-color: transparent; 5803 | } 5804 | 5805 | .navbar-inverse .navbar-nav>.active>a, 5806 | .navbar-inverse .navbar-nav>.active>a:hover, 5807 | .navbar-inverse .navbar-nav>.active>a:focus { 5808 | color: #fff; 5809 | background-color: #080808; 5810 | } 5811 | 5812 | .navbar-inverse .navbar-nav>.disabled>a, 5813 | .navbar-inverse .navbar-nav>.disabled>a:hover, 5814 | .navbar-inverse .navbar-nav>.disabled>a:focus { 5815 | color: #444; 5816 | background-color: transparent; 5817 | } 5818 | 5819 | .navbar-inverse .navbar-toggle { 5820 | border-color: #333; 5821 | } 5822 | 5823 | .navbar-inverse .navbar-toggle:hover, 5824 | .navbar-inverse .navbar-toggle:focus { 5825 | background-color: #333; 5826 | } 5827 | 5828 | .navbar-inverse .navbar-toggle .icon-bar { 5829 | background-color: #fff; 5830 | } 5831 | 5832 | .navbar-inverse .navbar-collapse, 5833 | .navbar-inverse .navbar-form { 5834 | border-color: #101010; 5835 | } 5836 | 5837 | .navbar-inverse .navbar-nav>.open>a, 5838 | .navbar-inverse .navbar-nav>.open>a:hover, 5839 | .navbar-inverse .navbar-nav>.open>a:focus { 5840 | color: #fff; 5841 | background-color: #080808; 5842 | } 5843 | 5844 | @media (max-width: 767px) { 5845 | .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { 5846 | border-color: #080808; 5847 | } 5848 | 5849 | .navbar-inverse .navbar-nav .open .dropdown-menu .divider { 5850 | background-color: #080808; 5851 | } 5852 | 5853 | .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { 5854 | color: #9d9d9d; 5855 | } 5856 | 5857 | .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, 5858 | .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus { 5859 | color: #fff; 5860 | background-color: transparent; 5861 | } 5862 | 5863 | .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, 5864 | .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, 5865 | .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus { 5866 | color: #fff; 5867 | background-color: #080808; 5868 | } 5869 | 5870 | .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, 5871 | .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, 5872 | .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus { 5873 | color: #444; 5874 | background-color: transparent; 5875 | } 5876 | } 5877 | 5878 | .navbar-inverse .navbar-link { 5879 | color: #9d9d9d; 5880 | } 5881 | 5882 | .navbar-inverse .navbar-link:hover { 5883 | color: #fff; 5884 | } 5885 | 5886 | .navbar-inverse .btn-link { 5887 | color: #9d9d9d; 5888 | } 5889 | 5890 | .navbar-inverse .btn-link:hover, 5891 | .navbar-inverse .btn-link:focus { 5892 | color: #fff; 5893 | } 5894 | 5895 | .navbar-inverse .btn-link[disabled]:hover, 5896 | fieldset[disabled] .navbar-inverse .btn-link:hover, 5897 | .navbar-inverse .btn-link[disabled]:focus, 5898 | fieldset[disabled] .navbar-inverse .btn-link:focus { 5899 | color: #444; 5900 | } 5901 | 5902 | .breadcrumb { 5903 | padding: 8px 15px; 5904 | margin-bottom: 20px; 5905 | list-style: none; 5906 | background-color: #f5f5f5; 5907 | border-radius: 4px; 5908 | } 5909 | 5910 | .breadcrumb>li { 5911 | display: inline-block; 5912 | } 5913 | 5914 | .breadcrumb>li+li:before { 5915 | padding: 0 5px; 5916 | color: #ccc; 5917 | content: "/\00a0"; 5918 | } 5919 | 5920 | .breadcrumb>.active { 5921 | color: #777; 5922 | } 5923 | 5924 | .pagination { 5925 | display: inline-block; 5926 | padding-left: 0; 5927 | margin: 20px 0; 5928 | border-radius: 4px; 5929 | } 5930 | 5931 | .pagination>li { 5932 | display: inline; 5933 | } 5934 | 5935 | .pagination>li>a, 5936 | .pagination>li>span { 5937 | position: relative; 5938 | float: left; 5939 | padding: 6px 12px; 5940 | margin-left: -1px; 5941 | line-height: 1.42857143; 5942 | color: #337ab7; 5943 | text-decoration: none; 5944 | background-color: #fff; 5945 | border: 1px solid #ddd; 5946 | } 5947 | 5948 | .pagination>li:first-child>a, 5949 | .pagination>li:first-child>span { 5950 | margin-left: 0; 5951 | border-top-left-radius: 4px; 5952 | border-bottom-left-radius: 4px; 5953 | } 5954 | 5955 | .pagination>li:last-child>a, 5956 | .pagination>li:last-child>span { 5957 | border-top-right-radius: 4px; 5958 | border-bottom-right-radius: 4px; 5959 | } 5960 | 5961 | .pagination>li>a:hover, 5962 | .pagination>li>span:hover, 5963 | .pagination>li>a:focus, 5964 | .pagination>li>span:focus { 5965 | z-index: 3; 5966 | color: #23527c; 5967 | background-color: #eee; 5968 | border-color: #ddd; 5969 | } 5970 | 5971 | .pagination>.active>a, 5972 | .pagination>.active>span, 5973 | .pagination>.active>a:hover, 5974 | .pagination>.active>span:hover, 5975 | .pagination>.active>a:focus, 5976 | .pagination>.active>span:focus { 5977 | z-index: 2; 5978 | color: #fff; 5979 | cursor: default; 5980 | background-color: #337ab7; 5981 | border-color: #337ab7; 5982 | } 5983 | 5984 | .pagination>.disabled>span, 5985 | .pagination>.disabled>span:hover, 5986 | .pagination>.disabled>span:focus, 5987 | .pagination>.disabled>a, 5988 | .pagination>.disabled>a:hover, 5989 | .pagination>.disabled>a:focus { 5990 | color: #777; 5991 | cursor: not-allowed; 5992 | background-color: #fff; 5993 | border-color: #ddd; 5994 | } 5995 | 5996 | .pagination-lg>li>a, 5997 | .pagination-lg>li>span { 5998 | padding: 10px 16px; 5999 | font-size: 18px; 6000 | line-height: 1.3333333; 6001 | } 6002 | 6003 | .pagination-lg>li:first-child>a, 6004 | .pagination-lg>li:first-child>span { 6005 | border-top-left-radius: 6px; 6006 | border-bottom-left-radius: 6px; 6007 | } 6008 | 6009 | .pagination-lg>li:last-child>a, 6010 | .pagination-lg>li:last-child>span { 6011 | border-top-right-radius: 6px; 6012 | border-bottom-right-radius: 6px; 6013 | } 6014 | 6015 | .pagination-sm>li>a, 6016 | .pagination-sm>li>span { 6017 | padding: 5px 10px; 6018 | font-size: 12px; 6019 | line-height: 1.5; 6020 | } 6021 | 6022 | .pagination-sm>li:first-child>a, 6023 | .pagination-sm>li:first-child>span { 6024 | border-top-left-radius: 3px; 6025 | border-bottom-left-radius: 3px; 6026 | } 6027 | 6028 | .pagination-sm>li:last-child>a, 6029 | .pagination-sm>li:last-child>span { 6030 | border-top-right-radius: 3px; 6031 | border-bottom-right-radius: 3px; 6032 | } 6033 | 6034 | .pager { 6035 | padding-left: 0; 6036 | margin: 20px 0; 6037 | text-align: center; 6038 | list-style: none; 6039 | } 6040 | 6041 | .pager li { 6042 | display: inline; 6043 | } 6044 | 6045 | .pager li>a, 6046 | .pager li>span { 6047 | display: inline-block; 6048 | padding: 5px 14px; 6049 | background-color: #fff; 6050 | border: 1px solid #ddd; 6051 | border-radius: 15px; 6052 | } 6053 | 6054 | .pager li>a:hover, 6055 | .pager li>a:focus { 6056 | text-decoration: none; 6057 | background-color: #eee; 6058 | } 6059 | 6060 | .pager .next>a, 6061 | .pager .next>span { 6062 | float: right; 6063 | } 6064 | 6065 | .pager .previous>a, 6066 | .pager .previous>span { 6067 | float: left; 6068 | } 6069 | 6070 | .pager .disabled>a, 6071 | .pager .disabled>a:hover, 6072 | .pager .disabled>a:focus, 6073 | .pager .disabled>span { 6074 | color: #777; 6075 | cursor: not-allowed; 6076 | background-color: #fff; 6077 | } 6078 | 6079 | .label { 6080 | display: inline; 6081 | padding: .2em .6em .3em; 6082 | font-size: 75%; 6083 | font-weight: bold; 6084 | line-height: 1; 6085 | color: #fff; 6086 | text-align: center; 6087 | white-space: nowrap; 6088 | vertical-align: baseline; 6089 | border-radius: .25em; 6090 | } 6091 | 6092 | a.label:hover, 6093 | a.label:focus { 6094 | color: #fff; 6095 | text-decoration: none; 6096 | cursor: pointer; 6097 | } 6098 | 6099 | .label:empty { 6100 | display: none; 6101 | } 6102 | 6103 | .btn .label { 6104 | position: relative; 6105 | top: -1px; 6106 | } 6107 | 6108 | .label-default { 6109 | background-color: #777; 6110 | } 6111 | 6112 | .label-default[href]:hover, 6113 | .label-default[href]:focus { 6114 | background-color: #5e5e5e; 6115 | } 6116 | 6117 | .label-primary { 6118 | background-color: #337ab7; 6119 | } 6120 | 6121 | .label-primary[href]:hover, 6122 | .label-primary[href]:focus { 6123 | background-color: #286090; 6124 | } 6125 | 6126 | .label-success { 6127 | background-color: #5cb85c; 6128 | } 6129 | 6130 | .label-success[href]:hover, 6131 | .label-success[href]:focus { 6132 | background-color: #449d44; 6133 | } 6134 | 6135 | .label-info { 6136 | background-color: #5bc0de; 6137 | } 6138 | 6139 | .label-info[href]:hover, 6140 | .label-info[href]:focus { 6141 | background-color: #31b0d5; 6142 | } 6143 | 6144 | .label-warning { 6145 | background-color: #f0ad4e; 6146 | } 6147 | 6148 | .label-warning[href]:hover, 6149 | .label-warning[href]:focus { 6150 | background-color: #ec971f; 6151 | } 6152 | 6153 | .label-danger { 6154 | background-color: #d9534f; 6155 | } 6156 | 6157 | .label-danger[href]:hover, 6158 | .label-danger[href]:focus { 6159 | background-color: #c9302c; 6160 | } 6161 | 6162 | .badge { 6163 | display: inline-block; 6164 | min-width: 10px; 6165 | padding: 3px 7px; 6166 | font-size: 12px; 6167 | font-weight: bold; 6168 | line-height: 1; 6169 | color: #fff; 6170 | text-align: center; 6171 | white-space: nowrap; 6172 | vertical-align: middle; 6173 | background-color: #777; 6174 | border-radius: 10px; 6175 | } 6176 | 6177 | .badge:empty { 6178 | display: none; 6179 | } 6180 | 6181 | .btn .badge { 6182 | position: relative; 6183 | top: -1px; 6184 | } 6185 | 6186 | .btn-xs .badge, 6187 | .btn-group-xs>.btn .badge { 6188 | top: 0; 6189 | padding: 1px 5px; 6190 | } 6191 | 6192 | a.badge:hover, 6193 | a.badge:focus { 6194 | color: #fff; 6195 | text-decoration: none; 6196 | cursor: pointer; 6197 | } 6198 | 6199 | .list-group-item.active>.badge, 6200 | .nav-pills>.active>a>.badge { 6201 | color: #337ab7; 6202 | background-color: #fff; 6203 | } 6204 | 6205 | .list-group-item>.badge { 6206 | float: right; 6207 | } 6208 | 6209 | .list-group-item>.badge+.badge { 6210 | margin-right: 5px; 6211 | } 6212 | 6213 | .nav-pills>li>a>.badge { 6214 | margin-left: 3px; 6215 | } 6216 | 6217 | .jumbotron { 6218 | padding-top: 30px; 6219 | padding-bottom: 30px; 6220 | margin-bottom: 30px; 6221 | color: inherit; 6222 | background-color: #eee; 6223 | } 6224 | 6225 | .jumbotron h1, 6226 | .jumbotron .h1 { 6227 | color: inherit; 6228 | } 6229 | 6230 | .jumbotron p { 6231 | margin-bottom: 15px; 6232 | font-size: 21px; 6233 | font-weight: 200; 6234 | } 6235 | 6236 | .jumbotron>hr { 6237 | border-top-color: #d5d5d5; 6238 | } 6239 | 6240 | .container .jumbotron, 6241 | .container-fluid .jumbotron { 6242 | border-radius: 6px; 6243 | } 6244 | 6245 | .jumbotron .container { 6246 | max-width: 100%; 6247 | } 6248 | 6249 | @media screen and (min-width: 768px) { 6250 | .jumbotron { 6251 | padding-top: 48px; 6252 | padding-bottom: 48px; 6253 | } 6254 | 6255 | .container .jumbotron, 6256 | .container-fluid .jumbotron { 6257 | padding-right: 60px; 6258 | padding-left: 60px; 6259 | } 6260 | 6261 | .jumbotron h1, 6262 | .jumbotron .h1 { 6263 | font-size: 63px; 6264 | } 6265 | } 6266 | 6267 | .thumbnail { 6268 | display: block; 6269 | padding: 4px; 6270 | margin-bottom: 20px; 6271 | line-height: 1.42857143; 6272 | background-color: #fff; 6273 | border: 1px solid #ddd; 6274 | border-radius: 4px; 6275 | -webkit-transition: border .2s ease-in-out; 6276 | -o-transition: border .2s ease-in-out; 6277 | transition: border .2s ease-in-out; 6278 | } 6279 | 6280 | .thumbnail>img, 6281 | .thumbnail a>img { 6282 | margin-right: auto; 6283 | margin-left: auto; 6284 | } 6285 | 6286 | a.thumbnail:hover, 6287 | a.thumbnail:focus, 6288 | a.thumbnail.active { 6289 | border-color: #337ab7; 6290 | } 6291 | 6292 | .thumbnail .caption { 6293 | padding: 9px; 6294 | color: #333; 6295 | } 6296 | 6297 | .alert { 6298 | padding: 15px; 6299 | margin-bottom: 20px; 6300 | border: 1px solid transparent; 6301 | border-radius: 4px; 6302 | } 6303 | 6304 | .alert h4 { 6305 | margin-top: 0; 6306 | color: inherit; 6307 | } 6308 | 6309 | .alert .alert-link { 6310 | font-weight: bold; 6311 | } 6312 | 6313 | .alert>p, 6314 | .alert>ul { 6315 | margin-bottom: 0; 6316 | } 6317 | 6318 | .alert>p+p { 6319 | margin-top: 5px; 6320 | } 6321 | 6322 | .alert-dismissable, 6323 | .alert-dismissible { 6324 | padding-right: 35px; 6325 | } 6326 | 6327 | .alert-dismissable .close, 6328 | .alert-dismissible .close { 6329 | position: relative; 6330 | top: -2px; 6331 | right: -21px; 6332 | color: inherit; 6333 | } 6334 | 6335 | .alert-success { 6336 | color: #3c763d; 6337 | background-color: #dff0d8; 6338 | border-color: #d6e9c6; 6339 | } 6340 | 6341 | .alert-success hr { 6342 | border-top-color: #c9e2b3; 6343 | } 6344 | 6345 | .alert-success .alert-link { 6346 | color: #2b542c; 6347 | } 6348 | 6349 | .alert-info { 6350 | color: #31708f; 6351 | background-color: #d9edf7; 6352 | border-color: #bce8f1; 6353 | } 6354 | 6355 | .alert-info hr { 6356 | border-top-color: #a6e1ec; 6357 | } 6358 | 6359 | .alert-info .alert-link { 6360 | color: #245269; 6361 | } 6362 | 6363 | .alert-warning { 6364 | color: #8a6d3b; 6365 | background-color: #fcf8e3; 6366 | border-color: #faebcc; 6367 | } 6368 | 6369 | .alert-warning hr { 6370 | border-top-color: #f7e1b5; 6371 | } 6372 | 6373 | .alert-warning .alert-link { 6374 | color: #66512c; 6375 | } 6376 | 6377 | .alert-danger { 6378 | color: #a94442; 6379 | background-color: #f2dede; 6380 | border-color: #ebccd1; 6381 | } 6382 | 6383 | .alert-danger hr { 6384 | border-top-color: #e4b9c0; 6385 | } 6386 | 6387 | .alert-danger .alert-link { 6388 | color: #843534; 6389 | } 6390 | 6391 | @-webkit-keyframes progress-bar-stripes { 6392 | from { 6393 | background-position: 40px 0; 6394 | } 6395 | 6396 | to { 6397 | background-position: 0 0; 6398 | } 6399 | } 6400 | 6401 | @-o-keyframes progress-bar-stripes { 6402 | from { 6403 | background-position: 40px 0; 6404 | } 6405 | 6406 | to { 6407 | background-position: 0 0; 6408 | } 6409 | } 6410 | 6411 | @keyframes progress-bar-stripes { 6412 | from { 6413 | background-position: 40px 0; 6414 | } 6415 | 6416 | to { 6417 | background-position: 0 0; 6418 | } 6419 | } 6420 | 6421 | .progress { 6422 | height: 20px; 6423 | margin-bottom: 20px; 6424 | overflow: hidden; 6425 | background-color: #f5f5f5; 6426 | border-radius: 4px; 6427 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); 6428 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); 6429 | } 6430 | 6431 | .progress-bar { 6432 | float: left; 6433 | width: 0; 6434 | height: 100%; 6435 | font-size: 12px; 6436 | line-height: 20px; 6437 | color: #fff; 6438 | text-align: center; 6439 | background-color: #337ab7; 6440 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); 6441 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); 6442 | -webkit-transition: width .6s ease; 6443 | -o-transition: width .6s ease; 6444 | transition: width .6s ease; 6445 | } 6446 | 6447 | .progress-striped .progress-bar, 6448 | .progress-bar-striped { 6449 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6450 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6451 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6452 | -webkit-background-size: 40px 40px; 6453 | background-size: 40px 40px; 6454 | } 6455 | 6456 | .progress.active .progress-bar, 6457 | .progress-bar.active { 6458 | -webkit-animation: progress-bar-stripes 2s linear infinite; 6459 | -o-animation: progress-bar-stripes 2s linear infinite; 6460 | animation: progress-bar-stripes 2s linear infinite; 6461 | } 6462 | 6463 | .progress-bar-success { 6464 | background-color: #5cb85c; 6465 | } 6466 | 6467 | .progress-striped .progress-bar-success { 6468 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6469 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6470 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6471 | } 6472 | 6473 | .progress-bar-info { 6474 | background-color: #5bc0de; 6475 | } 6476 | 6477 | .progress-striped .progress-bar-info { 6478 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6479 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6480 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6481 | } 6482 | 6483 | .progress-bar-warning { 6484 | background-color: #f0ad4e; 6485 | } 6486 | 6487 | .progress-striped .progress-bar-warning { 6488 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6489 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6490 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6491 | } 6492 | 6493 | .progress-bar-danger { 6494 | background-color: #d9534f; 6495 | } 6496 | 6497 | .progress-striped .progress-bar-danger { 6498 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6499 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6500 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 6501 | } 6502 | 6503 | .media { 6504 | margin-top: 15px; 6505 | } 6506 | 6507 | .media:first-child { 6508 | margin-top: 0; 6509 | } 6510 | 6511 | .media, 6512 | .media-body { 6513 | overflow: hidden; 6514 | zoom: 1; 6515 | } 6516 | 6517 | .media-body { 6518 | width: 10000px; 6519 | } 6520 | 6521 | .media-object { 6522 | display: block; 6523 | } 6524 | 6525 | .media-object.img-thumbnail { 6526 | max-width: none; 6527 | } 6528 | 6529 | .media-right, 6530 | .media>.pull-right { 6531 | padding-left: 10px; 6532 | } 6533 | 6534 | .media-left, 6535 | .media>.pull-left { 6536 | padding-right: 10px; 6537 | } 6538 | 6539 | .media-left, 6540 | .media-right, 6541 | .media-body { 6542 | display: table-cell; 6543 | vertical-align: top; 6544 | } 6545 | 6546 | .media-middle { 6547 | vertical-align: middle; 6548 | } 6549 | 6550 | .media-bottom { 6551 | vertical-align: bottom; 6552 | } 6553 | 6554 | .media-heading { 6555 | margin-top: 0; 6556 | margin-bottom: 5px; 6557 | } 6558 | 6559 | .media-list { 6560 | padding-left: 0; 6561 | list-style: none; 6562 | } 6563 | 6564 | .list-group { 6565 | padding-left: 0; 6566 | margin-bottom: 20px; 6567 | } 6568 | 6569 | .list-group-item { 6570 | position: relative; 6571 | display: block; 6572 | padding: 10px 15px; 6573 | margin-bottom: -1px; 6574 | background-color: #fff; 6575 | border: 1px solid #ddd; 6576 | } 6577 | 6578 | .list-group-item:first-child { 6579 | border-top-left-radius: 4px; 6580 | border-top-right-radius: 4px; 6581 | } 6582 | 6583 | .list-group-item:last-child { 6584 | margin-bottom: 0; 6585 | border-bottom-right-radius: 4px; 6586 | border-bottom-left-radius: 4px; 6587 | } 6588 | 6589 | a.list-group-item, 6590 | button.list-group-item { 6591 | color: #555; 6592 | } 6593 | 6594 | a.list-group-item .list-group-item-heading, 6595 | button.list-group-item .list-group-item-heading { 6596 | color: #333; 6597 | } 6598 | 6599 | a.list-group-item:hover, 6600 | button.list-group-item:hover, 6601 | a.list-group-item:focus, 6602 | button.list-group-item:focus { 6603 | color: #555; 6604 | text-decoration: none; 6605 | background-color: #f5f5f5; 6606 | } 6607 | 6608 | button.list-group-item { 6609 | width: 100%; 6610 | text-align: left; 6611 | } 6612 | 6613 | .list-group-item.disabled, 6614 | .list-group-item.disabled:hover, 6615 | .list-group-item.disabled:focus { 6616 | color: #777; 6617 | cursor: not-allowed; 6618 | background-color: #eee; 6619 | } 6620 | 6621 | .list-group-item.disabled .list-group-item-heading, 6622 | .list-group-item.disabled:hover .list-group-item-heading, 6623 | .list-group-item.disabled:focus .list-group-item-heading { 6624 | color: inherit; 6625 | } 6626 | 6627 | .list-group-item.disabled .list-group-item-text, 6628 | .list-group-item.disabled:hover .list-group-item-text, 6629 | .list-group-item.disabled:focus .list-group-item-text { 6630 | color: #777; 6631 | } 6632 | 6633 | .list-group-item.active, 6634 | .list-group-item.active:hover, 6635 | .list-group-item.active:focus { 6636 | z-index: 2; 6637 | color: #fff; 6638 | background-color: #337ab7; 6639 | border-color: #337ab7; 6640 | } 6641 | 6642 | .list-group-item.active .list-group-item-heading, 6643 | .list-group-item.active:hover .list-group-item-heading, 6644 | .list-group-item.active:focus .list-group-item-heading, 6645 | .list-group-item.active .list-group-item-heading>small, 6646 | .list-group-item.active:hover .list-group-item-heading>small, 6647 | .list-group-item.active:focus .list-group-item-heading>small, 6648 | .list-group-item.active .list-group-item-heading>.small, 6649 | .list-group-item.active:hover .list-group-item-heading>.small, 6650 | .list-group-item.active:focus .list-group-item-heading>.small { 6651 | color: inherit; 6652 | } 6653 | 6654 | .list-group-item.active .list-group-item-text, 6655 | .list-group-item.active:hover .list-group-item-text, 6656 | .list-group-item.active:focus .list-group-item-text { 6657 | color: #c7ddef; 6658 | } 6659 | 6660 | .list-group-item-success { 6661 | color: #3c763d; 6662 | background-color: #dff0d8; 6663 | } 6664 | 6665 | a.list-group-item-success, 6666 | button.list-group-item-success { 6667 | color: #3c763d; 6668 | } 6669 | 6670 | a.list-group-item-success .list-group-item-heading, 6671 | button.list-group-item-success .list-group-item-heading { 6672 | color: inherit; 6673 | } 6674 | 6675 | a.list-group-item-success:hover, 6676 | button.list-group-item-success:hover, 6677 | a.list-group-item-success:focus, 6678 | button.list-group-item-success:focus { 6679 | color: #3c763d; 6680 | background-color: #d0e9c6; 6681 | } 6682 | 6683 | a.list-group-item-success.active, 6684 | button.list-group-item-success.active, 6685 | a.list-group-item-success.active:hover, 6686 | button.list-group-item-success.active:hover, 6687 | a.list-group-item-success.active:focus, 6688 | button.list-group-item-success.active:focus { 6689 | color: #fff; 6690 | background-color: #3c763d; 6691 | border-color: #3c763d; 6692 | } 6693 | 6694 | .list-group-item-info { 6695 | color: #31708f; 6696 | background-color: #d9edf7; 6697 | } 6698 | 6699 | a.list-group-item-info, 6700 | button.list-group-item-info { 6701 | color: #31708f; 6702 | } 6703 | 6704 | a.list-group-item-info .list-group-item-heading, 6705 | button.list-group-item-info .list-group-item-heading { 6706 | color: inherit; 6707 | } 6708 | 6709 | a.list-group-item-info:hover, 6710 | button.list-group-item-info:hover, 6711 | a.list-group-item-info:focus, 6712 | button.list-group-item-info:focus { 6713 | color: #31708f; 6714 | background-color: #c4e3f3; 6715 | } 6716 | 6717 | a.list-group-item-info.active, 6718 | button.list-group-item-info.active, 6719 | a.list-group-item-info.active:hover, 6720 | button.list-group-item-info.active:hover, 6721 | a.list-group-item-info.active:focus, 6722 | button.list-group-item-info.active:focus { 6723 | color: #fff; 6724 | background-color: #31708f; 6725 | border-color: #31708f; 6726 | } 6727 | 6728 | .list-group-item-warning { 6729 | color: #8a6d3b; 6730 | background-color: #fcf8e3; 6731 | } 6732 | 6733 | a.list-group-item-warning, 6734 | button.list-group-item-warning { 6735 | color: #8a6d3b; 6736 | } 6737 | 6738 | a.list-group-item-warning .list-group-item-heading, 6739 | button.list-group-item-warning .list-group-item-heading { 6740 | color: inherit; 6741 | } 6742 | 6743 | a.list-group-item-warning:hover, 6744 | button.list-group-item-warning:hover, 6745 | a.list-group-item-warning:focus, 6746 | button.list-group-item-warning:focus { 6747 | color: #8a6d3b; 6748 | background-color: #faf2cc; 6749 | } 6750 | 6751 | a.list-group-item-warning.active, 6752 | button.list-group-item-warning.active, 6753 | a.list-group-item-warning.active:hover, 6754 | button.list-group-item-warning.active:hover, 6755 | a.list-group-item-warning.active:focus, 6756 | button.list-group-item-warning.active:focus { 6757 | color: #fff; 6758 | background-color: #8a6d3b; 6759 | border-color: #8a6d3b; 6760 | } 6761 | 6762 | .list-group-item-danger { 6763 | color: #a94442; 6764 | background-color: #f2dede; 6765 | } 6766 | 6767 | a.list-group-item-danger, 6768 | button.list-group-item-danger { 6769 | color: #a94442; 6770 | } 6771 | 6772 | a.list-group-item-danger .list-group-item-heading, 6773 | button.list-group-item-danger .list-group-item-heading { 6774 | color: inherit; 6775 | } 6776 | 6777 | a.list-group-item-danger:hover, 6778 | button.list-group-item-danger:hover, 6779 | a.list-group-item-danger:focus, 6780 | button.list-group-item-danger:focus { 6781 | color: #a94442; 6782 | background-color: #ebcccc; 6783 | } 6784 | 6785 | a.list-group-item-danger.active, 6786 | button.list-group-item-danger.active, 6787 | a.list-group-item-danger.active:hover, 6788 | button.list-group-item-danger.active:hover, 6789 | a.list-group-item-danger.active:focus, 6790 | button.list-group-item-danger.active:focus { 6791 | color: #fff; 6792 | background-color: #a94442; 6793 | border-color: #a94442; 6794 | } 6795 | 6796 | .list-group-item-heading { 6797 | margin-top: 0; 6798 | margin-bottom: 5px; 6799 | } 6800 | 6801 | .list-group-item-text { 6802 | margin-bottom: 0; 6803 | line-height: 1.3; 6804 | } 6805 | 6806 | .panel { 6807 | margin-bottom: 20px; 6808 | background-color: #fff; 6809 | border: 1px solid transparent; 6810 | border-radius: 4px; 6811 | -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); 6812 | box-shadow: 0 1px 1px rgba(0, 0, 0, .05); 6813 | } 6814 | 6815 | .panel-body { 6816 | padding: 15px; 6817 | } 6818 | 6819 | .panel-heading { 6820 | padding: 10px 15px; 6821 | border-bottom: 1px solid transparent; 6822 | border-top-left-radius: 3px; 6823 | border-top-right-radius: 3px; 6824 | } 6825 | 6826 | .panel-heading>.dropdown .dropdown-toggle { 6827 | color: inherit; 6828 | } 6829 | 6830 | .panel-title { 6831 | margin-top: 0; 6832 | margin-bottom: 0; 6833 | font-size: 16px; 6834 | color: inherit; 6835 | } 6836 | 6837 | .panel-title>a, 6838 | .panel-title>small, 6839 | .panel-title>.small, 6840 | .panel-title>small>a, 6841 | .panel-title>.small>a { 6842 | color: inherit; 6843 | } 6844 | 6845 | .panel-footer { 6846 | padding: 10px 15px; 6847 | background-color: #f5f5f5; 6848 | border-top: 1px solid #ddd; 6849 | border-bottom-right-radius: 3px; 6850 | border-bottom-left-radius: 3px; 6851 | } 6852 | 6853 | .panel>.list-group, 6854 | .panel>.panel-collapse>.list-group { 6855 | margin-bottom: 0; 6856 | } 6857 | 6858 | .panel>.list-group .list-group-item, 6859 | .panel>.panel-collapse>.list-group .list-group-item { 6860 | border-width: 1px 0; 6861 | border-radius: 0; 6862 | } 6863 | 6864 | .panel>.list-group:first-child .list-group-item:first-child, 6865 | .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child { 6866 | border-top: 0; 6867 | border-top-left-radius: 3px; 6868 | border-top-right-radius: 3px; 6869 | } 6870 | 6871 | .panel>.list-group:last-child .list-group-item:last-child, 6872 | .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child { 6873 | border-bottom: 0; 6874 | border-bottom-right-radius: 3px; 6875 | border-bottom-left-radius: 3px; 6876 | } 6877 | 6878 | .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child { 6879 | border-top-left-radius: 0; 6880 | border-top-right-radius: 0; 6881 | } 6882 | 6883 | .panel-heading+.list-group .list-group-item:first-child { 6884 | border-top-width: 0; 6885 | } 6886 | 6887 | .list-group+.panel-footer { 6888 | border-top-width: 0; 6889 | } 6890 | 6891 | .panel>.table, 6892 | .panel>.table-responsive>.table, 6893 | .panel>.panel-collapse>.table { 6894 | margin-bottom: 0; 6895 | } 6896 | 6897 | .panel>.table caption, 6898 | .panel>.table-responsive>.table caption, 6899 | .panel>.panel-collapse>.table caption { 6900 | padding-right: 15px; 6901 | padding-left: 15px; 6902 | } 6903 | 6904 | .panel>.table:first-child, 6905 | .panel>.table-responsive:first-child>.table:first-child { 6906 | border-top-left-radius: 3px; 6907 | border-top-right-radius: 3px; 6908 | } 6909 | 6910 | .panel>.table:first-child>thead:first-child>tr:first-child, 6911 | .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child, 6912 | .panel>.table:first-child>tbody:first-child>tr:first-child, 6913 | .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child { 6914 | border-top-left-radius: 3px; 6915 | border-top-right-radius: 3px; 6916 | } 6917 | 6918 | .panel>.table:first-child>thead:first-child>tr:first-child td:first-child, 6919 | .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child, 6920 | .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child, 6921 | .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child, 6922 | .panel>.table:first-child>thead:first-child>tr:first-child th:first-child, 6923 | .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child, 6924 | .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child, 6925 | .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child { 6926 | border-top-left-radius: 3px; 6927 | } 6928 | 6929 | .panel>.table:first-child>thead:first-child>tr:first-child td:last-child, 6930 | .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child, 6931 | .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child, 6932 | .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child, 6933 | .panel>.table:first-child>thead:first-child>tr:first-child th:last-child, 6934 | .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child, 6935 | .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child, 6936 | .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child { 6937 | border-top-right-radius: 3px; 6938 | } 6939 | 6940 | .panel>.table:last-child, 6941 | .panel>.table-responsive:last-child>.table:last-child { 6942 | border-bottom-right-radius: 3px; 6943 | border-bottom-left-radius: 3px; 6944 | } 6945 | 6946 | .panel>.table:last-child>tbody:last-child>tr:last-child, 6947 | .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child, 6948 | .panel>.table:last-child>tfoot:last-child>tr:last-child, 6949 | .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child { 6950 | border-bottom-right-radius: 3px; 6951 | border-bottom-left-radius: 3px; 6952 | } 6953 | 6954 | .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child, 6955 | .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child, 6956 | .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child, 6957 | .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child, 6958 | .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child, 6959 | .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child, 6960 | .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child, 6961 | .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child { 6962 | border-bottom-left-radius: 3px; 6963 | } 6964 | 6965 | .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child, 6966 | .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child, 6967 | .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child, 6968 | .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child, 6969 | .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child, 6970 | .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child, 6971 | .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child, 6972 | .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child { 6973 | border-bottom-right-radius: 3px; 6974 | } 6975 | 6976 | .panel>.panel-body+.table, 6977 | .panel>.panel-body+.table-responsive, 6978 | .panel>.table+.panel-body, 6979 | .panel>.table-responsive+.panel-body { 6980 | border-top: 1px solid #ddd; 6981 | } 6982 | 6983 | .panel>.table>tbody:first-child>tr:first-child th, 6984 | .panel>.table>tbody:first-child>tr:first-child td { 6985 | border-top: 0; 6986 | } 6987 | 6988 | .panel>.table-bordered, 6989 | .panel>.table-responsive>.table-bordered { 6990 | border: 0; 6991 | } 6992 | 6993 | .panel>.table-bordered>thead>tr>th:first-child, 6994 | .panel>.table-responsive>.table-bordered>thead>tr>th:first-child, 6995 | .panel>.table-bordered>tbody>tr>th:first-child, 6996 | .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, 6997 | .panel>.table-bordered>tfoot>tr>th:first-child, 6998 | .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, 6999 | .panel>.table-bordered>thead>tr>td:first-child, 7000 | .panel>.table-responsive>.table-bordered>thead>tr>td:first-child, 7001 | .panel>.table-bordered>tbody>tr>td:first-child, 7002 | .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, 7003 | .panel>.table-bordered>tfoot>tr>td:first-child, 7004 | .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child { 7005 | border-left: 0; 7006 | } 7007 | 7008 | .panel>.table-bordered>thead>tr>th:last-child, 7009 | .panel>.table-responsive>.table-bordered>thead>tr>th:last-child, 7010 | .panel>.table-bordered>tbody>tr>th:last-child, 7011 | .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, 7012 | .panel>.table-bordered>tfoot>tr>th:last-child, 7013 | .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, 7014 | .panel>.table-bordered>thead>tr>td:last-child, 7015 | .panel>.table-responsive>.table-bordered>thead>tr>td:last-child, 7016 | .panel>.table-bordered>tbody>tr>td:last-child, 7017 | .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, 7018 | .panel>.table-bordered>tfoot>tr>td:last-child, 7019 | .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child { 7020 | border-right: 0; 7021 | } 7022 | 7023 | .panel>.table-bordered>thead>tr:first-child>td, 7024 | .panel>.table-responsive>.table-bordered>thead>tr:first-child>td, 7025 | .panel>.table-bordered>tbody>tr:first-child>td, 7026 | .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td, 7027 | .panel>.table-bordered>thead>tr:first-child>th, 7028 | .panel>.table-responsive>.table-bordered>thead>tr:first-child>th, 7029 | .panel>.table-bordered>tbody>tr:first-child>th, 7030 | .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th { 7031 | border-bottom: 0; 7032 | } 7033 | 7034 | .panel>.table-bordered>tbody>tr:last-child>td, 7035 | .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, 7036 | .panel>.table-bordered>tfoot>tr:last-child>td, 7037 | .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td, 7038 | .panel>.table-bordered>tbody>tr:last-child>th, 7039 | .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, 7040 | .panel>.table-bordered>tfoot>tr:last-child>th, 7041 | .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th { 7042 | border-bottom: 0; 7043 | } 7044 | 7045 | .panel>.table-responsive { 7046 | margin-bottom: 0; 7047 | border: 0; 7048 | } 7049 | 7050 | .panel-group { 7051 | margin-bottom: 20px; 7052 | } 7053 | 7054 | .panel-group .panel { 7055 | margin-bottom: 0; 7056 | border-radius: 4px; 7057 | } 7058 | 7059 | .panel-group .panel+.panel { 7060 | margin-top: 5px; 7061 | } 7062 | 7063 | .panel-group .panel-heading { 7064 | border-bottom: 0; 7065 | } 7066 | 7067 | .panel-group .panel-heading+.panel-collapse>.panel-body, 7068 | .panel-group .panel-heading+.panel-collapse>.list-group { 7069 | border-top: 1px solid #ddd; 7070 | } 7071 | 7072 | .panel-group .panel-footer { 7073 | border-top: 0; 7074 | } 7075 | 7076 | .panel-group .panel-footer+.panel-collapse .panel-body { 7077 | border-bottom: 1px solid #ddd; 7078 | } 7079 | 7080 | .panel-default { 7081 | border-color: #ddd; 7082 | } 7083 | 7084 | .panel-default>.panel-heading { 7085 | color: #333; 7086 | background-color: #f5f5f5; 7087 | border-color: #ddd; 7088 | } 7089 | 7090 | .panel-default>.panel-heading+.panel-collapse>.panel-body { 7091 | border-top-color: #ddd; 7092 | } 7093 | 7094 | .panel-default>.panel-heading .badge { 7095 | color: #f5f5f5; 7096 | background-color: #333; 7097 | } 7098 | 7099 | .panel-default>.panel-footer+.panel-collapse>.panel-body { 7100 | border-bottom-color: #ddd; 7101 | } 7102 | 7103 | .panel-primary { 7104 | border-color: #337ab7; 7105 | } 7106 | 7107 | .panel-primary>.panel-heading { 7108 | color: #fff; 7109 | background-color: #337ab7; 7110 | border-color: #337ab7; 7111 | } 7112 | 7113 | .panel-primary>.panel-heading+.panel-collapse>.panel-body { 7114 | border-top-color: #337ab7; 7115 | } 7116 | 7117 | .panel-primary>.panel-heading .badge { 7118 | color: #337ab7; 7119 | background-color: #fff; 7120 | } 7121 | 7122 | .panel-primary>.panel-footer+.panel-collapse>.panel-body { 7123 | border-bottom-color: #337ab7; 7124 | } 7125 | 7126 | .panel-success { 7127 | border-color: #d6e9c6; 7128 | } 7129 | 7130 | .panel-success>.panel-heading { 7131 | color: #3c763d; 7132 | background-color: #dff0d8; 7133 | border-color: #d6e9c6; 7134 | } 7135 | 7136 | .panel-success>.panel-heading+.panel-collapse>.panel-body { 7137 | border-top-color: #d6e9c6; 7138 | } 7139 | 7140 | .panel-success>.panel-heading .badge { 7141 | color: #dff0d8; 7142 | background-color: #3c763d; 7143 | } 7144 | 7145 | .panel-success>.panel-footer+.panel-collapse>.panel-body { 7146 | border-bottom-color: #d6e9c6; 7147 | } 7148 | 7149 | .panel-info { 7150 | border-color: #bce8f1; 7151 | } 7152 | 7153 | .panel-info>.panel-heading { 7154 | color: #31708f; 7155 | background-color: #d9edf7; 7156 | border-color: #bce8f1; 7157 | } 7158 | 7159 | .panel-info>.panel-heading+.panel-collapse>.panel-body { 7160 | border-top-color: #bce8f1; 7161 | } 7162 | 7163 | .panel-info>.panel-heading .badge { 7164 | color: #d9edf7; 7165 | background-color: #31708f; 7166 | } 7167 | 7168 | .panel-info>.panel-footer+.panel-collapse>.panel-body { 7169 | border-bottom-color: #bce8f1; 7170 | } 7171 | 7172 | .panel-warning { 7173 | border-color: #faebcc; 7174 | } 7175 | 7176 | .panel-warning>.panel-heading { 7177 | color: #8a6d3b; 7178 | background-color: #fcf8e3; 7179 | border-color: #faebcc; 7180 | } 7181 | 7182 | .panel-warning>.panel-heading+.panel-collapse>.panel-body { 7183 | border-top-color: #faebcc; 7184 | } 7185 | 7186 | .panel-warning>.panel-heading .badge { 7187 | color: #fcf8e3; 7188 | background-color: #8a6d3b; 7189 | } 7190 | 7191 | .panel-warning>.panel-footer+.panel-collapse>.panel-body { 7192 | border-bottom-color: #faebcc; 7193 | } 7194 | 7195 | .panel-danger { 7196 | border-color: #ebccd1; 7197 | } 7198 | 7199 | .panel-danger>.panel-heading { 7200 | color: #a94442; 7201 | background-color: #f2dede; 7202 | border-color: #ebccd1; 7203 | } 7204 | 7205 | .panel-danger>.panel-heading+.panel-collapse>.panel-body { 7206 | border-top-color: #ebccd1; 7207 | } 7208 | 7209 | .panel-danger>.panel-heading .badge { 7210 | color: #f2dede; 7211 | background-color: #a94442; 7212 | } 7213 | 7214 | .panel-danger>.panel-footer+.panel-collapse>.panel-body { 7215 | border-bottom-color: #ebccd1; 7216 | } 7217 | 7218 | .embed-responsive { 7219 | position: relative; 7220 | display: block; 7221 | height: 0; 7222 | padding: 0; 7223 | overflow: hidden; 7224 | } 7225 | 7226 | .embed-responsive .embed-responsive-item, 7227 | .embed-responsive iframe, 7228 | .embed-responsive embed, 7229 | .embed-responsive object, 7230 | .embed-responsive video { 7231 | position: absolute; 7232 | top: 0; 7233 | bottom: 0; 7234 | left: 0; 7235 | width: 100%; 7236 | height: 100%; 7237 | border: 0; 7238 | } 7239 | 7240 | .embed-responsive-16by9 { 7241 | padding-bottom: 56.25%; 7242 | } 7243 | 7244 | .embed-responsive-4by3 { 7245 | padding-bottom: 75%; 7246 | } 7247 | 7248 | .well { 7249 | min-height: 20px; 7250 | padding: 19px; 7251 | margin-bottom: 20px; 7252 | background-color: #f5f5f5; 7253 | border: 1px solid #e3e3e3; 7254 | border-radius: 4px; 7255 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); 7256 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); 7257 | } 7258 | 7259 | .well blockquote { 7260 | border-color: #ddd; 7261 | border-color: rgba(0, 0, 0, .15); 7262 | } 7263 | 7264 | .well-lg { 7265 | padding: 24px; 7266 | border-radius: 6px; 7267 | } 7268 | 7269 | .well-sm { 7270 | padding: 9px; 7271 | border-radius: 3px; 7272 | } 7273 | 7274 | .close { 7275 | float: right; 7276 | font-size: 21px; 7277 | font-weight: bold; 7278 | line-height: 1; 7279 | color: #000; 7280 | text-shadow: 0 1px 0 #fff; 7281 | filter: alpha(opacity=20); 7282 | opacity: .2; 7283 | } 7284 | 7285 | .close:hover, 7286 | .close:focus { 7287 | color: #000; 7288 | text-decoration: none; 7289 | cursor: pointer; 7290 | filter: alpha(opacity=50); 7291 | opacity: .5; 7292 | } 7293 | 7294 | button.close { 7295 | -webkit-appearance: none; 7296 | padding: 0; 7297 | cursor: pointer; 7298 | background: transparent; 7299 | border: 0; 7300 | } 7301 | 7302 | .modal-open { 7303 | overflow: hidden; 7304 | } 7305 | 7306 | .modal { 7307 | position: fixed; 7308 | top: 0; 7309 | right: 0; 7310 | bottom: 0; 7311 | left: 0; 7312 | z-index: 1050; 7313 | display: none; 7314 | overflow: hidden; 7315 | -webkit-overflow-scrolling: touch; 7316 | outline: 0; 7317 | } 7318 | 7319 | .modal.fade .modal-dialog { 7320 | -webkit-transition: -webkit-transform .3s ease-out; 7321 | -o-transition: -o-transform .3s ease-out; 7322 | transition: transform .3s ease-out; 7323 | -webkit-transform: translate(0, -25%); 7324 | -ms-transform: translate(0, -25%); 7325 | -o-transform: translate(0, -25%); 7326 | transform: translate(0, -25%); 7327 | } 7328 | 7329 | .modal.in .modal-dialog { 7330 | -webkit-transform: translate(0, 0); 7331 | -ms-transform: translate(0, 0); 7332 | -o-transform: translate(0, 0); 7333 | transform: translate(0, 0); 7334 | } 7335 | 7336 | .modal-open .modal { 7337 | overflow-x: hidden; 7338 | overflow-y: auto; 7339 | } 7340 | 7341 | .modal-dialog { 7342 | position: relative; 7343 | width: auto; 7344 | margin: 10px; 7345 | } 7346 | 7347 | .modal-content { 7348 | position: relative; 7349 | background-color: #fff; 7350 | -webkit-background-clip: padding-box; 7351 | background-clip: padding-box; 7352 | border: 1px solid #999; 7353 | border: 1px solid rgba(0, 0, 0, .2); 7354 | border-radius: 6px; 7355 | outline: 0; 7356 | -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); 7357 | box-shadow: 0 3px 9px rgba(0, 0, 0, .5); 7358 | } 7359 | 7360 | .modal-backdrop { 7361 | position: fixed; 7362 | top: 0; 7363 | right: 0; 7364 | bottom: 0; 7365 | left: 0; 7366 | z-index: 1040; 7367 | background-color: #000; 7368 | } 7369 | 7370 | .modal-backdrop.fade { 7371 | filter: alpha(opacity=0); 7372 | opacity: 0; 7373 | } 7374 | 7375 | .modal-backdrop.in { 7376 | filter: alpha(opacity=50); 7377 | opacity: .5; 7378 | } 7379 | 7380 | .modal-header { 7381 | min-height: 16.42857143px; 7382 | padding: 15px; 7383 | border-bottom: 1px solid #e5e5e5; 7384 | } 7385 | 7386 | .modal-header .close { 7387 | margin-top: -2px; 7388 | } 7389 | 7390 | .modal-title { 7391 | margin: 0; 7392 | line-height: 1.42857143; 7393 | } 7394 | 7395 | .modal-body { 7396 | position: relative; 7397 | padding: 15px; 7398 | } 7399 | 7400 | .modal-footer { 7401 | padding: 15px; 7402 | text-align: right; 7403 | border-top: 1px solid #e5e5e5; 7404 | } 7405 | 7406 | .modal-footer .btn+.btn { 7407 | margin-bottom: 0; 7408 | margin-left: 5px; 7409 | } 7410 | 7411 | .modal-footer .btn-group .btn+.btn { 7412 | margin-left: -1px; 7413 | } 7414 | 7415 | .modal-footer .btn-block+.btn-block { 7416 | margin-left: 0; 7417 | } 7418 | 7419 | .modal-scrollbar-measure { 7420 | position: absolute; 7421 | top: -9999px; 7422 | width: 50px; 7423 | height: 50px; 7424 | overflow: scroll; 7425 | } 7426 | 7427 | @media (min-width: 768px) { 7428 | .modal-dialog { 7429 | width: 600px; 7430 | margin: 30px auto; 7431 | } 7432 | 7433 | .modal-content { 7434 | -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); 7435 | box-shadow: 0 5px 15px rgba(0, 0, 0, .5); 7436 | } 7437 | 7438 | .modal-sm { 7439 | width: 300px; 7440 | } 7441 | } 7442 | 7443 | @media (min-width: 992px) { 7444 | .modal-lg { 7445 | width: 900px; 7446 | } 7447 | } 7448 | 7449 | .tooltip { 7450 | position: absolute; 7451 | z-index: 1070; 7452 | display: block; 7453 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 7454 | font-size: 12px; 7455 | font-style: normal; 7456 | font-weight: normal; 7457 | line-height: 1.42857143; 7458 | text-align: left; 7459 | text-align: start; 7460 | text-decoration: none; 7461 | text-shadow: none; 7462 | text-transform: none; 7463 | letter-spacing: normal; 7464 | word-break: normal; 7465 | word-spacing: normal; 7466 | word-wrap: normal; 7467 | white-space: normal; 7468 | filter: alpha(opacity=0); 7469 | opacity: 0; 7470 | 7471 | line-break: auto; 7472 | } 7473 | 7474 | .tooltip.in { 7475 | filter: alpha(opacity=90); 7476 | opacity: .9; 7477 | } 7478 | 7479 | .tooltip.top { 7480 | padding: 5px 0; 7481 | margin-top: -3px; 7482 | } 7483 | 7484 | .tooltip.right { 7485 | padding: 0 5px; 7486 | margin-left: 3px; 7487 | } 7488 | 7489 | .tooltip.bottom { 7490 | padding: 5px 0; 7491 | margin-top: 3px; 7492 | } 7493 | 7494 | .tooltip.left { 7495 | padding: 0 5px; 7496 | margin-left: -3px; 7497 | } 7498 | 7499 | .tooltip-inner { 7500 | max-width: 200px; 7501 | padding: 3px 8px; 7502 | color: #fff; 7503 | text-align: center; 7504 | background-color: #000; 7505 | border-radius: 4px; 7506 | } 7507 | 7508 | .tooltip-arrow { 7509 | position: absolute; 7510 | width: 0; 7511 | height: 0; 7512 | border-color: transparent; 7513 | border-style: solid; 7514 | } 7515 | 7516 | .tooltip.top .tooltip-arrow { 7517 | bottom: 0; 7518 | left: 50%; 7519 | margin-left: -5px; 7520 | border-width: 5px 5px 0; 7521 | border-top-color: #000; 7522 | } 7523 | 7524 | .tooltip.top-left .tooltip-arrow { 7525 | right: 5px; 7526 | bottom: 0; 7527 | margin-bottom: -5px; 7528 | border-width: 5px 5px 0; 7529 | border-top-color: #000; 7530 | } 7531 | 7532 | .tooltip.top-right .tooltip-arrow { 7533 | bottom: 0; 7534 | left: 5px; 7535 | margin-bottom: -5px; 7536 | border-width: 5px 5px 0; 7537 | border-top-color: #000; 7538 | } 7539 | 7540 | .tooltip.right .tooltip-arrow { 7541 | top: 50%; 7542 | left: 0; 7543 | margin-top: -5px; 7544 | border-width: 5px 5px 5px 0; 7545 | border-right-color: #000; 7546 | } 7547 | 7548 | .tooltip.left .tooltip-arrow { 7549 | top: 50%; 7550 | right: 0; 7551 | margin-top: -5px; 7552 | border-width: 5px 0 5px 5px; 7553 | border-left-color: #000; 7554 | } 7555 | 7556 | .tooltip.bottom .tooltip-arrow { 7557 | top: 0; 7558 | left: 50%; 7559 | margin-left: -5px; 7560 | border-width: 0 5px 5px; 7561 | border-bottom-color: #000; 7562 | } 7563 | 7564 | .tooltip.bottom-left .tooltip-arrow { 7565 | top: 0; 7566 | right: 5px; 7567 | margin-top: -5px; 7568 | border-width: 0 5px 5px; 7569 | border-bottom-color: #000; 7570 | } 7571 | 7572 | .tooltip.bottom-right .tooltip-arrow { 7573 | top: 0; 7574 | left: 5px; 7575 | margin-top: -5px; 7576 | border-width: 0 5px 5px; 7577 | border-bottom-color: #000; 7578 | } 7579 | 7580 | .popover { 7581 | position: absolute; 7582 | top: 0; 7583 | left: 0; 7584 | z-index: 1060; 7585 | display: none; 7586 | max-width: 276px; 7587 | padding: 1px; 7588 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 7589 | font-size: 14px; 7590 | font-style: normal; 7591 | font-weight: normal; 7592 | line-height: 1.42857143; 7593 | text-align: left; 7594 | text-align: start; 7595 | text-decoration: none; 7596 | text-shadow: none; 7597 | text-transform: none; 7598 | letter-spacing: normal; 7599 | word-break: normal; 7600 | word-spacing: normal; 7601 | word-wrap: normal; 7602 | white-space: normal; 7603 | background-color: #fff; 7604 | -webkit-background-clip: padding-box; 7605 | background-clip: padding-box; 7606 | border: 1px solid #ccc; 7607 | border: 1px solid rgba(0, 0, 0, .2); 7608 | border-radius: 6px; 7609 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); 7610 | box-shadow: 0 5px 10px rgba(0, 0, 0, .2); 7611 | 7612 | line-break: auto; 7613 | } 7614 | 7615 | .popover.top { 7616 | margin-top: -10px; 7617 | } 7618 | 7619 | .popover.right { 7620 | margin-left: 10px; 7621 | } 7622 | 7623 | .popover.bottom { 7624 | margin-top: 10px; 7625 | } 7626 | 7627 | .popover.left { 7628 | margin-left: -10px; 7629 | } 7630 | 7631 | .popover-title { 7632 | padding: 8px 14px; 7633 | margin: 0; 7634 | font-size: 14px; 7635 | background-color: #f7f7f7; 7636 | border-bottom: 1px solid #ebebeb; 7637 | border-radius: 5px 5px 0 0; 7638 | } 7639 | 7640 | .popover-content { 7641 | padding: 9px 14px; 7642 | } 7643 | 7644 | .popover>.arrow, 7645 | .popover>.arrow:after { 7646 | position: absolute; 7647 | display: block; 7648 | width: 0; 7649 | height: 0; 7650 | border-color: transparent; 7651 | border-style: solid; 7652 | } 7653 | 7654 | .popover>.arrow { 7655 | border-width: 11px; 7656 | } 7657 | 7658 | .popover>.arrow:after { 7659 | content: ""; 7660 | border-width: 10px; 7661 | } 7662 | 7663 | .popover.top>.arrow { 7664 | bottom: -11px; 7665 | left: 50%; 7666 | margin-left: -11px; 7667 | border-top-color: #999; 7668 | border-top-color: rgba(0, 0, 0, .25); 7669 | border-bottom-width: 0; 7670 | } 7671 | 7672 | .popover.top>.arrow:after { 7673 | bottom: 1px; 7674 | margin-left: -10px; 7675 | content: " "; 7676 | border-top-color: #fff; 7677 | border-bottom-width: 0; 7678 | } 7679 | 7680 | .popover.right>.arrow { 7681 | top: 50%; 7682 | left: -11px; 7683 | margin-top: -11px; 7684 | border-right-color: #999; 7685 | border-right-color: rgba(0, 0, 0, .25); 7686 | border-left-width: 0; 7687 | } 7688 | 7689 | .popover.right>.arrow:after { 7690 | bottom: -10px; 7691 | left: 1px; 7692 | content: " "; 7693 | border-right-color: #fff; 7694 | border-left-width: 0; 7695 | } 7696 | 7697 | .popover.bottom>.arrow { 7698 | top: -11px; 7699 | left: 50%; 7700 | margin-left: -11px; 7701 | border-top-width: 0; 7702 | border-bottom-color: #999; 7703 | border-bottom-color: rgba(0, 0, 0, .25); 7704 | } 7705 | 7706 | .popover.bottom>.arrow:after { 7707 | top: 1px; 7708 | margin-left: -10px; 7709 | content: " "; 7710 | border-top-width: 0; 7711 | border-bottom-color: #fff; 7712 | } 7713 | 7714 | .popover.left>.arrow { 7715 | top: 50%; 7716 | right: -11px; 7717 | margin-top: -11px; 7718 | border-right-width: 0; 7719 | border-left-color: #999; 7720 | border-left-color: rgba(0, 0, 0, .25); 7721 | } 7722 | 7723 | .popover.left>.arrow:after { 7724 | right: 1px; 7725 | bottom: -10px; 7726 | content: " "; 7727 | border-right-width: 0; 7728 | border-left-color: #fff; 7729 | } 7730 | 7731 | .carousel { 7732 | position: relative; 7733 | } 7734 | 7735 | .carousel-inner { 7736 | position: relative; 7737 | width: 100%; 7738 | overflow: hidden; 7739 | } 7740 | 7741 | .carousel-inner>.item { 7742 | position: relative; 7743 | display: none; 7744 | -webkit-transition: .6s ease-in-out left; 7745 | -o-transition: .6s ease-in-out left; 7746 | transition: .6s ease-in-out left; 7747 | } 7748 | 7749 | .carousel-inner>.item>img, 7750 | .carousel-inner>.item>a>img { 7751 | line-height: 1; 7752 | } 7753 | 7754 | @media all and (transform-3d), 7755 | (-webkit-transform-3d) { 7756 | .carousel-inner>.item { 7757 | -webkit-transition: -webkit-transform .6s ease-in-out; 7758 | -o-transition: -o-transform .6s ease-in-out; 7759 | transition: transform .6s ease-in-out; 7760 | 7761 | -webkit-backface-visibility: hidden; 7762 | backface-visibility: hidden; 7763 | -webkit-perspective: 1000px; 7764 | perspective: 1000px; 7765 | } 7766 | 7767 | .carousel-inner>.item.next, 7768 | .carousel-inner>.item.active.right { 7769 | left: 0; 7770 | -webkit-transform: translate3d(100%, 0, 0); 7771 | transform: translate3d(100%, 0, 0); 7772 | } 7773 | 7774 | .carousel-inner>.item.prev, 7775 | .carousel-inner>.item.active.left { 7776 | left: 0; 7777 | -webkit-transform: translate3d(-100%, 0, 0); 7778 | transform: translate3d(-100%, 0, 0); 7779 | } 7780 | 7781 | .carousel-inner>.item.next.left, 7782 | .carousel-inner>.item.prev.right, 7783 | .carousel-inner>.item.active { 7784 | left: 0; 7785 | -webkit-transform: translate3d(0, 0, 0); 7786 | transform: translate3d(0, 0, 0); 7787 | } 7788 | } 7789 | 7790 | .carousel-inner>.active, 7791 | .carousel-inner>.next, 7792 | .carousel-inner>.prev { 7793 | display: block; 7794 | } 7795 | 7796 | .carousel-inner>.active { 7797 | left: 0; 7798 | } 7799 | 7800 | .carousel-inner>.next, 7801 | .carousel-inner>.prev { 7802 | position: absolute; 7803 | top: 0; 7804 | width: 100%; 7805 | } 7806 | 7807 | .carousel-inner>.next { 7808 | left: 100%; 7809 | } 7810 | 7811 | .carousel-inner>.prev { 7812 | left: -100%; 7813 | } 7814 | 7815 | .carousel-inner>.next.left, 7816 | .carousel-inner>.prev.right { 7817 | left: 0; 7818 | } 7819 | 7820 | .carousel-inner>.active.left { 7821 | left: -100%; 7822 | } 7823 | 7824 | .carousel-inner>.active.right { 7825 | left: 100%; 7826 | } 7827 | 7828 | .carousel-control { 7829 | position: absolute; 7830 | top: 0; 7831 | bottom: 0; 7832 | left: 0; 7833 | width: 15%; 7834 | font-size: 20px; 7835 | color: #fff; 7836 | text-align: center; 7837 | text-shadow: 0 1px 2px rgba(0, 0, 0, .6); 7838 | filter: alpha(opacity=50); 7839 | opacity: .5; 7840 | } 7841 | 7842 | .carousel-control.left { 7843 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); 7844 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); 7845 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); 7846 | background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); 7847 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); 7848 | background-repeat: repeat-x; 7849 | } 7850 | 7851 | .carousel-control.right { 7852 | right: 0; 7853 | left: auto; 7854 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); 7855 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); 7856 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); 7857 | background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); 7858 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); 7859 | background-repeat: repeat-x; 7860 | } 7861 | 7862 | .carousel-control:hover, 7863 | .carousel-control:focus { 7864 | color: #fff; 7865 | text-decoration: none; 7866 | filter: alpha(opacity=90); 7867 | outline: 0; 7868 | opacity: .9; 7869 | } 7870 | 7871 | .carousel-control .icon-prev, 7872 | .carousel-control .icon-next, 7873 | .carousel-control .glyphicon-chevron-left, 7874 | .carousel-control .glyphicon-chevron-right { 7875 | position: absolute; 7876 | top: 50%; 7877 | z-index: 5; 7878 | display: inline-block; 7879 | margin-top: -10px; 7880 | } 7881 | 7882 | .carousel-control .icon-prev, 7883 | .carousel-control .glyphicon-chevron-left { 7884 | left: 50%; 7885 | margin-left: -10px; 7886 | } 7887 | 7888 | .carousel-control .icon-next, 7889 | .carousel-control .glyphicon-chevron-right { 7890 | right: 50%; 7891 | margin-right: -10px; 7892 | } 7893 | 7894 | .carousel-control .icon-prev, 7895 | .carousel-control .icon-next { 7896 | width: 20px; 7897 | height: 20px; 7898 | font-family: serif; 7899 | line-height: 1; 7900 | } 7901 | 7902 | .carousel-control .icon-prev:before { 7903 | content: '\2039'; 7904 | } 7905 | 7906 | .carousel-control .icon-next:before { 7907 | content: '\203a'; 7908 | } 7909 | 7910 | .carousel-indicators { 7911 | position: absolute; 7912 | bottom: 10px; 7913 | left: 50%; 7914 | z-index: 15; 7915 | width: 60%; 7916 | padding-left: 0; 7917 | margin-left: -30%; 7918 | text-align: center; 7919 | list-style: none; 7920 | } 7921 | 7922 | .carousel-indicators li { 7923 | display: inline-block; 7924 | width: 10px; 7925 | height: 10px; 7926 | margin: 1px; 7927 | text-indent: -999px; 7928 | cursor: pointer; 7929 | background-color: #000 \9; 7930 | background-color: rgba(0, 0, 0, 0); 7931 | border: 1px solid #fff; 7932 | border-radius: 10px; 7933 | } 7934 | 7935 | .carousel-indicators .active { 7936 | width: 12px; 7937 | height: 12px; 7938 | margin: 0; 7939 | background-color: #fff; 7940 | } 7941 | 7942 | .carousel-caption { 7943 | position: absolute; 7944 | right: 15%; 7945 | bottom: 20px; 7946 | left: 15%; 7947 | z-index: 10; 7948 | padding-top: 20px; 7949 | padding-bottom: 20px; 7950 | color: #fff; 7951 | text-align: center; 7952 | text-shadow: 0 1px 2px rgba(0, 0, 0, .6); 7953 | } 7954 | 7955 | .carousel-caption .btn { 7956 | text-shadow: none; 7957 | } 7958 | 7959 | @media screen and (min-width: 768px) { 7960 | 7961 | .carousel-control .glyphicon-chevron-left, 7962 | .carousel-control .glyphicon-chevron-right, 7963 | .carousel-control .icon-prev, 7964 | .carousel-control .icon-next { 7965 | width: 30px; 7966 | height: 30px; 7967 | margin-top: -15px; 7968 | font-size: 30px; 7969 | } 7970 | 7971 | .carousel-control .glyphicon-chevron-left, 7972 | .carousel-control .icon-prev { 7973 | margin-left: -15px; 7974 | } 7975 | 7976 | .carousel-control .glyphicon-chevron-right, 7977 | .carousel-control .icon-next { 7978 | margin-right: -15px; 7979 | } 7980 | 7981 | .carousel-caption { 7982 | right: 20%; 7983 | left: 20%; 7984 | padding-bottom: 30px; 7985 | } 7986 | 7987 | .carousel-indicators { 7988 | bottom: 20px; 7989 | } 7990 | } 7991 | 7992 | .clearfix:before, 7993 | .clearfix:after, 7994 | .dl-horizontal dd:before, 7995 | .dl-horizontal dd:after, 7996 | .container:before, 7997 | .container:after, 7998 | .container-fluid:before, 7999 | .container-fluid:after, 8000 | .row:before, 8001 | .row:after, 8002 | .form-horizontal .form-group:before, 8003 | .form-horizontal .form-group:after, 8004 | .btn-toolbar:before, 8005 | .btn-toolbar:after, 8006 | .btn-group-vertical>.btn-group:before, 8007 | .btn-group-vertical>.btn-group:after, 8008 | .nav:before, 8009 | .nav:after, 8010 | .navbar:before, 8011 | .navbar:after, 8012 | .navbar-header:before, 8013 | .navbar-header:after, 8014 | .navbar-collapse:before, 8015 | .navbar-collapse:after, 8016 | .pager:before, 8017 | .pager:after, 8018 | .panel-body:before, 8019 | .panel-body:after, 8020 | .modal-footer:before, 8021 | .modal-footer:after { 8022 | display: table; 8023 | content: " "; 8024 | } 8025 | 8026 | .clearfix:after, 8027 | .dl-horizontal dd:after, 8028 | .container:after, 8029 | .container-fluid:after, 8030 | .row:after, 8031 | .form-horizontal .form-group:after, 8032 | .btn-toolbar:after, 8033 | .btn-group-vertical>.btn-group:after, 8034 | .nav:after, 8035 | .navbar:after, 8036 | .navbar-header:after, 8037 | .navbar-collapse:after, 8038 | .pager:after, 8039 | .panel-body:after, 8040 | .modal-footer:after { 8041 | clear: both; 8042 | } 8043 | 8044 | .center-block { 8045 | display: block; 8046 | margin-right: auto; 8047 | margin-left: auto; 8048 | } 8049 | 8050 | .pull-right { 8051 | float: right !important; 8052 | } 8053 | 8054 | .pull-left { 8055 | float: left !important; 8056 | } 8057 | 8058 | .hide { 8059 | display: none !important; 8060 | } 8061 | 8062 | .show { 8063 | display: block !important; 8064 | } 8065 | 8066 | .invisible { 8067 | visibility: hidden; 8068 | } 8069 | 8070 | .text-hide { 8071 | font: 0/0 a; 8072 | color: transparent; 8073 | text-shadow: none; 8074 | background-color: transparent; 8075 | border: 0; 8076 | } 8077 | 8078 | .hidden { 8079 | display: none !important; 8080 | } 8081 | 8082 | .affix { 8083 | position: fixed; 8084 | } 8085 | 8086 | @-ms-viewport { 8087 | width: device-width; 8088 | } 8089 | 8090 | .visible-xs, 8091 | .visible-sm, 8092 | .visible-md, 8093 | .visible-lg { 8094 | display: none !important; 8095 | } 8096 | 8097 | .visible-xs-block, 8098 | .visible-xs-inline, 8099 | .visible-xs-inline-block, 8100 | .visible-sm-block, 8101 | .visible-sm-inline, 8102 | .visible-sm-inline-block, 8103 | .visible-md-block, 8104 | .visible-md-inline, 8105 | .visible-md-inline-block, 8106 | .visible-lg-block, 8107 | .visible-lg-inline, 8108 | .visible-lg-inline-block { 8109 | display: none !important; 8110 | } 8111 | 8112 | @media (max-width: 767px) { 8113 | .visible-xs { 8114 | display: block !important; 8115 | } 8116 | 8117 | table.visible-xs { 8118 | display: table !important; 8119 | } 8120 | 8121 | tr.visible-xs { 8122 | display: table-row !important; 8123 | } 8124 | 8125 | th.visible-xs, 8126 | td.visible-xs { 8127 | display: table-cell !important; 8128 | } 8129 | } 8130 | 8131 | @media (max-width: 767px) { 8132 | .visible-xs-block { 8133 | display: block !important; 8134 | } 8135 | } 8136 | 8137 | @media (max-width: 767px) { 8138 | .visible-xs-inline { 8139 | display: inline !important; 8140 | } 8141 | } 8142 | 8143 | @media (max-width: 767px) { 8144 | .visible-xs-inline-block { 8145 | display: inline-block !important; 8146 | } 8147 | } 8148 | 8149 | @media (min-width: 768px) and (max-width: 991px) { 8150 | .visible-sm { 8151 | display: block !important; 8152 | } 8153 | 8154 | table.visible-sm { 8155 | display: table !important; 8156 | } 8157 | 8158 | tr.visible-sm { 8159 | display: table-row !important; 8160 | } 8161 | 8162 | th.visible-sm, 8163 | td.visible-sm { 8164 | display: table-cell !important; 8165 | } 8166 | } 8167 | 8168 | @media (min-width: 768px) and (max-width: 991px) { 8169 | .visible-sm-block { 8170 | display: block !important; 8171 | } 8172 | } 8173 | 8174 | @media (min-width: 768px) and (max-width: 991px) { 8175 | .visible-sm-inline { 8176 | display: inline !important; 8177 | } 8178 | } 8179 | 8180 | @media (min-width: 768px) and (max-width: 991px) { 8181 | .visible-sm-inline-block { 8182 | display: inline-block !important; 8183 | } 8184 | } 8185 | 8186 | @media (min-width: 992px) and (max-width: 1199px) { 8187 | .visible-md { 8188 | display: block !important; 8189 | } 8190 | 8191 | table.visible-md { 8192 | display: table !important; 8193 | } 8194 | 8195 | tr.visible-md { 8196 | display: table-row !important; 8197 | } 8198 | 8199 | th.visible-md, 8200 | td.visible-md { 8201 | display: table-cell !important; 8202 | } 8203 | } 8204 | 8205 | @media (min-width: 992px) and (max-width: 1199px) { 8206 | .visible-md-block { 8207 | display: block !important; 8208 | } 8209 | } 8210 | 8211 | @media (min-width: 992px) and (max-width: 1199px) { 8212 | .visible-md-inline { 8213 | display: inline !important; 8214 | } 8215 | } 8216 | 8217 | @media (min-width: 992px) and (max-width: 1199px) { 8218 | .visible-md-inline-block { 8219 | display: inline-block !important; 8220 | } 8221 | } 8222 | 8223 | @media (min-width: 1200px) { 8224 | .visible-lg { 8225 | display: block !important; 8226 | } 8227 | 8228 | table.visible-lg { 8229 | display: table !important; 8230 | } 8231 | 8232 | tr.visible-lg { 8233 | display: table-row !important; 8234 | } 8235 | 8236 | th.visible-lg, 8237 | td.visible-lg { 8238 | display: table-cell !important; 8239 | } 8240 | } 8241 | 8242 | @media (min-width: 1200px) { 8243 | .visible-lg-block { 8244 | display: block !important; 8245 | } 8246 | } 8247 | 8248 | @media (min-width: 1200px) { 8249 | .visible-lg-inline { 8250 | display: inline !important; 8251 | } 8252 | } 8253 | 8254 | @media (min-width: 1200px) { 8255 | .visible-lg-inline-block { 8256 | display: inline-block !important; 8257 | } 8258 | } 8259 | 8260 | @media (max-width: 767px) { 8261 | .hidden-xs { 8262 | display: none !important; 8263 | } 8264 | } 8265 | 8266 | @media (min-width: 768px) and (max-width: 991px) { 8267 | .hidden-sm { 8268 | display: none !important; 8269 | } 8270 | } 8271 | 8272 | @media (min-width: 992px) and (max-width: 1199px) { 8273 | .hidden-md { 8274 | display: none !important; 8275 | } 8276 | } 8277 | 8278 | @media (min-width: 1200px) { 8279 | .hidden-lg { 8280 | display: none !important; 8281 | } 8282 | } 8283 | 8284 | .visible-print { 8285 | display: none !important; 8286 | } 8287 | 8288 | @media print { 8289 | .visible-print { 8290 | display: block !important; 8291 | } 8292 | 8293 | table.visible-print { 8294 | display: table !important; 8295 | } 8296 | 8297 | tr.visible-print { 8298 | display: table-row !important; 8299 | } 8300 | 8301 | th.visible-print, 8302 | td.visible-print { 8303 | display: table-cell !important; 8304 | } 8305 | } 8306 | 8307 | .visible-print-block { 8308 | display: none !important; 8309 | } 8310 | 8311 | @media print { 8312 | .visible-print-block { 8313 | display: block !important; 8314 | } 8315 | } 8316 | 8317 | .visible-print-inline { 8318 | display: none !important; 8319 | } 8320 | 8321 | @media print { 8322 | .visible-print-inline { 8323 | display: inline !important; 8324 | } 8325 | } 8326 | 8327 | .visible-print-inline-block { 8328 | display: none !important; 8329 | } 8330 | 8331 | @media print { 8332 | .visible-print-inline-block { 8333 | display: inline-block !important; 8334 | } 8335 | } 8336 | 8337 | @media print { 8338 | .hidden-print { 8339 | display: none !important; 8340 | } 8341 | } 8342 | 8343 | /*# sourceMappingURL=bootstrap.css.map */ --------------------------------------------------------------------------------