diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 25e27c6..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Ruby - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - test: - - runs-on: ${{ matrix.os }}-latest - - strategy: - matrix: - os: ["ubuntu", "macos"] - ruby-version: [2.7.0, 2.6.0, 2.5.0] - - steps: - - - uses: actions/checkout@v2 - - - name: Set up Ruby ${{ matrix.ruby-version }} - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby-version }} - - - name: Test help - shell: bash - run: ruby ArkDoc.rb -h - - - name: Test generate - shell: bash - run: | - mkdir source - cp examples/String.ark source/String.ark - ruby ArkDoc.rb -md "ArkScript" \ No newline at end of file diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 0000000..e95392d --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,39 @@ +name: super-linter + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + name: Lint Code Base + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + + ################################ + # Run Linter against code base # + ################################ + - name: Lint Code Base + uses: docker://github/super-linter:v3.13.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + VALIDATE_ALL_CODEBASE: false + VALIDATE_BASH: true + VALIDATE_BASH_EXEC: true + VALIDATE_DOCKERFILE: true + VALIDATE_DOCKERFILE_HADOLINT: true + VALIDATE_ENV: true + VALIDATE_JSON: true + VALIDATE_LATEX: true + VALIDATE_PYTHON_BLACK: true + VALIDATE_POWERSHELL: true + VALIDATE_SHELL_SHFMT: true + VALIDATE_SQL: true \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..e833838 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,37 @@ +name: Tests CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + ci: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Checkout std + uses: actions/checkout@v2 + with: + repository: ArkScript-lang/std + path: './std-latest' + + - name: Checkout Ark + uses: actions/checkout@v2 + with: + repository: ArkScript-lang/Ark + path: './ark-latest' + + - name: Python + uses: actions/setup-python@v2 + with: + python-version: '3.9' + + - run: pip install -r requirements.txt + - run: | + export ARKDOC_LOGLEVEL=DEBUG + python -m arkdoc 3.1.0 std-latest/ ark-latest/src/Builtins --html out || exit 1 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 16d36e4..f6d248e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ -docs/ -source/ \ No newline at end of file +*.ark +*.arkc +*.py[ouc] +__pycache__/ +venv/ +out/ \ No newline at end of file diff --git a/ArkDoc.rb b/ArkDoc.rb deleted file mode 100644 index 6e9810b..0000000 --- a/ArkDoc.rb +++ /dev/null @@ -1,67 +0,0 @@ -#!/usr/bin/env ruby -wKU -$LOAD_PATH << "src" -$LOAD_PATH << '.' -require "Cli.rb" -require "Generator.rb" - -include Cli - -# option declaration -option ["-v", "--version"] do - puts("Version 1.0.1") - exit(0) -end - -option ["-h", "--help"] do - puts("DESCRIPTION") - puts(" Lite documentation generator based on Mkdocs") - puts("") - puts("SYNOPSIS") - puts(" ruby ArkDoc.rb -h") - puts(" ruby ArkDoc.rb -v") - puts(" ruby ArkDoc.rb -g [-s ]") - puts(" ruby ArkDoc.rb -md [-s ]") - puts("") - puts("OPTIONS") - puts(" -h, --help Print this help message") - puts(" -v, --version Print ArkDoc version and exit") - puts(" -g, --generate Generate the website and exit") - puts(" -md, --markdown Generate the markdown files and exit") - puts(" -b, --build Generate the website using markdown files previously generate with -md option") - puts(" -s, --source Set the location of source files") - puts("") - puts("LICENCE") - puts(" Mozilla Public License 2.0") - exit(0) -end - -option ["-s", "--source"] - -option ["-g", "--generate"] do - generator = Generator.new - name = get("g") - src = if called?(["-s", "--source"]) - get("s") - else - "" - end - - Dir.chdir(generator.generate(name, src)) - puts(%x{mkdocs build}) - exit(0) -end - -option ["-md", "--markdown"] do - generator = Generator.new - name = get("md") - src = if called?(["-s", "--source"]) - get("s") - else - "" - end - - generator.generate(name, src) - exit(0) -end - -option ["-b", "--build"] # unusable \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f12f20..4a6a131 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # Change Log -## 1.0.0 +## [Unreleased] ### Added -- markdown file generation -- mkdocs tree support -- doc html generation -## 1.0.1 +### Changed +- rewriting the project in Python 3 + +## [v0.0.2] - 2020-12-28 ### Added - options : `--md` for generation of markdown files only, `--build` for generate the static site and `--source` to set path of source code for generate site or markdown file - default theme (dark) @@ -15,4 +15,10 @@ - code structure - Review of : Lexer, Parser and Generator - syntax -- generate option \ No newline at end of file +- generate option + +## [v0.0.1] - 2020-08-31 +### Added +- markdown file generation +- mkdocs tree support +- doc html generation \ No newline at end of file diff --git a/Cli.rb b/Cli.rb deleted file mode 100644 index b80ec11..0000000 --- a/Cli.rb +++ /dev/null @@ -1,87 +0,0 @@ -module Cli - @@options = [] - @@map = {} - - def add - i = 0 - - while i < ARGF.argv.size - j = 0 - - while j < @@options.size - if ARGF.argv[i] == @@options[j] - @@map[@@options[j].delete("-")] = ARGF.argv[i + 1] - elsif @@options[j].class == ARGF.argv.class - k = 0 - - while k < @@options[j].size - if ARGF.argv[i] == @@options[j][k] - @@map[@@options[j][k].delete("-")] = ARGF.argv[i + 1] - end - - k += 1 - end - end - - j += 1 - end - - i += 1 - end - end - - def option?(pseudo_option) - return true if @@options.include?(pseudo_option) - - return false - end - - def get(option) - if @@map.keys.include?(option) - return @@map[option] - else - keys_ary = [] - (@@options.each {}.to_a.delete_if { |ary| ary.class != Array }).each { |ary| - keys_ary << [ary[0].delete('-'), ary[1].delete('-')] - } - - keys_ary.each { |ary| - ary.each_index { |i| - if ary[i] == option - case i - when 0 - return @@map[ary[1]] - when 1 - return @@map[ary[0]] - end - end - } - } - end - - return nil - end - - def called?(option) - if option?(option) && @@map.keys.include?(option.delete('-')) - return true - end - - if option.class == Array && option?(option) - if @@map.keys.include?(option[0].delete('-')) || @@map.keys.include?(option[1].delete('-')) - return true - end - end - - return false - end - - def option(new_option, &block) - @@options << new_option if !option?(new_option) - add - - if block_given? && called?(new_option) - block.call - end - end -end \ No newline at end of file diff --git a/README.md b/README.md index c434146..fa2f247 100644 --- a/README.md +++ b/README.md @@ -1,74 +1,59 @@ # ArkDoc ![release](https://img.shields.io/github/v/release/ArkScript-lang/ArkDoc) -It's a **Lite** documentation generator for arkscript based on Mkdocs, and written in ruby. - ![licence](https://img.shields.io/badge/licence-MPL%202.0-2) ![code size](https://img.shields.io/github/languages/code-size/ArkScript-lang/ArkDoc) -![Ruby](https://github.com/ArkScript-lang/ArkDoc/workflows/Ruby/badge.svg) + +A documentation generator for ArkScript. ## Dependencies -* Python >= 2.7 (Python 3.7 tested and working) -* Ruby >= 2.5 +* Python >= 3.9 ## Usage ```bash -# first, clone repository -~$ git clone https://github.com/ArkScript-lang/ArkDoc.git -~$ cd ArkDoc -# put your arkscript files in this folder (default source directory) -# you can change it with -s option -~/ArkDoc$ mkdir source -# install Mkdocs -~$ pip install mkdocs -# running -~/ArkDoc$ ruby ArkDoc.rb --help -DESCRIPTION - Lite documentation generator based on Mkdocs - -SYNOPSIS - ruby ArkDoc.rb -h - ruby ArkDoc.rb -v - ruby ArkDoc.rb -g [-s ] - ruby ArkDoc.rb -md [-s ] +git clone https://github.com/ArkScript-lang/ArkDoc.git +python3 -m venv venv +source ./venv/bin/activate +pip3 install -r requirements.txt -OPTIONS - -h, --help Print this help message - -v, --version Print ArkDoc version and exit - -g, --generate Generate the website and exit - -md, --markdown Generate the markdown files and exit - -s, --source Set the path of souree files directory +# set the log level +# if not given, defaults to INFO +export ARKDOC_LOGLEVEL=DEBUG -LICENCE - Mozilla Public License 2.0 +python3 -m arkdoc --help ``` ## Syntax -You can be find the syntax ![here](./Syntax.md). + +- `@brief `: a single brief declaration is expected +- `@param `: multiple `@param` declaration can be written +- `@details `: a single detailled declaration is expected +- `=begin` / code block / `=end`: a single code block (it can contain multiple lines) is expected +- `@author ,,...`: the url to the profiles of the authors must be separated by commas, spaces can be added +- any line not starting with a `@` will be ignored, unless it is enclosed in a `=begin`/`=end` bloc ## Example -```clojure -### -# @brief Reverse a string. -# @param _string the string to reverse -# @details The original string is left unmodified. + +```lisp +# @brief Iterate over a given list and run a given function on every element. +# @param _L the list to iterate over +# @param _func the function to call on each element +# @details The original list is left unmodified. # =begin -# (import "String.ark") -# (let message "hello world, I like goats") -# (let reversed (str:reverse message)) # => staog ekil I ,dlrow olleh +# (import "List.ark") +# (let collection [1 2 5 12]) +# (list:forEach collection (fun (element) { +# (print element) +# })) # =end -# @author https://github.com/Natendrtfm -## -(let str:reverse (fun (_string) { - (mut _index (- (len _string) 1)) - (mut _returnedString "") - (while (> _index -1) { - (set _returnedString (+ _returnedString (@ _string _index))) - (set _index (- _index 1)) +# @author https://github.com/SuperFola +(let list:forEach (fun (_L _func) { + (mut _index 0) + (while (< _index (len _L)) { + (mut _element (@ _L _index)) + (_func _element) + (set _index (+ 1 _index)) }) - _returnedString })) ``` - -![string](./images/example.png) \ No newline at end of file diff --git a/Syntax.md b/Syntax.md deleted file mode 100644 index 023b4b6..0000000 --- a/Syntax.md +++ /dev/null @@ -1,52 +0,0 @@ -# Syntax - -The new syntax is inspired by doxygen syntax. - -The content of documentation must be in a block and each line must begin by comment char (for arkscript hash **#**), using this syntax. -Exanple : -``` -### -#...documentation content -## -``` -## Main keywords - -`@meta` : page informations (title, desciprtion of page or section), create new page at every call, then only one call for every files to avoid undefined behavior of parser. - -`@brief` : speed function presentation - -`@details` : details about function (object modification) - -`@param` : explanation or details about each parameter of function - -`@author` : information about the author of the function - -### Code example - -Same as documentation content the example about function usage is a block, and you should use this syntax, for make a code example in arkdoc. -Example : - -``` -### -#...documentation content -# =begin -# ...example -# =end -## -``` - -### Full template - -This template is a clean way to format your documentation in source file, for a good transformation in page - -```clojure -### -# @brief (description of function) -# @param (details about each parameter of function) -# @details (details about impact of function on a object or paramater) -# =begin -# (example) -# =end -# @author (where we can find the author of function code) -## -``` \ No newline at end of file diff --git a/arkdoc/__init__.py b/arkdoc/__init__.py new file mode 100644 index 0000000..7c8bde9 --- /dev/null +++ b/arkdoc/__init__.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +from .logger_utils import Logger, LogLevel + +import os + +logger = Logger("ArkDoc", level=LogLevel[os.environ.get("ARKDOC_LOGLEVEL", "INFO")]) + +from .parser import Parser +from .reader import parse_all_in diff --git a/arkdoc/__main__.py b/arkdoc/__main__.py new file mode 100644 index 0000000..ce4f78a --- /dev/null +++ b/arkdoc/__main__.py @@ -0,0 +1,74 @@ +#!/usr/bin/env python3 + +import os +import sys +import argparse + +from . import logger +from .logger_utils import LogLevel +from .reader import parse_all_in +from .generator import HTMLGenerator + + +EXIT_SUCCESS = 0 +EXIT_FAILURE = 1 + + +def compute(args) -> bool: + global logger + + for folder in args.source_folder: + if not os.path.exists(folder): + logger.error(f"Folder `{folder}` does not exists") + return False + + if args.dry_run: + logger.level = LogLevel.DEBUG + + parsers = [] + for folder in args.source_folder: + parsers += parse_all_in(folder) + for p in parsers: + logger.info(f"Parsing {p.filename}...") + p.parse() + + if args.dry_run: + _ = list(p.extract_documentation()) + + if not args.dry_run: + if args.html: + gen = HTMLGenerator(parsers, args.html, args.ark_version, args.root_dir) + gen() + else: + logger.error("Missing generator!") + return False + + return True + + +def main() -> int: + cli = argparse.ArgumentParser(description="ArkScript Documentation generator") + cli.add_argument("ark_version", type=str, help="ArkScript version number, eg 3.1.0") + cli.add_argument( + "source_folder", type=str, help="Path to the ArkScript source folder", nargs="+" + ) + cli.add_argument( + "--dry-run", + action="store_true", + help="Run and log everything but don't generate any file", + ) + cli.add_argument("--html", type=str, help="Output folder for the HTML docs") + cli.add_argument( + "--root-dir", type=str, default="", help="The root dir for the links" + ) + + args = cli.parse_args() + + if compute(args): + return EXIT_SUCCESS + else: + return EXIT_FAILURE + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/arkdoc/generator/__init__.py b/arkdoc/generator/__init__.py new file mode 100644 index 0000000..5ce88b5 --- /dev/null +++ b/arkdoc/generator/__init__.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +from . import specification +from .utils import documentation_to_specification +from .base import Generator +from .html import HTMLGenerator diff --git a/arkdoc/generator/base.py b/arkdoc/generator/base.py new file mode 100644 index 0000000..d994a03 --- /dev/null +++ b/arkdoc/generator/base.py @@ -0,0 +1,72 @@ +#!/usr/bin/env python3 + +import shutil +import os +from typing import List +from pathlib import Path + +from . import specification as spec +from . import documentation_to_specification +from .. import logger +from ..parser import Parser + + +class Generator: + def __init__( + self, + parsers: List[Parser], + template_folder: Path, + pattern: str, + output: str, + ark_version: str, + root: str, + ): + self.template_folder = template_folder + self.templates = { + file.name: file.read_text("utf-8") for file in template_folder.glob(pattern) + } + self.output_path = Path(output) + self.version = ark_version + self.output_path_ver = self.output_path / self.version + self.root = root if root and root[-1] != "/" else root[:-1] + self.list = spec.FileList([]) + self._create_files_list(parsers) + + def _create_files_list(self, parsers: List[Parser]): + registered = {} + + for p in parsers: + functions = [] + for doc in p.extract_documentation(): + functions.append(documentation_to_specification(doc)) + + base = os.path.splitext(os.path.basename(p.filename))[0] + if base in registered: + registered[base].functions += functions + else: + registered[base] = spec.File(base, functions) + self.list.files.append(registered[base]) + + self.list.files = [f for f in self.list.files if len(f.functions)] + + def generate_index(self): + raise NotImplementedError + + def generate_one(self, path: str, functions: List[spec.Function]): + raise NotImplementedError + + def __call__(self): + if not self.output_path_ver.exists(): + self.output_path_ver.mkdir(parents=True) + else: + shutil.rmtree(str(self.output_path_ver)) + return self.__call__() + + self.generate_index() + + for file in self.list.files: + logger.info( + f"Generating {file.path} documentation... found {len(file.functions)} functions" + ) + + self.generate_one(file.path, file.functions) diff --git a/arkdoc/generator/html.py b/arkdoc/generator/html.py new file mode 100644 index 0000000..fae937b --- /dev/null +++ b/arkdoc/generator/html.py @@ -0,0 +1,196 @@ +#!/usr/bin/env python3 + +import shutil +from datetime import datetime +from typing import List +from pprint import pformat +from pathlib import Path + +from . import specification as spec +from . import Generator +from .. import logger +from ..parser import Parser + + +class html: + @staticmethod + def plural(name: str, qu: int) -> str: + return f"{name}{'s' if qu > 1 else ''}" + + @staticmethod + def nav_link(name: str, path: str) -> str: + return f'{name}' + + @staticmethod + def anchorize(name: str) -> str: + return name.lower().replace(" ", "-") + + @staticmethod + def nav_item(name: str, anchor: str) -> str: + return f"""""" + + @staticmethod + def a(name: str, path: str) -> str: + return f'{name}' + + @staticmethod + def b(content: str) -> str: + return f"{content}" + + @staticmethod + def inline_code(content: str) -> str: + return f"{content}" + + @staticmethod + def code(content: str) -> str: + return f"""
+
+{content}
+
+
""" + + @staticmethod + def section(title: str, content: str, anchor: str = "") -> str: + return f"""
+

{title}

+ +
+ {content} +
+
""" + + @staticmethod + def ul(content: List[str]) -> str: + out = "
    " + for el in content: + out += f"
  • {el}
  • " + return out + "
" + + @staticmethod + def div(*args: List[str]) -> str: + return "
" + "\n".join(args) + "
" + + @staticmethod + def h1(name: str) -> str: + return f"

{name}

" + + @staticmethod + def h2(name: str) -> str: + return f"

{name}

" + + @staticmethod + def h3(name: str) -> str: + return f"

{name}

" + + @staticmethod + def h4(name: str) -> str: + return f"

{name}

" + + +class HTMLGenerator(Generator): + def __init__(self, parsers: List[Parser], output: str, ark_version: str, root: str): + super().__init__( + parsers, spec.HTML_TEMPLATE_FOLDER, "*.html", output, ark_version, root + ) + + self.footer = f"Last generation at {datetime.now()}" + + def create_dir(self, name: str): + (self.output_path / name).mkdir() + + def generate_index(self): + if not (self.output_path / "assets").exists(): + shutil.copytree( + str(self.template_folder / "assets"), str(self.output_path / "assets") + ) + + sections = html.section( + f"ArkScript {self.version} documentation", + f"Welcome! This is the official documentation for ArkScript {self.version}" + + html.ul( + [ + html.a(file.path, f"{self.root}/{self.version}/{file.path}.html") + for file in self.list.files + ] + ), + ) + + content = self.templates["index.html"] + content = content.format( + root=self.root, + page_title=f"ArkScript {self.version} documentation", + home_link=f"{self.root}/{self.version}", + has_banner="has-banner", + banner=self.templates["banner.html"].format(root=self.root), + table_of_content="", + navigation_links="", + sections=sections, + footer=self.footer, + ) + + (self.output_path_ver / "index.html").write_text(content) + logger.info("Generated", self.output_path_ver / "index.html") + + def generate_one(self, path: str, functions: List[spec.Function]): + sections = "" + table_of_content = self.templates["table_of_content.html"] + links = "" + + for func in functions: + links += html.nav_item(func.name, html.anchorize(func.name)) + authors = ( + html.div( + html.h4(html.plural("Author", len(func.desc.authors))), + ", ".join( + [html.a(f"@{a.split('/')[-1]}", a) for a in func.desc.authors] + ), + ) + if func.desc.authors + else "" + ) + parameters = ( + html.div( + html.h4(html.plural("Parameter", len(func.desc.params))), + html.ul( + [ + f"{html.inline_code(p.name)}: {p.desc}" + for p in func.desc.params + ] + ), + ) + if func.desc.params + else "" + ) + content = html.div( + html.inline_code(func.signature), + "
", + html.div(func.desc.brief), + html.div(html.b("Note"), ": ", func.desc.details), + parameters, + authors, + ) + if func.desc.code: + content += html.div(html.h4("Example"), html.code(func.desc.code)) + sections += html.section( + func.name, content, anchor=html.anchorize(func.name) + ) + + table_of_content = table_of_content.format(table_of_content_links=links) + + content = self.templates["index.html"] + content = content.format( + root=self.root, + page_title=f"{path} - ArkScript {self.version} documentation", + home_link=f"{self.root}/{self.version}", + has_banner="", + banner="", + table_of_content=table_of_content, + navigation_links="", + sections=sections, + footer=self.footer, + ) + + (self.output_path_ver / f"{path}.html").write_text(content) + return None diff --git a/arkdoc/generator/specification.py b/arkdoc/generator/specification.py new file mode 100644 index 0000000..8a6963a --- /dev/null +++ b/arkdoc/generator/specification.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python3 + +from typing import List +from dataclasses import dataclass +from pathlib import Path + + +HTML_TEMPLATE_FOLDER = Path("templates") + + +@dataclass +class Param: + name: str + desc: str + + +@dataclass +class Description: + brief: str + details: str + params: List[Param] + code: str + authors: List[str] + + +@dataclass +class Function: + name: str + signature: str + desc: Description + + +@dataclass +class File: + path: str + functions: List[Function] + + +@dataclass +class FileList: + files: List[File] diff --git a/arkdoc/generator/utils.py b/arkdoc/generator/utils.py new file mode 100644 index 0000000..2060daa --- /dev/null +++ b/arkdoc/generator/utils.py @@ -0,0 +1,89 @@ +#!/usr/bin/env python3 + +import re +from typing import Tuple, Dict + +from . import specification as spec +from ..parser import Documentation, Source +from .. import logger + + +def extractor(data: Dict, doc: Documentation) -> Tuple[Dict, str]: + in_code = False + code = [] + + for comment in doc.comments: + if not in_code: + for key in data: + tag = f"@{key}" + + if tag in comment.value: + res = re.sub(fr"#+ *{tag}", "", comment.value).strip() + + if res: + if isinstance(data[key], list): + data[key].append(res) + else: + data[key] = res + else: + if "=begin" in comment.value: + in_code = True + else: + if "=end" not in comment.value: + code.append(comment.value) + else: + in_code = False + + if code: + margin = code[0].index("(") + code = [line[margin:] for line in code] + + for i, param in enumerate(data["param"]): + param_name, desc = param.split(" ", 1) + data["param"][i] = spec.Param(param_name, desc) + + data["author"] = [el.strip() for el in data["author"].split(",") if data["author"]] + + return data, "\n".join(code) + + +def from_ark(doc: Documentation) -> spec.Function: + _, name, *args = doc.signature() + data, code = extractor({"brief": "", "details": "", "param": [], "author": ""}, doc) + + if len(data["param"]) != len(args): + logger.warn( + f"Function {name} was defined with {len(args)} arguments, " + f"but only {len(data['param'])} are documented" + ) + + return spec.Function( + name, + doc.pretty_signature, + spec.Description( + data["brief"], data["details"], data["param"], code, data["author"] + ), + ) + + +def from_cpp(doc: Documentation) -> spec.Function: + data, code = extractor( + {"name": "", "brief": "", "details": "", "param": [], "author": ""}, doc + ) + + return spec.Function( + data["name"], + f"Builtin ({data['name']} {' '.join(e.name for e in data['param'])})", + spec.Description( + data["brief"], data["details"], data["param"], code, data["author"] + ), + ) + + +def documentation_to_specification(doc: Documentation) -> spec.Function: + if doc.source == Source.ArkScript: + return from_ark(doc) + elif doc.source == Source.Cpp: + return from_cpp(doc) + else: + raise NotImplementedError diff --git a/arkdoc/logger_utils.py b/arkdoc/logger_utils.py new file mode 100644 index 0000000..af321a0 --- /dev/null +++ b/arkdoc/logger_utils.py @@ -0,0 +1,52 @@ +#!/usr/bin/env python3 + +import colorama +from enum import Enum +from datetime import datetime + + +class LogLevel(Enum): + DEBUG = 4 + INFO = 3 + WARN = 2 + ERROR = 1 + NONE = 0 + + +class Logger: + def __init__(self, name: str, level: LogLevel = LogLevel.NONE): + self.name = name + self.level = level + + def _print(self, kind: LogLevel, *args): + colors = { + LogLevel.DEBUG: colorama.Fore.MAGENTA, + LogLevel.INFO: colorama.Fore.CYAN, + LogLevel.WARN: colorama.Fore.YELLOW, + LogLevel.ERROR: colorama.Fore.RED, + } + + if kind.value > self.level.value: + return + + prefix = f"[{colors[kind]}{kind.name:^5}{colorama.Fore.RESET}]" + now = datetime.now().isoformat(timespec="minutes") + colored_now = f"{colorama.Fore.MAGENTA}{now}{colorama.Fore.RESET}" + rest = " ".join(str(el) for el in args) + + print(f"{prefix} -- {colored_now} -- {rest}") + + def debug(self, *args): + self._print(LogLevel.DEBUG, *args) + + def info(self, *args): + self._print(LogLevel.INFO, *args) + + def warn(self, *args): + self._print(LogLevel.WARN, *args) + + def error(self, *args): + self._print(LogLevel.ERROR, *args) + + +colorama.init() diff --git a/arkdoc/parser/__init__.py b/arkdoc/parser/__init__.py new file mode 100644 index 0000000..c854105 --- /dev/null +++ b/arkdoc/parser/__init__.py @@ -0,0 +1,4 @@ +#!/usr/bin/env python3 + +from .documentation import Documentation, Source +from .parser import Parser diff --git a/arkdoc/parser/documentation.py b/arkdoc/parser/documentation.py new file mode 100644 index 0000000..0fe1d26 --- /dev/null +++ b/arkdoc/parser/documentation.py @@ -0,0 +1,60 @@ +#!/usr/bin/env python3 + +from dataclasses import dataclass +from collections.abc import Iterable +from typing import List +from enum import Enum + +from .tokenizer import Token + + +def deep_flatten(lst): + return ( + [a for i in lst for a in deep_flatten(i)] + if isinstance(lst, Iterable) + else [lst] + ) + + +class Source(Enum): + ArkScript = 0 + Cpp = 1 + + +@dataclass +class Documentation: + source: Source + comments: List[Token] + target: List + + def _token_format(self, token: Token): + return token.value + + def signature(self, on: List[Token] = None): + def transform(L): + return list(map(lambda t: t.value, deep_flatten(L))) + + top = self.target[:] if on is None else on + + while True: + if isinstance(top, list) and len(top) and isinstance(top[0], list): + top = top[0] + else: + break + + if on is None: + return transform(top[:2]) + self.signature(on=top[2]) + else: + return transform(top[1:2]) + + @property + def pretty_signature(self): + kw, name, *args = self.signature() + return f"({kw} {name} (fun ({' '.join(args)}) (...)))" + + @property + def defined_at(self): + return deep_flatten(self.target[:])[0].line + + def __str__(self): + return f"Documentation({len(self.comments)} comments, {self.pretty_signature}, line={self.defined_at})" diff --git a/arkdoc/parser/parser.py b/arkdoc/parser/parser.py new file mode 100644 index 0000000..0065cce --- /dev/null +++ b/arkdoc/parser/parser.py @@ -0,0 +1,71 @@ +#!/usr/bin/env python3 + +import re +from typing import List + +from . import Documentation, Source +from .tokenizer import cpp_tokenize, tree_from_tokens, cpp_tokenize, tokenize, Token +from .. import logger + + +class Parser: + def __init__(self, filename: str): + self.filename = filename + self.ast = None + self.in_code = False + + def _is_doc_comment(self, token: Token) -> bool: + if token.type == "COMMENT": + if "=begin" in token.value: + self.in_code = True + return True + if "=end" not in token.value and self.in_code: + return True + if "=end" in token.value: + self.in_code = False + return True + + return re.match(r"^#+ *@\w+", token.value) is not None + return False + + def _doc_extractor(self, node: List): + comments = None + + for n in node: + if not isinstance(n, list): + if self._is_doc_comment(n): + comments = [n] if comments is None else comments + [n] + else: + if comments is None: + yield from self._doc_extractor(n) + elif comments is not None: + yield Documentation(Source.ArkScript, comments, n) + comments = None + yield from self._doc_extractor(n) + + def extract_documentation(self): + if self.filename.endswith(".ark"): + for doc in self._doc_extractor(self.ast): + logger.debug(doc) + yield doc + elif self.filename.endswith(".cpp"): + for node in self.ast: + yield Documentation(Source.Cpp, node, None) + else: + raise NotImplementedError + + def parse(self): + with open(self.filename, "r") as f: + program = f.read() + + if self.filename.endswith(".ark"): + self.ast = [] + tokens = list(tokenize(program)) + + while tokens: + self.ast += tree_from_tokens(tokens) + elif self.filename.endswith(".cpp"): + self.ast = list(cpp_tokenize(program)) + logger.debug(self.ast) + else: + logger.error(f"Could not parse {self.filename}") diff --git a/arkdoc/parser/tokenizer.py b/arkdoc/parser/tokenizer.py new file mode 100644 index 0000000..1db34c4 --- /dev/null +++ b/arkdoc/parser/tokenizer.py @@ -0,0 +1,113 @@ +#!/usr/bin/env python3 + +import re +from typing import List +from dataclasses import dataclass + + +@dataclass +class Token: + type: str + value: str + line: int + column: int + + def __str__(self): + return ( + f"Token({self.type}, '{self.value}', line={self.line}, col={self.column})" + ) + + +Keywords = "let mut set del fun if while import begin quote".split() +TokenSpecification = [ + ("NUMBER", r"\d+(\.\d*)?"), + ("STRING", r"\"[^\"]*\""), + ("ID", r"[\w:?=!@&<>+\-%*/.]+"), + ("LPAREN", r"[(\[{]"), + ("RPAREN", r"[)\]}]"), + ("COMMENT", r"#[^\n]*"), + ("NEWLINE", r"\n"), + ("SKIP", r"[ \t]+"), + ("MISMATCH", r"."), +] + + +def tokenize(code: str) -> List[Token]: + tok_regex = "|".join("(?P<%s>%s)" % pair for pair in TokenSpecification) + line_num = 1 + line_start = 0 + + lines = code.split("\n") + + for mo in re.finditer(tok_regex, code): + kind = mo.lastgroup + value = mo.group() + column = mo.start() - line_start + + if kind == "ID" and value in Keywords: + kind = value + elif kind == "NEWLINE": + line_start = mo.end() + line_num += 1 + continue + elif kind == "SKIP": + continue + elif kind == "MISMATCH": + raise RuntimeError( + f"{value!r} unexpected on line {line_num}\n{lines[line_num - 1]}" + ) + yield Token(kind, value, line_num, column) + + +def cpp_tokenize(code: str) -> List[str]: + """ + The following regex accepts this kind of comment + + /** + * test + * test + * test + * @brief test + */ + """ + tok_regex = r"^ */\*\*\n( *\*( .*)\n)+" + line_num = 1 + line_start = 0 + + def transform(line: str): + nonlocal line_num + lines = line.split("\n") + + for e in lines[1:]: + line = "#" + e.strip()[1:] + line_num += 1 + yield Token("COMMENT", line, line_num, column) + + for mo in re.finditer(tok_regex, code, flags=re.MULTILINE): + value = mo.group() + column = mo.start() - line_start + yield list(transform(value)) + + +def tree_from_tokens(tokens: List[Token]) -> List: + if len(tokens) == 0: + raise SyntaxError("unexpected EOF") + + token = tokens.pop(0) + + L = [] + while token.type == "COMMENT": + L.append(token) + token = tokens.pop(0) + + if token.type == "LPAREN": + L2 = [] + while tokens[0].type != "RPAREN": + L2.append(tree_from_tokens(tokens)) + tokens.pop(0) + L.append(L2) + return L + elif token.type == "RPAREN": + raise SyntaxError(f"unexpected ) on line {token.line}, at {token.column}") + else: + return token diff --git a/arkdoc/reader.py b/arkdoc/reader.py new file mode 100644 index 0000000..0018e70 --- /dev/null +++ b/arkdoc/reader.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 + +import glob +from typing import List + +from .parser import Parser + + +def explore(folder: str) -> List[str]: + for ext in ["ark", "cpp"]: + yield from glob.glob(f"{folder}/*.{ext}", recursive=True) + + +def parse_all_in(folder: str) -> List[Parser]: + parsers = [] + for f in explore(folder): + parsers.append(Parser(f)) + return parsers diff --git a/examples/String.ark b/examples/String.ark deleted file mode 100644 index a231de9..0000000 --- a/examples/String.ark +++ /dev/null @@ -1,250 +0,0 @@ -### -# @meta String -# @brief Converts the given character to lowercase. -# @param _string the string to make lowercase -# @details The original string is left unmodified. -# =begin -# (import "String.ark") -# (let message "HeLLo World, I like cheese") -# (let new (str:toLower message)) # => hello world, i like cheese -# =end -# @author https://github.com/Natendrtfm -## -(let str:toLower (fun (text) { - (mut _index 0) - (mut _e "") - (mut _output "") - (while (< _index (len text)) { - (set _e (@ text _index)) - #Conditions - (if (= _e "A") (set _e "a") - (if (= _e "B") (set _e "b") - (if (= _e "C") (set _e "c") - (if (= _e "D") (set _e "d") - (if (= _e "E") (set _e "e") - (if (= _e "F") (set _e "f") - (if (= _e "G") (set _e "g") - (if (= _e "H") (set _e "h") - (if (= _e "I") (set _e "i") - (if (= _e "J") (set _e "j") - (if (= _e "K") (set _e "k") - (if (= _e "L") (set _e "l") - (if (= _e "M") (set _e "m") - (if (= _e "N") (set _e "n") - (if (= _e "O") (set _e "o") - (if (= _e "P") (set _e "p") - (if (= _e "Q") (set _e "q") - (if (= _e "R") (set _e "r") - (if (= _e "S") (set _e "s") - (if (= _e "T") (set _e "t") - (if (= _e "U") (set _e "u") - (if (= _e "V") (set _e "v") - (if (= _e "W") (set _e "w") - (if (= _e "X") (set _e "x") - (if (= _e "Y") (set _e "y") - (if (= _e "Z") (set _e "z") - (if (= _e "Â") (set _e "â") - (if (= _e "À") (set _e "à") - (if (= _e "Á") (set _e "á") - (if (= _e "Ã") (set _e "ã") - (if (= _e "Ä") (set _e "ä") - (if (= _e "Å") (set _e "å") - (if (= _e "Æ") (set _e "æ") - (if (= _e "Ç") (set _e "ç") - (if (= _e "È") (set _e "è") - (if (= _e "É") (set _e "é") - (if (= _e "Ê") (set _e "ê") - (if (= _e "Ë") (set _e "ë") - (if (= _e "Ì") (set _e "ì") - (if (= _e "Í") (set _e "í") - (if (= _e "Î") (set _e "î") - (if (= _e "Ï") (set _e "ï") - (if (= _e "Ô") (set _e "ô") ()))))))))))))))))))))))))))))))))))))))))))) - # End conditions - (set _output (+ _output _e)) - (set _index (+ _index 1)) - }) - _output -})) - -### -# @brief Converts the given character to uppercase. -# @param _string the string to make uppercase -# @details The original string is left unmodified. -# =begin -# (import "String.ark") -# (let message "hello world, I like cheese") -# (let new (str:toUpper message)) # => HELLO WORLD, I LIKE CHEESE -# =end -# @author https://github.com/Natendrtfm -## -(let str:toUpper (fun (_string) { - (mut _index 0) - (mut _e "") - (mut _output "") - (while (< _index (len _string)) { - (set _e (@ _string _index)) - #Conditions - (if (= _e "a") (set _e "A") - (if (= _e "b") (set _e "B") - (if (= _e "c") (set _e "C") - (if (= _e "d") (set _e "D") - (if (= _e "e") (set _e "E") - (if (= _e "f") (set _e "F") - (if (= _e "g") (set _e "G") - (if (= _e "h") (set _e "H") - (if (= _e "i") (set _e "I") - (if (= _e "j") (set _e "J") - (if (= _e "k") (set _e "K") - (if (= _e "l") (set _e "L") - (if (= _e "m") (set _e "M") - (if (= _e "n") (set _e "N") - (if (= _e "o") (set _e "O") - (if (= _e "p") (set _e "P") - (if (= _e "q") (set _e "Q") - (if (= _e "r") (set _e "R") - (if (= _e "s") (set _e "S") - (if (= _e "t") (set _e "T") - (if (= _e "u") (set _e "U") - (if (= _e "w") (set _e "W") - (if (= _e "v") (set _e "V") - (if (= _e "x") (set _e "X") - (if (= _e "y") (set _e "Y") - (if (= _e "z") (set _e "Z") - (if (= _e "a") (set _e "Â") - (if (= _e "à") (set _e "À") - (if (= _e "á") (set _e "Á") - (if (= _e "ã") (set _e "Ã") - (if (= _e "ä") (set _e "Ä") - (if (= _e "å") (set _e "Å") - (if (= _e "æ") (set _e "Æ") - (if (= _e "ç") (set _e "Ç") - (if (= _e "è") (set _e "È") - (if (= _e "é") (set _e "É") - (if (= _e "ê") (set _e "Ê") - (if (= _e "ë") (set _e "Ë") - (if (= _e "ì") (set _e "Ì") - (if (= _e "í") (set _e "Í") - (if (= _e "î") (set _e "Î") - (if (= _e "ï") (set _e "Ï") - (if (= _e "ô") (set _e "Ô") ()))))))))))))))))))))))))))))))))))))))))))) - #End of conditions - (set _output (+ _output _e)) - (set _index (+ _index 1)) - }) - _output -})) - -### -# @brief Reverse a string. -# @param _string the string to reverse -# @details The original string is left unmodified. -# =begin -# (import "String.ark") -# (let message "hello world, I like goats") -# (let reversed (str:reverse message)) # => staog ekil I ,dlrow olleh -# =end -# @author https://github.com/Natendrtfm -## -(let str:reverse (fun (_string) { - (mut _index (- (len _string) 1)) - (mut _returnedString "") - (while (> _index -1) { - (set _returnedString (+ _returnedString (@ _string _index))) - (set _index (- _index 1)) - }) - _returnedString -})) - -### -# @brief Get a slice of a given string, from a given index with a given length -# @param _string the string to get a slice of -# @param _startingIndex the index in the string where to start slicing -# @param _length the length of the slice -# @details The original string is left unmodified. Example: -# =begin -# (import "String.ark") -# (let message "hello world, I like goats") -# (let slice (str:slice message 6 4)) # => worl -# =end -# @author https://github.com/Natendrtfm -## -(let str:slice (fun (_string _startingIndex _length) - (if (= _length 0) - "" - { - (assert (and (>= _startingIndex 0) (< _startingIndex (len _string))) "slice start index must be in range [0, string length[") - - (mut _returnedString "") - (mut _index _startingIndex) - (let _end (if (> _length (len _string)) (len _string) (+ _index _length))) - - (while (< _index _end) { - (set _returnedString (+ _returnedString (@ _string _index))) - (set _index (+ _index 1)) - }) - _returnedString - }) -)) - -### -# @brief Split a string in multiple substrings in a list, given a separator (single character) -# @param _string the string to split -# @param _separator the separator to use for splitting (single char) -# @details Returns a list of strings. Example : -# =begin -# (import "String.ark") -# (let message "hello world, I like boats") -# (let splitted (str:split message " ")) -# =end -# @author https://github.com/Natendrtfm -## -(let str:split (fun (_string _separator) { - (assert (!= "" _separator) "Separator of split can not be empty") - (assert (= 1 (len _separator)) "Separator length must be equal to 1") - (mut _index 0) - (mut _word "") - (mut _letter "") - (mut _output []) - - (while (< _index (len _string)) { - (set _letter (@ _string _index)) - (if (= _letter _separator) - { - (set _output (append _output _word)) - (set _word "") - } - (set _word (+ _word _letter))) - (set _index (+ _index 1)) - }) - (if (empty? _word) - _output - (append _output _word)) -})) - -### -# @brief Replace a substring in a given string -# @param _string base string who contain pattern to replace by new sub string given -# @param _pattern sub string pattern to replace -# @param _new string who must replace the pattern -# @details The original string isn't modified. -# =begin -# (import "String.ark") -# (let message "hello XXX, do you like the name XXX?") -# (print (str:replace message "XXX" "Harry")) # hello Harry, do you like the name Harry? -# =end -## -(let str:replace (fun (_string _pattern _new) { - (mut _out _string) - (mut _idx (str:find _out _pattern)) - (let _pattern_sz (len _pattern)) - - (while (!= -1 _idx) { - (set _out (+ - (str:slice _out 0 _idx) - _new - (str:slice _out (+ _idx _pattern_sz) (- (len _out) (+ _idx _pattern_sz))))) - (set _idx (str:find _out _pattern)) - }) - _out -})) \ No newline at end of file diff --git a/images/example.png b/images/example.png deleted file mode 100644 index a5aae4a..0000000 Binary files a/images/example.png and /dev/null differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..56c59d1 Binary files /dev/null and b/requirements.txt differ diff --git a/src/Extend.rb b/src/Extend.rb deleted file mode 100644 index 7bc04b1..0000000 --- a/src/Extend.rb +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env ruby -wKU - -class String - - def refine - return self.lstrip.delete_prefix("#").lstrip - end - -end \ No newline at end of file diff --git a/src/Format.rb b/src/Format.rb deleted file mode 100644 index 7a5b7e4..0000000 --- a/src/Format.rb +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env ruby -wKU - -# special chars -NewLine = 10.chr -Bold = "**" -Brackets = ['[', ']'] -Parenthesis = ['(', ')'] - -# parser key elements format -Title = "### " -Function = "#### " -Code = "```" -Details = "_" - -# generator -Each = '-' -Separator = ' ' -Page = "##### " - -# theming -ThemeTag = "theme:" -ThemeNameTag = "name:" -ThemeDirTag = "custom_dir:" -ThemeDir = "../../themes/" -# default themes -DarkTheme = "dark" \ No newline at end of file diff --git a/src/Generator.rb b/src/Generator.rb deleted file mode 100644 index 9343c2e..0000000 --- a/src/Generator.rb +++ /dev/null @@ -1,117 +0,0 @@ -#!/usr/bin/env ruby -wKU -$LOAD_PATH << '.' -require "Parser.rb" - - -class Generator - attr_accessor :doc_name - - def initialize - @parser = Parser.new - @docs_path = "docs/" - end - - def index(doc_name, md_dir) - index_md = File.open( md_dir + "index.md", 'w') - - index_md.write("# #{doc_name}") - index_md.write(NewLine) - index_md.write(NewLine) - @parser.parsed.keys.sort.each { |key| - index_md.write(NewLine) - index_md.write(Page + "[#{key.capitalize}]" + "(#{key}.md)") - index_md.write("") - index_md.write(NewLine) - } - - index_md.close - end - - def make_yml(doc_name, src_dir = "") - Dir.mkdir(@docs_path) if !Dir.exist?(@docs_path) - doc_path = @docs_path + doc_name - Dir.mkdir(doc_path) if !Dir.exist?(doc_path) - - @parser.lexer.ark_path = src_dir if src_dir != "" - @parser.parse - labels = @parser.parsed.keys.sort - - yml = File.open(doc_path + '/' + "mkdocs.yml", 'w') - - # yaml config file writing - # define site name - yml.write("site_name: ") - yml.write(doc_name + NewLine) - # add pages - yml.write("nav:") - yml.write(NewLine) - - # home page - yml.write(Separator) - yml.write(Each + Separator) - yml.write("Home:") - yml.write(Separator) - yml.write("index.md") - yml.write(NewLine) - - labels.each { |label| - yml.write(Separator) - yml.write(Each + Separator) - yml.write(label.capitalize + ':') - yml.write(Separator) - yml.write(label + ".md") - yml.write(NewLine) - } - - # theming - yml.write(ThemeTag) - yml.write(NewLine) - yml.write(Separator) - yml.write(Separator) - yml.write(ThemeNameTag) - yml.write(Separator) - yml.write("null") - yml.write(NewLine) - yml.write(Separator) - yml.write(Separator) - yml.write(ThemeDirTag) - yml.write(Separator) - yml.write(ThemeDir) - yml.write(DarkTheme) - - # end of write config file - yml.close - - return doc_path - end - - def make_md(doc_name) - md_dir = "docs/" + doc_name + '/' + "docs/" - - if !Dir.exist?(md_dir) - Dir.mkdir(md_dir) - else - old = Dir.glob(md_dir + "/*.md") - old.each { |e| - File.delete(e) - } - end - - # home page - index(doc_name, md_dir) - for file in @parser.parsed.keys - md = File.open(md_dir + file + ".md", 'w') - md << @parser.parsed[file] - md.close - end - end - - def generate(site_name, source_path = "") - path_to_doc = make_yml(site_name, source_path) - puts("ArkDoc - Generation of configuration file") - make_md(site_name) - puts("ArkDoc - Generation of Markdown files") - - return path_to_doc - end -end \ No newline at end of file diff --git a/src/Lexer.rb b/src/Lexer.rb deleted file mode 100644 index ce49871..0000000 --- a/src/Lexer.rb +++ /dev/null @@ -1,121 +0,0 @@ -#!/usr/bin/env ruby -wKU -$LOAD_PATH << '.' -require "Extend.rb" -require "Format.rb" - -class Lexer - attr_reader :tokens - attr_accessor :ark_path - DocBlock = ["###", "##"] - Code = ["=begin", "=end"] - Keywords = ["@meta", "@brief", "@param", "@author", "@details"] - - def Key(key) Keywords[key].upcase; end - - def Value(key, line) (line.refine)[Keywords[key].size..-1].lstrip; end - - def initialize - @ark_path = "source/" - @tokens = [] - end - - def tokenize - Dir.children(@ark_path).each do |file_path| - lines = file_ary(File.open(@ark_path + file_path, 'r')) - file = {}.compare_by_identity - i = 0 - - # doc block - doc_block = false - # code example - code = false - code_str = "" - - while i < lines.size - if lines[i].strip == DocBlock[0] && !doc_block - doc_block = true - elsif lines[i].strip == DocBlock[1] && doc_block - doc_block = false - end - - if doc_block - # code example token - if lines[i].include?(Code[0]) && !code - code = true - elsif lines[i].include?(Code[1]) && code - file["CODE"] = code_str - code_str = "" - code = false - end - - if code - code_str << lines[i].delete_prefix("# ") if !lines[i].include?(Code[0]) - i += 1 - next - end - - # keywords tokens - if lines[i].include?(Keywords[0]) # meta - if (has_desc = Value(0, lines[i]).index(" ")) != nil - meta = Value(0, lines[i]).insert(has_desc, "-").split("-") - # for now support only titles and pages overview - meta[0] = (meta[0] << NewLine) # title - meta[1] = meta[1].lstrip - file["TITLE"] = meta[0] - file["OVERVIEW"] = meta[1] - else - meta = Value(0, lines[i]) - file["TITLE"] = meta - end - i += 1 - elsif lines[i].include?(Keywords[1]) # brief - file["FUN"] = fun(lines, i) - file[Key(1)] = Value(1, lines[i]) - i += 1 - elsif lines[i].include?(Keywords[2]) # param - file[Key(2)] = Value(2, lines[i]) - i += 1 - elsif lines[i].include?(Keywords[3]) # author - file[Key(3)] = Value(3, lines[i]) - i += 1 - elsif lines[i].include?(Keywords[4]) # details - file[Key(4)] = Value(4, lines[i]) - i += 1 - else - i += 1 - end - else - i += 1 - end - - end - - @tokens << file if !file.empty? - end - end - - private - def file_ary(file) - ary = [] - - file.each do |line| - ary << line - end - - return ary - end - - def fun(lines, cur_line) - i = cur_line - - while i < lines.size - if lines[i].include?("let") && lines[i].include?("fun") && !lines[i].include?('#') - return lines[i] - end - - i += 1 - end - - return nil - end -end \ No newline at end of file diff --git a/src/Parser.rb b/src/Parser.rb deleted file mode 100644 index 2437d20..0000000 --- a/src/Parser.rb +++ /dev/null @@ -1,133 +0,0 @@ -#!/usr/bin/env ruby -wKU -$LOAD_PATH << '.' -require "Lexer.rb" - -class Parser - attr_reader :parsed, :lexer - def Value(token, key) @lexer.tokens[token][key]; end - - def initialize - @lexer = Lexer.new - @parsed = {} - end - - def parse - @lexer.tokenize - i = 0 - - while i < @lexer.tokens.size - file = "" - - for key in @lexer.tokens[i].keys - case key - when "TITLE" - file = Value(i, key).strip - @parsed[file] = "" - @parsed[file] << Title - @parsed[file] << Value(i, key) - next - when "OVERVIEW" - @parsed[file] << NewLine - @parsed[file] << Value(i, key) - @parsed[file] << NewLine - when "FUN" - @parsed[file] << Function - @parsed[file] << function(Value(i, key)) - @parsed[file] << NewLine - when "@BRIEF" - @parsed[file] << Value(i, key) - @parsed[file] << NewLine - when "@PARAM" - param = m_param(Value(i, key)) - @parsed[file] << Bold - @parsed[file] << param[0] - @parsed[file] << Bold - @parsed[file] << param[1] - @parsed[file] << NewLine - when "CODE" - @parsed[file] << Code << NewLine - @parsed[file] << Value(i, key) - @parsed[file] << Code << NewLine - when "@AUTHOR" - @parsed[file] << "Author : " - @parsed[file] << author(Value(i, key)) - @parsed[file] << NewLine - when "@DETAILS" - @parsed[file] << Details - @parsed[file] << Value(i, key).strip - @parsed[file] << Details - @parsed[file] << NewLine << NewLine - end - end - - i += 1 - end - end - - private - def fun_format(fun) - func = fun.gsub("let", "").gsub("fun", "") - buf = "" - - func.each_char do |chr| - next if chr == Parenthesis[0] || chr == Parenthesis[1] - buf << chr - end - - buf = buf.lstrip.rstrip - buf.insert(0, Parenthesis[0]) - buf.insert(-1, Parenthesis[1]) - - return buf - end - - def function(token) - par = 0 - fun = "" - - token.each_char do |chr| - fun << chr - break if par == 4 - par += 1 if chr == Parenthesis[0] || chr == Parenthesis[1] - end - - fun = fun_format(fun) - - return fun - end - - def author(token) - name = "" - i = 0 - slash = 0 - link = "" - - while i < token.size - slash += 1 if token[i] == '/' - i += 1 - if slash == 3 - name = token[i..-1] - break - end - end - - link << Brackets[0] << name.rstrip << Brackets[1] - link << Parenthesis[0] << token.rstrip << Parenthesis[1] - - return link - end - - def m_param(token) - name = "" - details = "" - - token.each_char do |chr| - break if chr == " " - name << chr - end - - details = token[name.size..-1] - - return [name, details] - end -end \ No newline at end of file diff --git a/templates/assets/css/main.css b/templates/assets/css/main.css new file mode 100644 index 0000000..c83959e --- /dev/null +++ b/templates/assets/css/main.css @@ -0,0 +1,365 @@ +body { + background-color: #161616; + color: #d8d8d8; + margin: 0; + padding: 0; + min-height: 100vh; +} + +img.fit { + width: 100%; +} + +img.three-quarters { + width: 75%; +} + +code:not(.rainbowjs), div.codeblock { + background-color: #161616; + color: #d8d8d8; + word-break: break-all; +} + +code:not(.rainbowjs).error, div.codeblock.error { + color: #d73e48; +} + +code.rainbowjs { + color: #e0e0e0; + background-color: inherit; +} + +div.codeblock, pre { + padding: 0 10px !important; + font-family: "SF Mono", "Segoe UI Mono", "Roboto Mono", Menlo, Courier, monospace; + font-size: 110% !important; + line-height: 0.5; + border-radius: 0.1rem; +} + +pre.preloader, div.preloader { + position: initial; +} + +.divider { + border-top: none; + border-left: 1px solid #373737; + height: 5vh; +} + +.divider.half { + height: 2.5vh; +} + +pre code.rainbowjs span.label { + background: initial; +} + +.btn:not(.btn-link) { + border-color: #0870f8 !important; +} +.btn:not(.btn-link):hover { + border-color: #076bef !important; +} + +.btn.btn-link, .btn-link, .btn.btn-link:focus { + color: deepskyblue; +} +.btn.btn-link:hover, .btn-link:hover, .btn.btn-link:focus:hover { + color: #33ccff; +} + +.btn:hover { + border-radius: 5px; + transition: border-radius 0.1s ease-in-out; +} + +.btn.btn-primary { + color: #e0e0e0; + background: #0870f8; +} +.btn.btn-primary:hover { + background-color: #0665e0; +} + +@keyframes slide-left { + 0% { + opacity: 0; + transform: translateX(1.6rem); + } + 100% { + opacity: 1; + transform: translateX(0); + } +} +header.navbar, #banner { + padding: 0 4vw; + width: 100vw; + height: 5vh; + background-color: #161616; +} +header.navbar *, #banner * { + margin: 0 10px; +} +header.navbar a, #banner a { + font-size: 0.8rem; +} +header.navbar img, #banner img { + height: 5vh; +} +header.navbar .navbar-brand, #banner .navbar-brand { + font-size: 1.12rem; + color: #00ace6; + text-transform: uppercase; + font-weight: bold; + line-height: 5vh; +} +header.navbar .dropdown, #banner .dropdown { + margin: 0; +} +header.navbar .dropdown a, #banner .dropdown a { + border: none; +} + +header.navbar:not(.has-banner) { + height: 7.5vh; +} +header.navbar:not(.has-banner) img, header.navbar:not(.has-banner) .navbar-center, header.navbar:not(.has-banner) .navbar-center a, header.navbar:not(.has-banner) div.dropdown-link { + height: 7.5vh; +} + +#banner { + height: 60vh; + margin-bottom: 25px; +} +#banner .banner-center { + display: flex; + flex-flow: column; + text-align: center; +} +#banner img { + height: 12vh; +} + +.off-canvas .off-canvas-toggle { + position: fixed; + top: 10vh; + left: 15px; +} + +#sidebar { + background: #161616; + max-width: 15vw; +} +#sidebar ~ .off-canvas-overlay { + cursor: initial; +} +#sidebar .nav .nav-item a { + color: #d8d8d8; +} +#sidebar .nav .nav-item a:hover { + color: deepskyblue; +} + +footer#page-footer { + bottom: 0; + width: 100vw; + min-height: 9vh; + background-color: #161616; + padding: 2vh; +} +footer#page-footer p { + margin: 0; + padding: 0; +} + +.btn.btn-link.dropdown-toggle:focus { + box-shadow: none; +} + +.menu { + background-color: #161616; +} + +.dropdown .dropdown-toggle:focus + .menu, .dropdown .menu:hover, .dropdown.active .menu { + display: block !important; +} + +.hide { + display: none; +} + +.dropdown-toggle .icon.icon-caret { + margin-right: 0; +} + +@media screen and (max-width: 1280px) { + .dropdown-toggle .icon.icon-caret { + display: none; + } + + header.navbar { + min-height: 55px; + padding: 0; + position: fixed; + } + header.navbar.has-banner #menu-show { + height: 5vh; + } + header.navbar.has-banner #menu-show i { + height: 7.5vh; + } + header.navbar .dropdown { + display: flex !important; + align-items: center; + flex-direction: column; + } + header.navbar .dropdown .menu, header.navbar .dropdown .menu:hover { + animation: none; + display: flex !important; + align-items: inherit; + flex-direction: inherit; + position: relative; + margin-bottom: 20px; + } + header.navbar .dropdown .dropdown-toggle:focus + .menu { + display: flex !important; + } + header.navbar #menu-show { + min-height: 55px; + padding-top: 0; + padding-bottom: 0; + border: 0; + height: 7.5vh; + position: fixed; + top: 0; + margin-left: 0; + z-index: 500; + } + header.navbar #menu-show i { + height: 7.5vh; + } + header.navbar .logo { + align-items: initial; + position: fixed; + right: 0; + } + header.navbar .logo img { + min-height: 50px; + } + header.navbar .divider { + width: 190px; + height: 1px; + border-left: none; + border-top: 1px solid #373737; + } + + header.navbar:not(.has-banner):focus-within .navbar-section.show-on-focus { + animation: slide-down ease 0.15s 1; + padding-top: 5vh; + background-color: #161616; + left: 0; + margin: 0; + width: 100vw; + display: flex !important; + align-items: center; + flex-direction: column; + } + header.navbar:not(.has-banner):focus-within .menu { + position: initial; + } + + header.navbar.has-banner:focus-within .logo, header.navbar.has-banner:focus-within .logo * { + animation: slide-left ease 0.15s 1; + display: block !important; + } + header.navbar.has-banner:focus-within .navbar-center { + animation: slide-down ease 0.15s 1; + display: flex !important; + background-color: #161616; + position: fixed; + top: 5vh; + left: 0; + flex-direction: column; + margin: 0; + width: 100vw; + } + + .off-canvas .off-canvas-toggle { + left: -6px; + border-bottom-right-radius: 10px; + } +} +ul.no-dot { + list-style: none; + padding-left: 25px; +} + +#main { + width: 100vw; + background-color: #232323; + min-height: 83.5vh; +} + +#content { + padding: 5vh 0; +} +#content #nota-bene { + margin: 25px 0; +} +#content .inner-section { + padding-left: 25px; + border-left: 1px solid #373737; +} +#content h3, #content h4, #content h5, #content h6 { + margin-top: 3vh; +} + +#content > section, .inner-section > section { + margin-bottom: 3.5%; +} + +table.table.dark { + background-color: #161616; +} + +.table.table-striped tbody tr:nth-of-type(odd) { + background-color: #0f0f0f; +} + +.table.table-hover tbody tr:hover { + background-color: #070707; +} + +code.rainbowjs { + display: block; + overflow-x: auto; +} + +pre.rainbow-show { + position: initial; +} + +@media screen and (max-width: 1280px) { + .col-2 { + display: none; + } + + .col-8 { + width: 100vw; + } + + #content { + margin-top: 7.5vh; + padding: 5vh 10px; + } + #content h2 { + text-align: center; + } + #content section .inner-section { + padding: 0; + border: none; + } +} + +/*# sourceMappingURL=main.css.map */ diff --git a/templates/assets/css/main.css.map b/templates/assets/css/main.css.map new file mode 100644 index 0000000..86b5324 --- /dev/null +++ b/templates/assets/css/main.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":["../sass/general.sass","../sass/_vars.sass","../sass/page-structure.sass","../sass/content.sass"],"names":[],"mappings":"AAEA;EACI,kBCOa;EDNb,OCQU;EDPV;EACA;EACA;;;AAIJ;EACI;;;AACJ;EACI;;;AAGJ;EACI,kBCRa;EDSb,OCPU;EDQV;;;AACJ;EACI;;;AACJ;EACI,OCbS;EDcT;;;AACJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAIJ;EACI;EACA;EACA,QCvCY;;;ADwChB;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;AACA;EACI;;;AAER;EACI,OCxCa;;ADyCb;EACI;;;AAER;EACI;EACA;;;AAEJ;EACI,OCrDS;EDsDT,YCjDmB;;ADkDnB;EACI;;;AAGR;EACI;IACI;IACA;;EACJ;IACI;IACA;;;AElER;EACI;EACA;EACA,QDVY;ECWZ,kBDJa;;ACMb;EACI;;AACJ;EACI,WAXoB;;AAaxB;EACI,QDnBQ;;ACqBZ;EACI;EACA;EACA;EACA;EACA,aD1BQ;;AC4BZ;EACI;;AACA;EACI;;;AAEZ;EACI;;AACA;EACI;;;AAIR;EACI,QArCY;EAsCZ;;AAEA;EACI;EACA;EACA;;AAEJ;EACI;;;AAIR;EACI;EACA;EACA;;;AAEJ;EACI,YDrDa;ECsDb;;AAEA;EACI;;AAEJ;EACI;;AACA;EACI,ODzDK;;;AC4DjB;EACI;EACA;EACA,YD1EY;EC2EZ,kBDrEa;ECsEb;;AAEA;EACI;EACA;;;AAIR;EACI;;;AACJ;EACI,kBDjFa;;;ACkFjB;EACI;;;AAIJ;EACI;;;AAGJ;EACI;;;AAKJ;EACI;IACI;;;EAEJ;IACI;IAMA;IACA;;EALI;IACI,QDhHA;;ECiHA;IACI;;EAGZ;IACI;IACA;IACA;;EACA;IACI;IACA;IACA;IACA;IACA;IACA;;EACJ;IACI;;EACR;IACI;IAGA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EATA;IACI;;EASR;IACI;IACA;IACA;;EACA;IACI;;EACR;IACI;IACA;IACA;IACA;;;EAIJ;IACI;IACA,aD9JI;IC+JJ,kBDxJK;ICyJL;IACA;IACA;IACA;IACA;IACA;;EACJ;IACI;;;EAIJ;IACI;IACA;;EACJ;IACI;IACA;IACA,kBD1KK;IC2KL;IACA,KDnLI;ICoLJ;IACA;IACA;IACA;;;EAGR;IACI;IACA;;;AC7LR;EACI;EACA,cFHS;;;AEMb;EACI;EACA;EACA;;;AAGJ;EACI;;AAEA;EACI;;AAEJ;EACI,cFnBK;EEoBL;;AAEJ;EACI;;;AAER;EACI;;;AAEJ;EACI,kBFpBa;;;AEqBjB;EACI;;;AACJ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;;;AAGJ;EAEI;IACI;;;EACJ;IACI;;;EAEJ;IACI;IACA;;EACA;IACI;;EACJ;IACI;IACA","file":"main.css"} \ No newline at end of file diff --git a/templates/assets/css/rainbowjs-theme.css b/templates/assets/css/rainbowjs-theme.css new file mode 100644 index 0000000..6b16973 --- /dev/null +++ b/templates/assets/css/rainbowjs-theme.css @@ -0,0 +1 @@ +@keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade{10%{transform:scale(1, 1)}35%{transform:scale(1, 1.7)}40%{transform:scale(1, 1.7)}50%{opacity:1}60%{transform:scale(1, 1)}100%{transform:scale(1, 1);opacity:0}}[data-language] code,[class^="lang"] code,pre [data-language],pre [class^="lang"]{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";animation:fade-in 50ms ease-in-out 2s forwards}[data-language] code.rainbow,[class^="lang"] code.rainbow,pre [data-language].rainbow,pre [class^="lang"].rainbow{animation:none;transition:opacity 50ms ease-in-out}[data-language] code.loading,[class^="lang"] code.loading,pre [data-language].loading,pre [class^="lang"].loading{animation:none}[data-language] code.rainbow-show,[class^="lang"] code.rainbow-show,pre [data-language].rainbow-show,pre [class^="lang"].rainbow-show{opacity:1}pre{position:relative}pre.loading .preloader div{animation-play-state:running}pre.loading .preloader div:nth-of-type(1){background:#0081f5;animation:fade 1.5s 300ms linear infinite}pre.loading .preloader div:nth-of-type(2){background:#5000f5;animation:fade 1.5s 438ms linear infinite}pre.loading .preloader div:nth-of-type(3){background:#9000f5;animation:fade 1.5s 577ms linear infinite}pre.loading .preloader div:nth-of-type(4){background:#f50419;animation:fade 1.5s 715ms linear infinite}pre.loading .preloader div:nth-of-type(5){background:#f57900;animation:fade 1.5s 853ms linear infinite}pre.loading .preloader div:nth-of-type(6){background:#f5e600;animation:fade 1.5s 992ms linear infinite}pre.loading .preloader div:nth-of-type(7){background:#00f50c;animation:fade 1.5s 1130ms linear infinite}pre .preloader{position:absolute;top:12px;left:10px}pre .preloader div{width:12px;height:12px;border-radius:4px;display:inline-block;margin-right:4px;opacity:0;animation-play-state:paused;animation-fill-mode:forwards}pre{background-color:#000;word-wrap:break-word;margin:0px;padding:10px;color:#fff;font-size:14px;margin-bottom:20px}pre,code{font-family:'Monaco', 'Menlo', courier, monospace}pre{background-color:#1d1f21;color:#c5c8c6}pre .comment{color:#969896}pre .variable.global,pre .variable.class,pre .variable.instance{color:#c66}pre .constant.numeric,pre .constant.language,pre .constant.hex-color,pre .keyword.unit{color:#de935f}pre .constant,pre .entity,pre .entity.class,pre .support{color:#f0c674}pre .constant.symbol,pre .string{color:#b5bd68}pre .entity.function,pre .support.css-property,pre .selector{color:#81a2be}pre .keyword,pre .storage{color:#b294bb} \ No newline at end of file diff --git a/templates/assets/css/spectre-exp.min.css b/templates/assets/css/spectre-exp.min.css new file mode 100644 index 0000000..d313774 --- /dev/null +++ b/templates/assets/css/spectre-exp.min.css @@ -0,0 +1 @@ +/*! Spectre.css Experimentals v0.5.9 | MIT License | github.com/picturepan2/spectre */.form-autocomplete{position:relative}.form-autocomplete .form-autocomplete-input{align-content:flex-start;display:-ms-flexbox;display:flex;-ms-flex-line-pack:start;-ms-flex-wrap:wrap;flex-wrap:wrap;height:auto;min-height:1.6rem;padding:.1rem}.form-autocomplete .form-autocomplete-input.is-focused{border-color:#5755d9;box-shadow:0 0 0 .1rem rgba(87,85,217,.2)}.form-autocomplete .form-autocomplete-input .form-input{border-color:transparent;box-shadow:none;display:inline-block;-ms-flex:1 0 auto;flex:1 0 auto;height:1.2rem;line-height:.8rem;margin:.1rem;width:auto}.form-autocomplete .menu{left:0;position:absolute;top:100%;width:100%}.form-autocomplete.autocomplete-oneline .form-autocomplete-input{-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.form-autocomplete.autocomplete-oneline .chip{-ms-flex:1 0 auto;flex:1 0 auto}.calendar{border:.05rem solid #dadee4;border-radius:.1rem;display:block;min-width:280px}.calendar .calendar-nav{align-items:center;background:#f7f8f9;border-top-left-radius:.1rem;border-top-right-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-align:center;font-size:.9rem;padding:.4rem}.calendar .calendar-body,.calendar .calendar-header{display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;padding:.4rem 0}.calendar .calendar-body .calendar-date,.calendar .calendar-header .calendar-date{-ms-flex:0 0 14.28%;flex:0 0 14.28%;max-width:14.28%}.calendar .calendar-header{background:#f7f8f9;border-bottom:.05rem solid #dadee4;color:#bcc3ce;font-size:.7rem;text-align:center}.calendar .calendar-body{color:#66758c}.calendar .calendar-date{border:0;padding:.2rem}.calendar .calendar-date .date-item{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:.05rem solid transparent;border-radius:50%;color:#66758c;cursor:pointer;font-size:.7rem;height:1.4rem;line-height:1rem;outline:0;padding:.1rem;position:relative;text-align:center;text-decoration:none;transition:background .2s,border .2s,box-shadow .2s,color .2s;vertical-align:middle;white-space:nowrap;width:1.4rem}.calendar .calendar-date .date-item.date-today{border-color:#e5e5f9;color:#5755d9}.calendar .calendar-date .date-item:focus{box-shadow:0 0 0 .1rem rgba(87,85,217,.2)}.calendar .calendar-date .date-item:focus,.calendar .calendar-date .date-item:hover{background:#fefeff;border-color:#e5e5f9;color:#5755d9;text-decoration:none}.calendar .calendar-date .date-item.active,.calendar .calendar-date .date-item:active{background:#4b48d6;border-color:#3634d2;color:#fff}.calendar .calendar-date .date-item.badge::after{position:absolute;right:3px;top:3px;transform:translate(50%,-50%)}.calendar .calendar-date .calendar-event.disabled,.calendar .calendar-date .calendar-event:disabled,.calendar .calendar-date .date-item.disabled,.calendar .calendar-date .date-item:disabled{cursor:default;opacity:.25;pointer-events:none}.calendar .calendar-date.next-month .calendar-event,.calendar .calendar-date.next-month .date-item,.calendar .calendar-date.prev-month .calendar-event,.calendar .calendar-date.prev-month .date-item{opacity:.25}.calendar .calendar-range{position:relative}.calendar .calendar-range::before{background:#f1f1fc;content:"";height:1.4rem;left:0;position:absolute;right:0;top:50%;transform:translateY(-50%)}.calendar .calendar-range.range-start::before{left:50%}.calendar .calendar-range.range-end::before{right:50%}.calendar .calendar-range.range-end .date-item,.calendar .calendar-range.range-start .date-item{background:#4b48d6;border-color:#3634d2;color:#fff}.calendar .calendar-range .date-item{color:#5755d9}.calendar.calendar-lg .calendar-body{padding:0}.calendar.calendar-lg .calendar-body .calendar-date{border-bottom:.05rem solid #dadee4;border-right:.05rem solid #dadee4;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:5.5rem;padding:0}.calendar.calendar-lg .calendar-body .calendar-date:nth-child(7n){border-right:0}.calendar.calendar-lg .calendar-body .calendar-date:nth-last-child(-n+7){border-bottom:0}.calendar.calendar-lg .date-item{align-self:flex-end;-ms-flex-item-align:end;height:1.4rem;margin-right:.2rem;margin-top:.2rem}.calendar.calendar-lg .calendar-range::before{top:19px}.calendar.calendar-lg .calendar-range.range-start::before{left:auto;width:19px}.calendar.calendar-lg .calendar-range.range-end::before{right:19px}.calendar.calendar-lg .calendar-events{flex-grow:1;-ms-flex-positive:1;line-height:1;overflow-y:auto;padding:.2rem}.calendar.calendar-lg .calendar-event{border-radius:.1rem;display:block;font-size:.7rem;margin:.1rem auto;overflow:hidden;padding:3px 4px;text-overflow:ellipsis;white-space:nowrap}.carousel .carousel-locator:nth-of-type(1):checked~.carousel-container .carousel-item:nth-of-type(1),.carousel .carousel-locator:nth-of-type(2):checked~.carousel-container .carousel-item:nth-of-type(2),.carousel .carousel-locator:nth-of-type(3):checked~.carousel-container .carousel-item:nth-of-type(3),.carousel .carousel-locator:nth-of-type(4):checked~.carousel-container .carousel-item:nth-of-type(4),.carousel .carousel-locator:nth-of-type(5):checked~.carousel-container .carousel-item:nth-of-type(5),.carousel .carousel-locator:nth-of-type(6):checked~.carousel-container .carousel-item:nth-of-type(6),.carousel .carousel-locator:nth-of-type(7):checked~.carousel-container .carousel-item:nth-of-type(7),.carousel .carousel-locator:nth-of-type(8):checked~.carousel-container .carousel-item:nth-of-type(8){animation:carousel-slidein .75s ease-in-out 1;opacity:1;z-index:100}.carousel .carousel-locator:nth-of-type(1):checked~.carousel-nav .nav-item:nth-of-type(1),.carousel .carousel-locator:nth-of-type(2):checked~.carousel-nav .nav-item:nth-of-type(2),.carousel .carousel-locator:nth-of-type(3):checked~.carousel-nav .nav-item:nth-of-type(3),.carousel .carousel-locator:nth-of-type(4):checked~.carousel-nav .nav-item:nth-of-type(4),.carousel .carousel-locator:nth-of-type(5):checked~.carousel-nav .nav-item:nth-of-type(5),.carousel .carousel-locator:nth-of-type(6):checked~.carousel-nav .nav-item:nth-of-type(6),.carousel .carousel-locator:nth-of-type(7):checked~.carousel-nav .nav-item:nth-of-type(7),.carousel .carousel-locator:nth-of-type(8):checked~.carousel-nav .nav-item:nth-of-type(8){color:#f7f8f9}.carousel{background:#f7f8f9;display:block;overflow:hidden;-webkit-overflow-scrolling:touch;position:relative;width:100%;z-index:1}.carousel .carousel-container{height:100%;left:0;position:relative}.carousel .carousel-container::before{content:"";display:block;padding-bottom:56.25%}.carousel .carousel-container .carousel-item{animation:carousel-slideout 1s ease-in-out 1;height:100%;left:0;margin:0;opacity:0;position:absolute;top:0;width:100%}.carousel .carousel-container .carousel-item:hover .item-next,.carousel .carousel-container .carousel-item:hover .item-prev{opacity:1}.carousel .carousel-container .item-next,.carousel .carousel-container .item-prev{background:rgba(247,248,249,.25);border-color:rgba(247,248,249,.5);color:#f7f8f9;opacity:0;position:absolute;top:50%;transform:translateY(-50%);transition:all .4s;z-index:100}.carousel .carousel-container .item-prev{left:1rem}.carousel .carousel-container .item-next{right:1rem}.carousel .carousel-nav{bottom:.4rem;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;left:50%;position:absolute;transform:translateX(-50%);width:10rem;z-index:100}.carousel .carousel-nav .nav-item{color:rgba(247,248,249,.5);display:block;-ms-flex:1 0 auto;flex:1 0 auto;height:1.6rem;margin:.2rem;max-width:2.5rem;position:relative}.carousel .carousel-nav .nav-item::before{background:currentColor;content:"";display:block;height:.1rem;position:absolute;top:.5rem;width:100%}@keyframes carousel-slidein{0%{transform:translateX(100%)}100%{transform:translateX(0)}}@keyframes carousel-slideout{0%{opacity:1;transform:translateX(0)}100%{opacity:1;transform:translateX(-50%)}}.comparison-slider{height:50vh;overflow:hidden;-webkit-overflow-scrolling:touch;position:relative;width:100%}.comparison-slider .comparison-after,.comparison-slider .comparison-before{height:100%;left:0;margin:0;overflow:hidden;position:absolute;top:0}.comparison-slider .comparison-after img,.comparison-slider .comparison-before img{height:100%;object-fit:cover;object-position:left center;position:absolute;width:100%}.comparison-slider .comparison-before{width:100%;z-index:1}.comparison-slider .comparison-before .comparison-label{right:.8rem}.comparison-slider .comparison-after{max-width:100%;min-width:0;z-index:2}.comparison-slider .comparison-after::before{background:0 0;content:"";cursor:default;height:100%;left:0;position:absolute;right:.8rem;top:0;z-index:1}.comparison-slider .comparison-after::after{background:currentColor;border-radius:50%;box-shadow:0 -5px,0 5px;color:#fff;content:"";height:3px;pointer-events:none;position:absolute;right:.4rem;top:50%;transform:translate(50%,-50%);width:3px}.comparison-slider .comparison-after .comparison-label{left:.8rem}.comparison-slider .comparison-resizer{animation:first-run 1.5s 1 ease-in-out;cursor:ew-resize;height:.8rem;left:0;max-width:100%;min-width:.8rem;opacity:0;outline:0;position:relative;resize:horizontal;top:50%;transform:translateY(-50%) scaleY(30);width:0}.comparison-slider .comparison-label{background:rgba(48,55,66,.5);bottom:.8rem;color:#fff;padding:.2rem .4rem;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@keyframes first-run{0%{width:0}25%{width:2.4rem}50%{width:.8rem}75%{width:1.2rem}100%{width:0}}.filter .filter-tag#tag-0:checked~.filter-nav .chip[for=tag-0],.filter .filter-tag#tag-1:checked~.filter-nav .chip[for=tag-1],.filter .filter-tag#tag-2:checked~.filter-nav .chip[for=tag-2],.filter .filter-tag#tag-3:checked~.filter-nav .chip[for=tag-3],.filter .filter-tag#tag-4:checked~.filter-nav .chip[for=tag-4],.filter .filter-tag#tag-5:checked~.filter-nav .chip[for=tag-5],.filter .filter-tag#tag-6:checked~.filter-nav .chip[for=tag-6],.filter .filter-tag#tag-7:checked~.filter-nav .chip[for=tag-7],.filter .filter-tag#tag-8:checked~.filter-nav .chip[for=tag-8]{background:#5755d9;color:#fff}.filter .filter-tag#tag-1:checked~.filter-body .filter-item:not([data-tag~=tag-1]),.filter .filter-tag#tag-2:checked~.filter-body .filter-item:not([data-tag~=tag-2]),.filter .filter-tag#tag-3:checked~.filter-body .filter-item:not([data-tag~=tag-3]),.filter .filter-tag#tag-4:checked~.filter-body .filter-item:not([data-tag~=tag-4]),.filter .filter-tag#tag-5:checked~.filter-body .filter-item:not([data-tag~=tag-5]),.filter .filter-tag#tag-6:checked~.filter-body .filter-item:not([data-tag~=tag-6]),.filter .filter-tag#tag-7:checked~.filter-body .filter-item:not([data-tag~=tag-7]),.filter .filter-tag#tag-8:checked~.filter-body .filter-item:not([data-tag~=tag-8]){display:none}.filter .filter-nav{margin:.4rem 0}.filter .filter-body{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.meter{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f7f8f9;border:0;border-radius:.1rem;display:block;height:.8rem;width:100%}.meter::-webkit-meter-inner-element{display:block}.meter::-webkit-meter-bar,.meter::-webkit-meter-even-less-good-value,.meter::-webkit-meter-optimum-value,.meter::-webkit-meter-suboptimum-value{border-radius:.1rem}.meter::-webkit-meter-bar{background:#f7f8f9}.meter::-webkit-meter-optimum-value{background:#32b643}.meter::-webkit-meter-suboptimum-value{background:#ffb700}.meter::-webkit-meter-even-less-good-value{background:#e85600}.meter:-moz-meter-optimum,.meter:-moz-meter-sub-optimum,.meter:-moz-meter-sub-sub-optimum,.meter::-moz-meter-bar{border-radius:.1rem}.meter:-moz-meter-optimum::-moz-meter-bar{background:#32b643}.meter:-moz-meter-sub-optimum::-moz-meter-bar{background:#ffb700}.meter:-moz-meter-sub-sub-optimum::-moz-meter-bar{background:#e85600}.off-canvas{display:-ms-flexbox;display:flex;-ms-flex-flow:nowrap;flex-flow:nowrap;height:100%;position:relative;width:100%}.off-canvas .off-canvas-toggle{display:block;left:.4rem;position:absolute;top:.4rem;transition:none;z-index:1}.off-canvas .off-canvas-sidebar{background:#f7f8f9;bottom:0;left:0;min-width:10rem;overflow-y:auto;position:fixed;top:0;transform:translateX(-100%);transition:transform .25s;z-index:200}.off-canvas .off-canvas-content{-ms-flex:1 1 auto;flex:1 1 auto;height:100%;padding:.4rem .4rem .4rem 4rem}.off-canvas .off-canvas-overlay{background:rgba(48,55,66,.1);border-color:transparent;border-radius:0;bottom:0;display:none;height:100%;left:0;position:fixed;right:0;top:0;width:100%}.off-canvas .off-canvas-sidebar.active,.off-canvas .off-canvas-sidebar:target{transform:translateX(0)}.off-canvas .off-canvas-sidebar.active~.off-canvas-overlay,.off-canvas .off-canvas-sidebar:target~.off-canvas-overlay{display:block;z-index:100}@media (min-width:960px){.off-canvas.off-canvas-sidebar-show .off-canvas-toggle{display:none}.off-canvas.off-canvas-sidebar-show .off-canvas-sidebar{-ms-flex:0 0 auto;flex:0 0 auto;position:relative;transform:none}.off-canvas.off-canvas-sidebar-show .off-canvas-overlay{display:none!important}}.parallax{display:block;height:auto;position:relative;width:auto}.parallax .parallax-content{box-shadow:0 1rem 2.1rem rgba(48,55,66,.3);height:auto;transform:perspective(1000px);transform-style:preserve-3d;transition:all .4s ease;width:100%}.parallax .parallax-content::before{content:"";display:block;height:100%;left:0;position:absolute;top:0;width:100%}.parallax .parallax-front{align-items:center;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-pack:center;height:100%;justify-content:center;left:0;position:absolute;text-align:center;text-shadow:0 0 20px rgba(48,55,66,.75);top:0;transform:translateZ(50px) scale(.95);transition:transform .4s;width:100%;z-index:1}.parallax .parallax-top-left{height:50%;left:0;outline:0;position:absolute;top:0;width:50%;z-index:100}.parallax .parallax-top-left:focus~.parallax-content,.parallax .parallax-top-left:hover~.parallax-content{transform:perspective(1000px) rotateX(3deg) rotateY(-3deg)}.parallax .parallax-top-left:focus~.parallax-content::before,.parallax .parallax-top-left:hover~.parallax-content::before{background:linear-gradient(135deg,rgba(255,255,255,.35) 0,transparent 50%)}.parallax .parallax-top-left:focus~.parallax-content .parallax-front,.parallax .parallax-top-left:hover~.parallax-content .parallax-front{transform:translate3d(4.5px,4.5px,50px) scale(.95)}.parallax .parallax-top-right{height:50%;outline:0;position:absolute;right:0;top:0;width:50%;z-index:100}.parallax .parallax-top-right:focus~.parallax-content,.parallax .parallax-top-right:hover~.parallax-content{transform:perspective(1000px) rotateX(3deg) rotateY(3deg)}.parallax .parallax-top-right:focus~.parallax-content::before,.parallax .parallax-top-right:hover~.parallax-content::before{background:linear-gradient(-135deg,rgba(255,255,255,.35) 0,transparent 50%)}.parallax .parallax-top-right:focus~.parallax-content .parallax-front,.parallax .parallax-top-right:hover~.parallax-content .parallax-front{transform:translate3d(-4.5px,4.5px,50px) scale(.95)}.parallax .parallax-bottom-left{bottom:0;height:50%;left:0;outline:0;position:absolute;width:50%;z-index:100}.parallax .parallax-bottom-left:focus~.parallax-content,.parallax .parallax-bottom-left:hover~.parallax-content{transform:perspective(1000px) rotateX(-3deg) rotateY(-3deg)}.parallax .parallax-bottom-left:focus~.parallax-content::before,.parallax .parallax-bottom-left:hover~.parallax-content::before{background:linear-gradient(45deg,rgba(255,255,255,.35) 0,transparent 50%)}.parallax .parallax-bottom-left:focus~.parallax-content .parallax-front,.parallax .parallax-bottom-left:hover~.parallax-content .parallax-front{transform:translate3d(4.5px,-4.5px,50px) scale(.95)}.parallax .parallax-bottom-right{bottom:0;height:50%;outline:0;position:absolute;right:0;width:50%;z-index:100}.parallax .parallax-bottom-right:focus~.parallax-content,.parallax .parallax-bottom-right:hover~.parallax-content{transform:perspective(1000px) rotateX(-3deg) rotateY(3deg)}.parallax .parallax-bottom-right:focus~.parallax-content::before,.parallax .parallax-bottom-right:hover~.parallax-content::before{background:linear-gradient(-45deg,rgba(255,255,255,.35) 0,transparent 50%)}.parallax .parallax-bottom-right:focus~.parallax-content .parallax-front,.parallax .parallax-bottom-right:hover~.parallax-content .parallax-front{transform:translate3d(-4.5px,-4.5px,50px) scale(.95)}.progress{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#eef0f3;border:0;border-radius:.1rem;color:#5755d9;height:.2rem;position:relative;width:100%}.progress::-webkit-progress-bar{background:0 0;border-radius:.1rem}.progress::-webkit-progress-value{background:#5755d9;border-radius:.1rem}.progress::-moz-progress-bar{background:#5755d9;border-radius:.1rem}.progress:indeterminate{animation:progress-indeterminate 1.5s linear infinite;background:#eef0f3 linear-gradient(to right,#5755d9 30%,#eef0f3 30%) top left/150% 150% no-repeat}.progress:indeterminate::-moz-progress-bar{background:0 0}@keyframes progress-indeterminate{0%{background-position:200% 0}100%{background-position:-200% 0}}.slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;display:block;height:1.2rem;width:100%}.slider:focus{box-shadow:0 0 0 .1rem rgba(87,85,217,.2);outline:0}.slider.tooltip:not([data-tooltip])::after{content:attr(value)}.slider::-webkit-slider-thumb{-webkit-appearance:none;background:#5755d9;border:0;border-radius:50%;height:.6rem;margin-top:-.25rem;-webkit-transition:transform .2s;transition:transform .2s;width:.6rem}.slider::-moz-range-thumb{background:#5755d9;border:0;border-radius:50%;height:.6rem;-moz-transition:transform .2s;transition:transform .2s;width:.6rem}.slider::-ms-thumb{background:#5755d9;border:0;border-radius:50%;height:.6rem;-ms-transition:transform .2s;transition:transform .2s;width:.6rem}.slider:active::-webkit-slider-thumb{transform:scale(1.25)}.slider:active::-moz-range-thumb{transform:scale(1.25)}.slider:active::-ms-thumb{transform:scale(1.25)}.slider.disabled::-webkit-slider-thumb,.slider:disabled::-webkit-slider-thumb{background:#f7f8f9;transform:scale(1)}.slider.disabled::-moz-range-thumb,.slider:disabled::-moz-range-thumb{background:#f7f8f9;transform:scale(1)}.slider.disabled::-ms-thumb,.slider:disabled::-ms-thumb{background:#f7f8f9;transform:scale(1)}.slider::-webkit-slider-runnable-track{background:#eef0f3;border-radius:.1rem;height:.1rem;width:100%}.slider::-moz-range-track{background:#eef0f3;border-radius:.1rem;height:.1rem;width:100%}.slider::-ms-track{background:#eef0f3;border-radius:.1rem;height:.1rem;width:100%}.slider::-ms-fill-lower{background:#5755d9}.timeline .timeline-item{display:-ms-flexbox;display:flex;margin-bottom:1.2rem;position:relative}.timeline .timeline-item::before{background:#dadee4;content:"";height:100%;left:11px;position:absolute;top:1.2rem;width:2px}.timeline .timeline-item .timeline-left{-ms-flex:0 0 auto;flex:0 0 auto}.timeline .timeline-item .timeline-content{-ms-flex:1 1 auto;flex:1 1 auto;padding:2px 0 2px .8rem}.timeline .timeline-item .timeline-icon{align-items:center;border-radius:50%;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-pack:center;height:1.2rem;justify-content:center;text-align:center;width:1.2rem}.timeline .timeline-item .timeline-icon::before{border:.1rem solid #5755d9;border-radius:50%;content:"";display:block;height:.4rem;left:.4rem;position:absolute;top:.4rem;width:.4rem}.timeline .timeline-item .timeline-icon.icon-lg{background:#5755d9;line-height:1.2rem}.timeline .timeline-item .timeline-icon.icon-lg::before{content:none}.viewer-360{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-direction:column;flex-direction:column}.viewer-360 .viewer-slider[max="36"][value="1"]+.viewer-image{background-position-y:0}.viewer-360 .viewer-slider[max="36"][value="2"]+.viewer-image{background-position-y:2.8571428571%}.viewer-360 .viewer-slider[max="36"][value="3"]+.viewer-image{background-position-y:5.7142857143%}.viewer-360 .viewer-slider[max="36"][value="4"]+.viewer-image{background-position-y:8.5714285714%}.viewer-360 .viewer-slider[max="36"][value="5"]+.viewer-image{background-position-y:11.4285714286%}.viewer-360 .viewer-slider[max="36"][value="6"]+.viewer-image{background-position-y:14.2857142857%}.viewer-360 .viewer-slider[max="36"][value="7"]+.viewer-image{background-position-y:17.1428571429%}.viewer-360 .viewer-slider[max="36"][value="8"]+.viewer-image{background-position-y:20%}.viewer-360 .viewer-slider[max="36"][value="9"]+.viewer-image{background-position-y:22.8571428571%}.viewer-360 .viewer-slider[max="36"][value="10"]+.viewer-image{background-position-y:25.7142857143%}.viewer-360 .viewer-slider[max="36"][value="11"]+.viewer-image{background-position-y:28.5714285714%}.viewer-360 .viewer-slider[max="36"][value="12"]+.viewer-image{background-position-y:31.4285714286%}.viewer-360 .viewer-slider[max="36"][value="13"]+.viewer-image{background-position-y:34.2857142857%}.viewer-360 .viewer-slider[max="36"][value="14"]+.viewer-image{background-position-y:37.1428571429%}.viewer-360 .viewer-slider[max="36"][value="15"]+.viewer-image{background-position-y:40%}.viewer-360 .viewer-slider[max="36"][value="16"]+.viewer-image{background-position-y:42.8571428571%}.viewer-360 .viewer-slider[max="36"][value="17"]+.viewer-image{background-position-y:45.7142857143%}.viewer-360 .viewer-slider[max="36"][value="18"]+.viewer-image{background-position-y:48.5714285714%}.viewer-360 .viewer-slider[max="36"][value="19"]+.viewer-image{background-position-y:51.4285714286%}.viewer-360 .viewer-slider[max="36"][value="20"]+.viewer-image{background-position-y:54.2857142857%}.viewer-360 .viewer-slider[max="36"][value="21"]+.viewer-image{background-position-y:57.1428571429%}.viewer-360 .viewer-slider[max="36"][value="22"]+.viewer-image{background-position-y:60%}.viewer-360 .viewer-slider[max="36"][value="23"]+.viewer-image{background-position-y:62.8571428571%}.viewer-360 .viewer-slider[max="36"][value="24"]+.viewer-image{background-position-y:65.7142857143%}.viewer-360 .viewer-slider[max="36"][value="25"]+.viewer-image{background-position-y:68.5714285714%}.viewer-360 .viewer-slider[max="36"][value="26"]+.viewer-image{background-position-y:71.4285714286%}.viewer-360 .viewer-slider[max="36"][value="27"]+.viewer-image{background-position-y:74.2857142857%}.viewer-360 .viewer-slider[max="36"][value="28"]+.viewer-image{background-position-y:77.1428571429%}.viewer-360 .viewer-slider[max="36"][value="29"]+.viewer-image{background-position-y:80%}.viewer-360 .viewer-slider[max="36"][value="30"]+.viewer-image{background-position-y:82.8571428571%}.viewer-360 .viewer-slider[max="36"][value="31"]+.viewer-image{background-position-y:85.7142857143%}.viewer-360 .viewer-slider[max="36"][value="32"]+.viewer-image{background-position-y:88.5714285714%}.viewer-360 .viewer-slider[max="36"][value="33"]+.viewer-image{background-position-y:91.4285714286%}.viewer-360 .viewer-slider[max="36"][value="34"]+.viewer-image{background-position-y:94.2857142857%}.viewer-360 .viewer-slider[max="36"][value="35"]+.viewer-image{background-position-y:97.1428571429%}.viewer-360 .viewer-slider[max="36"][value="36"]+.viewer-image{background-position-y:100%}.viewer-360 .viewer-slider{cursor:ew-resize;-ms-flex-order:2;margin:1rem;order:2;width:60%}.viewer-360 .viewer-image{background-position-y:0;background-repeat:no-repeat;background-size:100%;-ms-flex-order:1;max-width:100%;order:1} \ No newline at end of file diff --git a/templates/assets/css/spectre-icons.min.css b/templates/assets/css/spectre-icons.min.css new file mode 100644 index 0000000..0276f7b --- /dev/null +++ b/templates/assets/css/spectre-icons.min.css @@ -0,0 +1 @@ +/*! Spectre.css Icons v0.5.9 | MIT License | github.com/picturepan2/spectre */.icon{box-sizing:border-box;display:inline-block;font-size:inherit;font-style:normal;height:1em;position:relative;text-indent:-9999px;vertical-align:middle;width:1em}.icon::after,.icon::before{content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.icon.icon-2x{font-size:1.6rem}.icon.icon-3x{font-size:2.4rem}.icon.icon-4x{font-size:3.2rem}.accordion .icon,.btn .icon,.menu .icon,.toast .icon{vertical-align:-10%}.btn-lg .icon{vertical-align:-15%}.icon-arrow-down::before,.icon-arrow-left::before,.icon-arrow-right::before,.icon-arrow-up::before,.icon-back::before,.icon-downward::before,.icon-forward::before,.icon-upward::before{border:.1rem solid currentColor;border-bottom:0;border-right:0;height:.65em;width:.65em}.icon-arrow-down::before{transform:translate(-50%,-75%) rotate(225deg)}.icon-arrow-left::before{transform:translate(-25%,-50%) rotate(-45deg)}.icon-arrow-right::before{transform:translate(-75%,-50%) rotate(135deg)}.icon-arrow-up::before{transform:translate(-50%,-25%) rotate(45deg)}.icon-back::after,.icon-forward::after{background:currentColor;height:.1rem;width:.8em}.icon-downward::after,.icon-upward::after{background:currentColor;height:.8em;width:.1rem}.icon-back::after{left:55%}.icon-back::before{transform:translate(-50%,-50%) rotate(-45deg)}.icon-downward::after{top:45%}.icon-downward::before{transform:translate(-50%,-50%) rotate(-135deg)}.icon-forward::after{left:45%}.icon-forward::before{transform:translate(-50%,-50%) rotate(135deg)}.icon-upward::after{top:55%}.icon-upward::before{transform:translate(-50%,-50%) rotate(45deg)}.icon-caret::before{border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid currentColor;height:0;transform:translate(-50%,-25%);width:0}.icon-menu::before{background:currentColor;box-shadow:0 -.35em,0 .35em;height:.1rem;width:100%}.icon-apps::before{background:currentColor;box-shadow:-.35em -.35em,-.35em 0,-.35em .35em,0 -.35em,0 .35em,.35em -.35em,.35em 0,.35em .35em;height:3px;width:3px}.icon-resize-horiz::after,.icon-resize-horiz::before,.icon-resize-vert::after,.icon-resize-vert::before{border:.1rem solid currentColor;border-bottom:0;border-right:0;height:.45em;width:.45em}.icon-resize-horiz::before,.icon-resize-vert::before{transform:translate(-50%,-90%) rotate(45deg)}.icon-resize-horiz::after,.icon-resize-vert::after{transform:translate(-50%,-10%) rotate(225deg)}.icon-resize-horiz::before{transform:translate(-90%,-50%) rotate(-45deg)}.icon-resize-horiz::after{transform:translate(-10%,-50%) rotate(135deg)}.icon-more-horiz::before,.icon-more-vert::before{background:currentColor;border-radius:50%;box-shadow:-.4em 0,.4em 0;height:3px;width:3px}.icon-more-vert::before{box-shadow:0 -.4em,0 .4em}.icon-cross::before,.icon-minus::before,.icon-plus::before{background:currentColor;height:.1rem;width:100%}.icon-cross::after,.icon-plus::after{background:currentColor;height:100%;width:.1rem}.icon-cross::before{width:100%}.icon-cross::after{height:100%}.icon-cross::after,.icon-cross::before{transform:translate(-50%,-50%) rotate(45deg)}.icon-check::before{border:.1rem solid currentColor;border-right:0;border-top:0;height:.5em;transform:translate(-50%,-75%) rotate(-45deg);width:.9em}.icon-stop{border:.1rem solid currentColor;border-radius:50%}.icon-stop::before{background:currentColor;height:.1rem;transform:translate(-50%,-50%) rotate(45deg);width:1em}.icon-shutdown{border:.1rem solid currentColor;border-radius:50%;border-top-color:transparent}.icon-shutdown::before{background:currentColor;content:"";height:.5em;top:.1em;width:.1rem}.icon-refresh::before{border:.1rem solid currentColor;border-radius:50%;border-right-color:transparent;height:1em;width:1em}.icon-refresh::after{border:.2em solid currentColor;border-left-color:transparent;border-top-color:transparent;height:0;left:80%;top:20%;width:0}.icon-search::before{border:.1rem solid currentColor;border-radius:50%;height:.75em;left:5%;top:5%;transform:translate(0,0) rotate(45deg);width:.75em}.icon-search::after{background:currentColor;height:.1rem;left:80%;top:80%;transform:translate(-50%,-50%) rotate(45deg);width:.4em}.icon-edit::before{border:.1rem solid currentColor;height:.4em;transform:translate(-40%,-60%) rotate(-45deg);width:.85em}.icon-edit::after{border:.15em solid currentColor;border-right-color:transparent;border-top-color:transparent;height:0;left:5%;top:95%;transform:translate(0,-100%);width:0}.icon-delete::before{border:.1rem solid currentColor;border-bottom-left-radius:.1rem;border-bottom-right-radius:.1rem;border-top:0;height:.75em;top:60%;width:.75em}.icon-delete::after{background:currentColor;box-shadow:-.25em .2em,.25em .2em;height:.1rem;top:.05rem;width:.5em}.icon-share{border:.1rem solid currentColor;border-radius:.1rem;border-right:0;border-top:0}.icon-share::before{border:.1rem solid currentColor;border-left:0;border-top:0;height:.4em;left:100%;top:.25em;transform:translate(-125%,-50%) rotate(-45deg);width:.4em}.icon-share::after{border:.1rem solid currentColor;border-bottom:0;border-radius:75% 0;border-right:0;height:.5em;width:.6em}.icon-flag::before{background:currentColor;height:1em;left:15%;width:.1rem}.icon-flag::after{border:.1rem solid currentColor;border-bottom-right-radius:.1rem;border-left:0;border-top-right-radius:.1rem;height:.65em;left:60%;top:35%;width:.8em}.icon-bookmark::before{border:.1rem solid currentColor;border-bottom:0;border-top-left-radius:.1rem;border-top-right-radius:.1rem;height:.9em;width:.8em}.icon-bookmark::after{border:.1rem solid currentColor;border-bottom:0;border-left:0;border-radius:.1rem;height:.5em;transform:translate(-50%,35%) rotate(-45deg) skew(15deg,15deg);width:.5em}.icon-download,.icon-upload{border-bottom:.1rem solid currentColor}.icon-download::before,.icon-upload::before{border:.1rem solid currentColor;border-bottom:0;border-right:0;height:.5em;transform:translate(-50%,-60%) rotate(-135deg);width:.5em}.icon-download::after,.icon-upload::after{background:currentColor;height:.6em;top:40%;width:.1rem}.icon-upload::before{transform:translate(-50%,-60%) rotate(45deg)}.icon-upload::after{top:50%}.icon-copy::before{border:.1rem solid currentColor;border-bottom:0;border-radius:.1rem;border-right:0;height:.8em;left:40%;top:35%;width:.8em}.icon-copy::after{border:.1rem solid currentColor;border-radius:.1rem;height:.8em;left:60%;top:60%;width:.8em}.icon-time{border:.1rem solid currentColor;border-radius:50%}.icon-time::before{background:currentColor;height:.4em;transform:translate(-50%,-75%);width:.1rem}.icon-time::after{background:currentColor;height:.3em;transform:translate(-50%,-75%) rotate(90deg);transform-origin:50% 90%;width:.1rem}.icon-mail::before{border:.1rem solid currentColor;border-radius:.1rem;height:.8em;width:1em}.icon-mail::after{border:.1rem solid currentColor;border-right:0;border-top:0;height:.5em;transform:translate(-50%,-90%) rotate(-45deg) skew(10deg,10deg);width:.5em}.icon-people::before{border:.1rem solid currentColor;border-radius:50%;height:.45em;top:25%;width:.45em}.icon-people::after{border:.1rem solid currentColor;border-radius:50% 50% 0 0;height:.4em;top:75%;width:.9em}.icon-message{border:.1rem solid currentColor;border-bottom:0;border-radius:.1rem;border-right:0}.icon-message::before{border:.1rem solid currentColor;border-bottom-right-radius:.1rem;border-left:0;border-top:0;height:.8em;left:65%;top:40%;width:.7em}.icon-message::after{background:currentColor;border-radius:.1rem;height:.3em;left:10%;top:100%;transform:translate(0,-90%) rotate(45deg);width:.1rem}.icon-photo{border:.1rem solid currentColor;border-radius:.1rem}.icon-photo::before{border:.1rem solid currentColor;border-radius:50%;height:.25em;left:35%;top:35%;width:.25em}.icon-photo::after{border:.1rem solid currentColor;border-bottom:0;border-left:0;height:.5em;left:60%;transform:translate(-50%,25%) rotate(-45deg);width:.5em}.icon-link::after,.icon-link::before{border:.1rem solid currentColor;border-radius:5em 0 0 5em;border-right:0;height:.5em;width:.75em}.icon-link::before{transform:translate(-70%,-45%) rotate(-45deg)}.icon-link::after{transform:translate(-30%,-55%) rotate(135deg)}.icon-location::before{border:.1rem solid currentColor;border-radius:50% 50% 50% 0;height:.8em;transform:translate(-50%,-60%) rotate(-45deg);width:.8em}.icon-location::after{border:.1rem solid currentColor;border-radius:50%;height:.2em;transform:translate(-50%,-80%);width:.2em}.icon-emoji{border:.1rem solid currentColor;border-radius:50%}.icon-emoji::before{border-radius:50%;box-shadow:-.17em -.1em,.17em -.1em;height:.15em;width:.15em}.icon-emoji::after{border:.1rem solid currentColor;border-bottom-color:transparent;border-radius:50%;border-right-color:transparent;height:.5em;transform:translate(-50%,-40%) rotate(-135deg);width:.5em} \ No newline at end of file diff --git a/templates/assets/css/spectre.min.css b/templates/assets/css/spectre.min.css new file mode 100644 index 0000000..0fe23d9 --- /dev/null +++ b/templates/assets/css/spectre.min.css @@ -0,0 +1 @@ +/*! Spectre.css v0.5.9 | MIT License | github.com/picturepan2/spectre */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}address{font-style:normal}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:"SF Mono","Segoe UI Mono","Roboto Mono",Menlo,Courier,monospace;font-size:1em}dfn{font-style:italic}small{font-size:80%;font-weight:400}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}fieldset{border:0;margin:0;padding:0}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item;outline:0}canvas{display:inline-block}template{display:none}[hidden]{display:none}*,::after,::before{box-sizing:inherit}html{box-sizing:border-box;font-size:20px;line-height:1.5;-webkit-tap-highlight-color:transparent}body{background:#fff;color:#3b4351;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;font-size:.8rem;overflow-x:hidden;text-rendering:optimizeLegibility}a{color:#5755d9;outline:0;text-decoration:none}a:focus{box-shadow:0 0 0 .1rem rgba(87,85,217,.2)}a.active,a:active,a:focus,a:hover{color:#302ecd;text-decoration:underline}a:visited{color:#807fe2}h1,h2,h3,h4,h5,h6{color:inherit;font-weight:500;line-height:1.2;margin-bottom:.5em;margin-top:0}.h1,.h2,.h3,.h4,.h5,.h6{font-weight:500}.h1,h1{font-size:2rem}.h2,h2{font-size:1.6rem}.h3,h3{font-size:1.4rem}.h4,h4{font-size:1.2rem}.h5,h5{font-size:1rem}.h6,h6{font-size:.8rem}p{margin:0 0 1.2rem}a,ins,u{-webkit-text-decoration-skip:ink edges;text-decoration-skip:ink edges}abbr[title]{border-bottom:.05rem dotted;cursor:help;text-decoration:none}kbd{background:#303742;border-radius:.1rem;color:#fff;font-size:.7rem;line-height:1.25;padding:.1rem .2rem}mark{background:#ffe9b3;border-bottom:.05rem solid #ffd367;border-radius:.1rem;color:#3b4351;padding:.05rem .1rem 0}blockquote{border-left:.1rem solid #dadee4;margin-left:0;padding:.4rem .8rem}blockquote p:last-child{margin-bottom:0}ol,ul{margin:.8rem 0 .8rem .8rem;padding:0}ol ol,ol ul,ul ol,ul ul{margin:.8rem 0 .8rem .8rem}ol li,ul li{margin-top:.4rem}ul{list-style:disc inside}ul ul{list-style-type:circle}ol{list-style:decimal inside}ol ol{list-style-type:lower-alpha}dl dt{font-weight:700}dl dd{margin:.4rem 0 .8rem 0}.lang-zh,.lang-zh-hans,html:lang(zh),html:lang(zh-Hans){font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Helvetica Neue",sans-serif}.lang-zh-hant,html:lang(zh-Hant){font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"PingFang TC","Hiragino Sans CNS","Microsoft JhengHei","Helvetica Neue",sans-serif}.lang-ja,html:lang(ja){font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Hiragino Sans","Hiragino Kaku Gothic Pro","Yu Gothic",YuGothic,Meiryo,"Helvetica Neue",sans-serif}.lang-ko,html:lang(ko){font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Malgun Gothic","Helvetica Neue",sans-serif}.lang-cjk ins,.lang-cjk u,:lang(ja) ins,:lang(ja) u,:lang(zh) ins,:lang(zh) u{border-bottom:.05rem solid;text-decoration:none}.lang-cjk del+del,.lang-cjk del+s,.lang-cjk ins+ins,.lang-cjk ins+u,.lang-cjk s+del,.lang-cjk s+s,.lang-cjk u+ins,.lang-cjk u+u,:lang(ja) del+del,:lang(ja) del+s,:lang(ja) ins+ins,:lang(ja) ins+u,:lang(ja) s+del,:lang(ja) s+s,:lang(ja) u+ins,:lang(ja) u+u,:lang(zh) del+del,:lang(zh) del+s,:lang(zh) ins+ins,:lang(zh) ins+u,:lang(zh) s+del,:lang(zh) s+s,:lang(zh) u+ins,:lang(zh) u+u{margin-left:.125em}.table{border-collapse:collapse;border-spacing:0;text-align:left;width:100%}.table.table-striped tbody tr:nth-of-type(odd){background:#f7f8f9}.table tbody tr.active,.table.table-striped tbody tr.active{background:#eef0f3}.table.table-hover tbody tr:hover{background:#eef0f3}.table.table-scroll{display:block;overflow-x:auto;padding-bottom:.75rem;white-space:nowrap}.table td,.table th{border-bottom:.05rem solid #dadee4;padding:.6rem .4rem}.table th{border-bottom-width:.1rem}.btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:.05rem solid #5755d9;border-radius:.1rem;color:#5755d9;cursor:pointer;display:inline-block;font-size:.8rem;height:1.8rem;line-height:1.2rem;outline:0;padding:.25rem .4rem;text-align:center;text-decoration:none;transition:background .2s,border .2s,box-shadow .2s,color .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.btn:focus{box-shadow:0 0 0 .1rem rgba(87,85,217,.2)}.btn:focus,.btn:hover{background:#f1f1fc;border-color:#4b48d6;text-decoration:none}.btn.active,.btn:active{background:#4b48d6;border-color:#3634d2;color:#fff;text-decoration:none}.btn.active.loading::after,.btn:active.loading::after{border-bottom-color:#fff;border-left-color:#fff}.btn.disabled,.btn:disabled,.btn[disabled]{cursor:default;opacity:.5;pointer-events:none}.btn.btn-primary{background:#5755d9;border-color:#4b48d6;color:#fff}.btn.btn-primary:focus,.btn.btn-primary:hover{background:#4240d4;border-color:#3634d2;color:#fff}.btn.btn-primary.active,.btn.btn-primary:active{background:#3a38d2;border-color:#302ecd;color:#fff}.btn.btn-primary.loading::after{border-bottom-color:#fff;border-left-color:#fff}.btn.btn-success{background:#32b643;border-color:#2faa3f;color:#fff}.btn.btn-success:focus{box-shadow:0 0 0 .1rem rgba(50,182,67,.2)}.btn.btn-success:focus,.btn.btn-success:hover{background:#30ae40;border-color:#2da23c;color:#fff}.btn.btn-success.active,.btn.btn-success:active{background:#2a9a39;border-color:#278e34;color:#fff}.btn.btn-success.loading::after{border-bottom-color:#fff;border-left-color:#fff}.btn.btn-error{background:#e85600;border-color:#d95000;color:#fff}.btn.btn-error:focus{box-shadow:0 0 0 .1rem rgba(232,86,0,.2)}.btn.btn-error:focus,.btn.btn-error:hover{background:#de5200;border-color:#cf4d00;color:#fff}.btn.btn-error.active,.btn.btn-error:active{background:#c44900;border-color:#b54300;color:#fff}.btn.btn-error.loading::after{border-bottom-color:#fff;border-left-color:#fff}.btn.btn-link{background:0 0;border-color:transparent;color:#5755d9}.btn.btn-link.active,.btn.btn-link:active,.btn.btn-link:focus,.btn.btn-link:hover{color:#302ecd}.btn.btn-sm{font-size:.7rem;height:1.4rem;padding:.05rem .3rem}.btn.btn-lg{font-size:.9rem;height:2rem;padding:.35rem .6rem}.btn.btn-block{display:block;width:100%}.btn.btn-action{padding-left:0;padding-right:0;width:1.8rem}.btn.btn-action.btn-sm{width:1.4rem}.btn.btn-action.btn-lg{width:2rem}.btn.btn-clear{background:0 0;border:0;color:currentColor;height:1rem;line-height:.8rem;margin-left:.2rem;margin-right:-2px;opacity:1;padding:.1rem;text-decoration:none;width:1rem}.btn.btn-clear:focus,.btn.btn-clear:hover{background:rgba(247,248,249,.5);opacity:.95}.btn.btn-clear::before{content:"\2715"}.btn-group{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.btn-group .btn{-ms-flex:1 0 auto;flex:1 0 auto}.btn-group .btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group .btn:not(:first-child):not(:last-child){border-radius:0;margin-left:-.05rem}.btn-group .btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-.05rem}.btn-group .btn.active,.btn-group .btn:active,.btn-group .btn:focus,.btn-group .btn:hover{z-index:1}.btn-group.btn-group-block{display:-ms-flexbox;display:flex}.btn-group.btn-group-block .btn{-ms-flex:1 0 0;flex:1 0 0}.form-group:not(:last-child){margin-bottom:.4rem}fieldset{margin-bottom:.8rem}legend{font-size:.9rem;font-weight:500;margin-bottom:.8rem}.form-label{display:block;line-height:1.2rem;padding:.3rem 0}.form-label.label-sm{font-size:.7rem;padding:.1rem 0}.form-label.label-lg{font-size:.9rem;padding:.4rem 0}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;background-image:none;border:.05rem solid #bcc3ce;border-radius:.1rem;color:#3b4351;display:block;font-size:.8rem;height:1.8rem;line-height:1.2rem;max-width:100%;outline:0;padding:.25rem .4rem;position:relative;transition:background .2s,border .2s,box-shadow .2s,color .2s;width:100%}.form-input:focus{border-color:#5755d9;box-shadow:0 0 0 .1rem rgba(87,85,217,.2)}.form-input:-ms-input-placeholder{color:#bcc3ce}.form-input::-ms-input-placeholder{color:#bcc3ce}.form-input::placeholder{color:#bcc3ce}.form-input.input-sm{font-size:.7rem;height:1.4rem;padding:.05rem .3rem}.form-input.input-lg{font-size:.9rem;height:2rem;padding:.35rem .6rem}.form-input.input-inline{display:inline-block;vertical-align:middle;width:auto}.form-input[type=file]{height:auto}textarea.form-input,textarea.form-input.input-lg,textarea.form-input.input-sm{height:auto}.form-input-hint{color:#bcc3ce;font-size:.7rem;margin-top:.2rem}.has-success .form-input-hint,.is-success+.form-input-hint{color:#32b643}.has-error .form-input-hint,.is-error+.form-input-hint{color:#e85600}.form-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:.05rem solid #bcc3ce;border-radius:.1rem;color:inherit;font-size:.8rem;height:1.8rem;line-height:1.2rem;outline:0;padding:.25rem .4rem;vertical-align:middle;width:100%}.form-select:focus{border-color:#5755d9;box-shadow:0 0 0 .1rem rgba(87,85,217,.2)}.form-select::-ms-expand{display:none}.form-select.select-sm{font-size:.7rem;height:1.4rem;padding:.05rem 1.1rem .05rem .3rem}.form-select.select-lg{font-size:.9rem;height:2rem;padding:.35rem 1.4rem .35rem .6rem}.form-select[multiple],.form-select[size]{height:auto;padding:.25rem .4rem}.form-select[multiple] option,.form-select[size] option{padding:.1rem .2rem}.form-select:not([multiple]):not([size]){background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23667189'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E") no-repeat right .35rem center/.4rem .5rem;padding-right:1.2rem}.has-icon-left,.has-icon-right{position:relative}.has-icon-left .form-icon,.has-icon-right .form-icon{height:.8rem;margin:0 .25rem;position:absolute;top:50%;transform:translateY(-50%);width:.8rem;z-index:2}.has-icon-left .form-icon{left:.05rem}.has-icon-left .form-input{padding-left:1.3rem}.has-icon-right .form-icon{right:.05rem}.has-icon-right .form-input{padding-right:1.3rem}.form-checkbox,.form-radio,.form-switch{display:block;line-height:1.2rem;margin:.2rem 0;min-height:1.4rem;padding:.1rem .4rem .1rem 1.2rem;position:relative}.form-checkbox input,.form-radio input,.form-switch input{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;position:absolute;width:1px}.form-checkbox input:focus+.form-icon,.form-radio input:focus+.form-icon,.form-switch input:focus+.form-icon{border-color:#5755d9;box-shadow:0 0 0 .1rem rgba(87,85,217,.2)}.form-checkbox input:checked+.form-icon,.form-radio input:checked+.form-icon,.form-switch input:checked+.form-icon{background:#5755d9;border-color:#5755d9}.form-checkbox .form-icon,.form-radio .form-icon,.form-switch .form-icon{border:.05rem solid #bcc3ce;cursor:pointer;display:inline-block;position:absolute;transition:background .2s,border .2s,box-shadow .2s,color .2s}.form-checkbox.input-sm,.form-radio.input-sm,.form-switch.input-sm{font-size:.7rem;margin:0}.form-checkbox.input-lg,.form-radio.input-lg,.form-switch.input-lg{font-size:.9rem;margin:.3rem 0}.form-checkbox .form-icon,.form-radio .form-icon{background:#fff;height:.8rem;left:0;top:.3rem;width:.8rem}.form-checkbox input:active+.form-icon,.form-radio input:active+.form-icon{background:#eef0f3}.form-checkbox .form-icon{border-radius:.1rem}.form-checkbox input:checked+.form-icon::before{background-clip:padding-box;border:.1rem solid #fff;border-left-width:0;border-top-width:0;content:"";height:9px;left:50%;margin-left:-3px;margin-top:-6px;position:absolute;top:50%;transform:rotate(45deg);width:6px}.form-checkbox input:indeterminate+.form-icon{background:#5755d9;border-color:#5755d9}.form-checkbox input:indeterminate+.form-icon::before{background:#fff;content:"";height:2px;left:50%;margin-left:-5px;margin-top:-1px;position:absolute;top:50%;width:10px}.form-radio .form-icon{border-radius:50%}.form-radio input:checked+.form-icon::before{background:#fff;border-radius:50%;content:"";height:6px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:6px}.form-switch{padding-left:2rem}.form-switch .form-icon{background:#bcc3ce;background-clip:padding-box;border-radius:.45rem;height:.9rem;left:0;top:.25rem;width:1.6rem}.form-switch .form-icon::before{background:#fff;border-radius:50%;content:"";display:block;height:.8rem;left:0;position:absolute;top:0;transition:background .2s,border .2s,box-shadow .2s,color .2s,left .2s;width:.8rem}.form-switch input:checked+.form-icon::before{left:14px}.form-switch input:active+.form-icon::before{background:#f7f8f9}.input-group{display:-ms-flexbox;display:flex}.input-group .input-group-addon{background:#f7f8f9;border:.05rem solid #bcc3ce;border-radius:.1rem;line-height:1.2rem;padding:.25rem .4rem;white-space:nowrap}.input-group .input-group-addon.addon-sm{font-size:.7rem;padding:.05rem .3rem}.input-group .input-group-addon.addon-lg{font-size:.9rem;padding:.35rem .6rem}.input-group .form-input,.input-group .form-select{-ms-flex:1 1 auto;flex:1 1 auto;width:1%}.input-group .input-group-btn{z-index:1}.input-group .form-input:first-child:not(:last-child),.input-group .form-select:first-child:not(:last-child),.input-group .input-group-addon:first-child:not(:last-child),.input-group .input-group-btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group .form-input:not(:first-child):not(:last-child),.input-group .form-select:not(:first-child):not(:last-child),.input-group .input-group-addon:not(:first-child):not(:last-child),.input-group .input-group-btn:not(:first-child):not(:last-child){border-radius:0;margin-left:-.05rem}.input-group .form-input:last-child:not(:first-child),.input-group .form-select:last-child:not(:first-child),.input-group .input-group-addon:last-child:not(:first-child),.input-group .input-group-btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-.05rem}.input-group .form-input:focus,.input-group .form-select:focus,.input-group .input-group-addon:focus,.input-group .input-group-btn:focus{z-index:2}.input-group .form-select{width:auto}.input-group.input-inline{display:-ms-inline-flexbox;display:inline-flex}.form-input.is-success,.form-select.is-success,.has-success .form-input,.has-success .form-select{background:#f9fdfa;border-color:#32b643}.form-input.is-success:focus,.form-select.is-success:focus,.has-success .form-input:focus,.has-success .form-select:focus{box-shadow:0 0 0 .1rem rgba(50,182,67,.2)}.form-input.is-error,.form-select.is-error,.has-error .form-input,.has-error .form-select{background:#fffaf7;border-color:#e85600}.form-input.is-error:focus,.form-select.is-error:focus,.has-error .form-input:focus,.has-error .form-select:focus{box-shadow:0 0 0 .1rem rgba(232,86,0,.2)}.form-checkbox.is-error .form-icon,.form-radio.is-error .form-icon,.form-switch.is-error .form-icon,.has-error .form-checkbox .form-icon,.has-error .form-radio .form-icon,.has-error .form-switch .form-icon{border-color:#e85600}.form-checkbox.is-error input:checked+.form-icon,.form-radio.is-error input:checked+.form-icon,.form-switch.is-error input:checked+.form-icon,.has-error .form-checkbox input:checked+.form-icon,.has-error .form-radio input:checked+.form-icon,.has-error .form-switch input:checked+.form-icon{background:#e85600;border-color:#e85600}.form-checkbox.is-error input:focus+.form-icon,.form-radio.is-error input:focus+.form-icon,.form-switch.is-error input:focus+.form-icon,.has-error .form-checkbox input:focus+.form-icon,.has-error .form-radio input:focus+.form-icon,.has-error .form-switch input:focus+.form-icon{border-color:#e85600;box-shadow:0 0 0 .1rem rgba(232,86,0,.2)}.form-checkbox.is-error input:indeterminate+.form-icon,.has-error .form-checkbox input:indeterminate+.form-icon{background:#e85600;border-color:#e85600}.form-input:not(:-ms-input-placeholder):invalid{border-color:#e85600}.form-input:not(:placeholder-shown):invalid{border-color:#e85600}.form-input:not(:-ms-input-placeholder):invalid:focus{background:#fffaf7;box-shadow:0 0 0 .1rem rgba(232,86,0,.2)}.form-input:not(:placeholder-shown):invalid:focus{background:#fffaf7;box-shadow:0 0 0 .1rem rgba(232,86,0,.2)}.form-input:not(:-ms-input-placeholder):invalid+.form-input-hint{color:#e85600}.form-input:not(:placeholder-shown):invalid+.form-input-hint{color:#e85600}.form-input.disabled,.form-input:disabled,.form-select.disabled,.form-select:disabled{background-color:#eef0f3;cursor:not-allowed;opacity:.5}.form-input[readonly]{background-color:#f7f8f9}input.disabled+.form-icon,input:disabled+.form-icon{background:#eef0f3;cursor:not-allowed;opacity:.5}.form-switch input.disabled+.form-icon::before,.form-switch input:disabled+.form-icon::before{background:#fff}.form-horizontal{padding:.4rem 0}.form-horizontal .form-group{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.form-inline{display:inline-block}.label{background:#eef0f3;border-radius:.1rem;color:#455060;display:inline-block;line-height:1.25;padding:.1rem .2rem}.label.label-rounded{border-radius:5rem;padding-left:.4rem;padding-right:.4rem}.label.label-primary{background:#5755d9;color:#fff}.label.label-secondary{background:#f1f1fc;color:#5755d9}.label.label-success{background:#32b643;color:#fff}.label.label-warning{background:#ffb700;color:#fff}.label.label-error{background:#e85600;color:#fff}code{background:#fcf2f2;border-radius:.1rem;color:#d73e48;font-size:85%;line-height:1.25;padding:.1rem .2rem}.code{border-radius:.1rem;color:#3b4351;position:relative}.code::before{color:#bcc3ce;content:attr(data-lang);font-size:.7rem;position:absolute;right:.4rem;top:.1rem}.code code{background:#f7f8f9;color:inherit;display:block;line-height:1.5;overflow-x:auto;padding:1rem;width:100%}.img-responsive{display:block;height:auto;max-width:100%}.img-fit-cover{object-fit:cover}.img-fit-contain{object-fit:contain}.video-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.video-responsive::before{content:"";display:block;padding-bottom:56.25%}.video-responsive embed,.video-responsive iframe,.video-responsive object{border:0;bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}video.video-responsive{height:auto;max-width:100%}video.video-responsive::before{content:none}.video-responsive-4-3::before{padding-bottom:75%}.video-responsive-1-1::before{padding-bottom:100%}.figure{margin:0 0 .4rem 0}.figure .figure-caption{color:#66758c;margin-top:.4rem}.container{margin-left:auto;margin-right:auto;padding-left:.4rem;padding-right:.4rem;width:100%}.container.grid-xl{max-width:1296px}.container.grid-lg{max-width:976px}.container.grid-md{max-width:856px}.container.grid-sm{max-width:616px}.container.grid-xs{max-width:496px}.show-lg,.show-md,.show-sm,.show-xl,.show-xs{display:none!important}.cols,.columns{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-.4rem;margin-right:-.4rem}.cols.col-gapless,.columns.col-gapless{margin-left:0;margin-right:0}.cols.col-gapless>.column,.columns.col-gapless>.column{padding-left:0;padding-right:0}.cols.col-oneline,.columns.col-oneline{-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.column,[class~=col-]{-ms-flex:1;flex:1;max-width:100%;padding-left:.4rem;padding-right:.4rem}.column.col-1,.column.col-10,.column.col-11,.column.col-12,.column.col-2,.column.col-3,.column.col-4,.column.col-5,.column.col-6,.column.col-7,.column.col-8,.column.col-9,.column.col-auto,[class~=col-].col-1,[class~=col-].col-10,[class~=col-].col-11,[class~=col-].col-12,[class~=col-].col-2,[class~=col-].col-3,[class~=col-].col-4,[class~=col-].col-5,[class~=col-].col-6,[class~=col-].col-7,[class~=col-].col-8,[class~=col-].col-9,[class~=col-].col-auto{-ms-flex:none;flex:none}.col-12{width:100%}.col-11{width:91.66666667%}.col-10{width:83.33333333%}.col-9{width:75%}.col-8{width:66.66666667%}.col-7{width:58.33333333%}.col-6{width:50%}.col-5{width:41.66666667%}.col-4{width:33.33333333%}.col-3{width:25%}.col-2{width:16.66666667%}.col-1{width:8.33333333%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.col-mx-auto{margin-left:auto;margin-right:auto}.col-ml-auto{margin-left:auto}.col-mr-auto{margin-right:auto}@media (max-width:1280px){.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{-ms-flex:none;flex:none}.col-xl-12{width:100%}.col-xl-11{width:91.66666667%}.col-xl-10{width:83.33333333%}.col-xl-9{width:75%}.col-xl-8{width:66.66666667%}.col-xl-7{width:58.33333333%}.col-xl-6{width:50%}.col-xl-5{width:41.66666667%}.col-xl-4{width:33.33333333%}.col-xl-3{width:25%}.col-xl-2{width:16.66666667%}.col-xl-1{width:8.33333333%}.col-xl-auto{width:auto}.hide-xl{display:none!important}.show-xl{display:block!important}}@media (max-width:960px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto{-ms-flex:none;flex:none}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-auto{width:auto}.hide-lg{display:none!important}.show-lg{display:block!important}}@media (max-width:840px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto{-ms-flex:none;flex:none}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-auto{width:auto}.hide-md{display:none!important}.show-md{display:block!important}}@media (max-width:600px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto{-ms-flex:none;flex:none}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-auto{width:auto}.hide-sm{display:none!important}.show-sm{display:block!important}}@media (max-width:480px){.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-auto{-ms-flex:none;flex:none}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-auto{width:auto}.hide-xs{display:none!important}.show-xs{display:block!important}}.hero{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:4rem;padding-top:4rem}.hero.hero-sm{padding-bottom:2rem;padding-top:2rem}.hero.hero-lg{padding-bottom:8rem;padding-top:8rem}.hero .hero-body{padding:.4rem}.navbar{align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-align:stretch;-ms-flex-pack:justify;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.navbar .navbar-section{align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 0 0;flex:1 0 0;-ms-flex-align:center}.navbar .navbar-section:not(:first-child):last-child{-ms-flex-pack:end;justify-content:flex-end}.navbar .navbar-center{align-items:center;display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-align:center}.navbar .navbar-brand{font-size:.9rem;text-decoration:none}.accordion input:checked~.accordion-header>.icon:first-child,.accordion[open] .accordion-header>.icon:first-child{transform:rotate(90deg)}.accordion input:checked~.accordion-body,.accordion[open] .accordion-body{max-height:50rem}.accordion .accordion-header{display:block;padding:.2rem .4rem}.accordion .accordion-header .icon{transition:transform .25s}.accordion .accordion-body{margin-bottom:.4rem;max-height:0;overflow:hidden;transition:max-height .25s}summary.accordion-header::-webkit-details-marker{display:none}.avatar{background:#5755d9;border-radius:50%;color:rgba(255,255,255,.85);display:inline-block;font-size:.8rem;font-weight:300;height:1.6rem;line-height:1.25;margin:0;position:relative;vertical-align:middle;width:1.6rem}.avatar.avatar-xs{font-size:.4rem;height:.8rem;width:.8rem}.avatar.avatar-sm{font-size:.6rem;height:1.2rem;width:1.2rem}.avatar.avatar-lg{font-size:1.2rem;height:2.4rem;width:2.4rem}.avatar.avatar-xl{font-size:1.6rem;height:3.2rem;width:3.2rem}.avatar img{border-radius:50%;height:100%;position:relative;width:100%;z-index:1}.avatar .avatar-icon,.avatar .avatar-presence{background:#fff;bottom:14.64%;height:50%;padding:.1rem;position:absolute;right:14.64%;transform:translate(50%,50%);width:50%;z-index:2}.avatar .avatar-presence{background:#bcc3ce;border-radius:50%;box-shadow:0 0 0 .1rem #fff;height:.5em;width:.5em}.avatar .avatar-presence.online{background:#32b643}.avatar .avatar-presence.busy{background:#e85600}.avatar .avatar-presence.away{background:#ffb700}.avatar[data-initial]::before{color:currentColor;content:attr(data-initial);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:1}.badge{position:relative;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge]::after{background:#5755d9;background-clip:padding-box;border-radius:.5rem;box-shadow:0 0 0 .1rem #fff;color:#fff;content:attr(data-badge);display:inline-block;transform:translate(-.05rem,-.5rem)}.badge[data-badge]::after{font-size:.7rem;height:.9rem;line-height:1;min-width:.9rem;padding:.1rem .2rem;text-align:center;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge=""]::after{height:6px;min-width:6px;padding:0;width:6px}.badge.btn::after{position:absolute;right:0;top:0;transform:translate(50%,-50%)}.badge.avatar::after{position:absolute;right:14.64%;top:14.64%;transform:translate(50%,-50%);z-index:100}.breadcrumb{list-style:none;margin:.2rem 0;padding:.2rem 0}.breadcrumb .breadcrumb-item{color:#66758c;display:inline-block;margin:0;padding:.2rem 0}.breadcrumb .breadcrumb-item:not(:last-child){margin-right:.2rem}.breadcrumb .breadcrumb-item:not(:last-child) a{color:#66758c}.breadcrumb .breadcrumb-item:not(:first-child)::before{color:#66758c;content:"/";padding-right:.4rem}.bar{background:#eef0f3;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:.8rem;width:100%}.bar.bar-sm{height:.2rem}.bar .bar-item{background:#5755d9;color:#fff;display:block;-ms-flex-negative:0;flex-shrink:0;font-size:.7rem;height:100%;line-height:.8rem;position:relative;text-align:center;width:0}.bar .bar-item:first-child{border-bottom-left-radius:.1rem;border-top-left-radius:.1rem}.bar .bar-item:last-child{border-bottom-right-radius:.1rem;border-top-right-radius:.1rem;-ms-flex-negative:1;flex-shrink:1}.bar-slider{height:.1rem;margin:.4rem 0;position:relative}.bar-slider .bar-item{left:0;padding:0;position:absolute}.bar-slider .bar-item:not(:last-child):first-child{background:#eef0f3;z-index:1}.bar-slider .bar-slider-btn{background:#5755d9;border:0;border-radius:50%;height:.6rem;padding:0;position:absolute;right:0;top:50%;transform:translate(50%,-50%);width:.6rem}.bar-slider .bar-slider-btn:active{box-shadow:0 0 0 .1rem #5755d9}.card{background:#fff;border:.05rem solid #dadee4;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card .card-body,.card .card-footer,.card .card-header{padding:.8rem;padding-bottom:0}.card .card-body:last-child,.card .card-footer:last-child,.card .card-header:last-child{padding-bottom:.8rem}.card .card-body{-ms-flex:1 1 auto;flex:1 1 auto}.card .card-image{padding-top:.8rem}.card .card-image:first-child{padding-top:0}.card .card-image:first-child img{border-top-left-radius:.1rem;border-top-right-radius:.1rem}.card .card-image:last-child img{border-bottom-left-radius:.1rem;border-bottom-right-radius:.1rem}.chip{align-items:center;background:#eef0f3;border-radius:5rem;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;font-size:90%;height:1.2rem;line-height:.8rem;margin:.1rem;max-width:320px;overflow:hidden;padding:.2rem .4rem;text-decoration:none;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap}.chip.active{background:#5755d9;color:#fff}.chip .avatar{margin-left:-.4rem;margin-right:.2rem}.chip .btn-clear{border-radius:50%;transform:scale(.75)}.dropdown{display:inline-block;position:relative}.dropdown .menu{animation:slide-down .15s ease 1;display:none;left:0;max-height:50vh;overflow-y:auto;position:absolute;top:100%}.dropdown.dropdown-right .menu{left:auto;right:0}.dropdown .dropdown-toggle:focus+.menu,.dropdown .menu:hover,.dropdown.active .menu{display:block}.dropdown .btn-group .dropdown-toggle:nth-last-child(2){border-bottom-right-radius:.1rem;border-top-right-radius:.1rem}.empty{background:#f7f8f9;border-radius:.1rem;color:#66758c;padding:3.2rem 1.6rem;text-align:center}.empty .empty-icon{margin-bottom:.8rem}.empty .empty-subtitle,.empty .empty-title{margin:.4rem auto}.empty .empty-action{margin-top:.8rem}.menu{background:#fff;border-radius:.1rem;box-shadow:0 .05rem .2rem rgba(48,55,66,.3);list-style:none;margin:0;min-width:180px;padding:.4rem;transform:translateY(.2rem);z-index:300}.menu.menu-nav{background:0 0;box-shadow:none}.menu .menu-item{margin-top:0;padding:0 .4rem;position:relative;text-decoration:none}.menu .menu-item>a{border-radius:.1rem;color:inherit;display:block;margin:0 -.4rem;padding:.2rem .4rem;text-decoration:none}.menu .menu-item>a:focus,.menu .menu-item>a:hover{background:#f1f1fc;color:#5755d9}.menu .menu-item>a.active,.menu .menu-item>a:active{background:#f1f1fc;color:#5755d9}.menu .menu-item .form-checkbox,.menu .menu-item .form-radio,.menu .menu-item .form-switch{margin:.1rem 0}.menu .menu-item+.menu-item{margin-top:.2rem}.menu .menu-badge{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;height:100%;position:absolute;right:0;top:0}.menu .menu-badge .label{margin-right:.4rem}.modal{align-items:center;bottom:0;display:none;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center;left:0;opacity:0;overflow:hidden;padding:.4rem;position:fixed;right:0;top:0}.modal.active,.modal:target{display:-ms-flexbox;display:flex;opacity:1;z-index:400}.modal.active .modal-overlay,.modal:target .modal-overlay{background:rgba(247,248,249,.75);bottom:0;cursor:default;display:block;left:0;position:absolute;right:0;top:0}.modal.active .modal-container,.modal:target .modal-container{animation:slide-down .2s ease 1;z-index:1}.modal.modal-sm .modal-container{max-width:320px;padding:0 .4rem}.modal.modal-lg .modal-overlay{background:#fff}.modal.modal-lg .modal-container{box-shadow:none;max-width:960px}.modal-container{background:#fff;border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(48,55,66,.3);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;max-height:75vh;max-width:640px;padding:0 .8rem;width:100%}.modal-container.modal-fullheight{max-height:100vh}.modal-container .modal-header{color:#303742;padding:.8rem}.modal-container .modal-body{overflow-y:auto;padding:.8rem;position:relative}.modal-container .modal-footer{padding:.8rem;text-align:right}.nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;list-style:none;margin:.2rem 0}.nav .nav-item a{color:#66758c;padding:.2rem .4rem;text-decoration:none}.nav .nav-item a:focus,.nav .nav-item a:hover{color:#5755d9}.nav .nav-item.active>a{color:#505c6e;font-weight:700}.nav .nav-item.active>a:focus,.nav .nav-item.active>a:hover{color:#5755d9}.nav .nav{margin-bottom:.4rem;margin-left:.8rem}.pagination{display:-ms-flexbox;display:flex;list-style:none;margin:.2rem 0;padding:.2rem 0}.pagination .page-item{margin:.2rem .05rem}.pagination .page-item span{display:inline-block;padding:.2rem .2rem}.pagination .page-item a{border-radius:.1rem;display:inline-block;padding:.2rem .4rem;text-decoration:none}.pagination .page-item a:focus,.pagination .page-item a:hover{color:#5755d9}.pagination .page-item.disabled a{cursor:default;opacity:.5;pointer-events:none}.pagination .page-item.active a{background:#5755d9;color:#fff}.pagination .page-item.page-next,.pagination .page-item.page-prev{-ms-flex:1 0 50%;flex:1 0 50%}.pagination .page-item.page-next{text-align:right}.pagination .page-item .page-item-title{margin:0}.pagination .page-item .page-item-subtitle{margin:0;opacity:.5}.panel{border:.05rem solid #dadee4;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.panel .panel-footer,.panel .panel-header{-ms-flex:0 0 auto;flex:0 0 auto;padding:.8rem}.panel .panel-nav{-ms-flex:0 0 auto;flex:0 0 auto}.panel .panel-body{-ms-flex:1 1 auto;flex:1 1 auto;overflow-y:auto;padding:0 .8rem}.popover{display:inline-block;position:relative}.popover .popover-container{left:50%;opacity:0;padding:.4rem;position:absolute;top:0;transform:translate(-50%,-50%) scale(0);transition:transform .2s;width:320px;z-index:300}.popover :focus+.popover-container,.popover:hover .popover-container{display:block;opacity:1;transform:translate(-50%,-100%) scale(1)}.popover.popover-right .popover-container{left:100%;top:50%}.popover.popover-right :focus+.popover-container,.popover.popover-right:hover .popover-container{transform:translate(0,-50%) scale(1)}.popover.popover-bottom .popover-container{left:50%;top:100%}.popover.popover-bottom :focus+.popover-container,.popover.popover-bottom:hover .popover-container{transform:translate(-50%,0) scale(1)}.popover.popover-left .popover-container{left:0;top:50%}.popover.popover-left :focus+.popover-container,.popover.popover-left:hover .popover-container{transform:translate(-100%,-50%) scale(1)}.popover .card{border:0;box-shadow:0 .2rem .5rem rgba(48,55,66,.3)}.step{display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;list-style:none;margin:.2rem 0;width:100%}.step .step-item{-ms-flex:1 1 0;flex:1 1 0;margin-top:0;min-height:1rem;position:relative;text-align:center}.step .step-item:not(:first-child)::before{background:#5755d9;content:"";height:2px;left:-50%;position:absolute;top:9px;width:100%}.step .step-item a{color:#5755d9;display:inline-block;padding:20px 10px 0;text-decoration:none}.step .step-item a::before{background:#5755d9;border:.1rem solid #fff;border-radius:50%;content:"";display:block;height:.6rem;left:50%;position:absolute;top:.2rem;transform:translateX(-50%);width:.6rem;z-index:1}.step .step-item.active a::before{background:#fff;border:.1rem solid #5755d9}.step .step-item.active~.step-item::before{background:#dadee4}.step .step-item.active~.step-item a{color:#bcc3ce}.step .step-item.active~.step-item a::before{background:#dadee4}.tab{align-items:center;border-bottom:.05rem solid #dadee4;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin:.2rem 0 .15rem 0}.tab .tab-item{margin-top:0}.tab .tab-item a{border-bottom:.1rem solid transparent;color:inherit;display:block;margin:0 .4rem 0 0;padding:.4rem .2rem .3rem .2rem;text-decoration:none}.tab .tab-item a:focus,.tab .tab-item a:hover{color:#5755d9}.tab .tab-item a.active,.tab .tab-item.active a{border-bottom-color:#5755d9;color:#5755d9}.tab .tab-item.tab-action{-ms-flex:1 0 auto;flex:1 0 auto;text-align:right}.tab .tab-item .btn-clear{margin-top:-.2rem}.tab.tab-block .tab-item{-ms-flex:1 0 0;flex:1 0 0;text-align:center}.tab.tab-block .tab-item a{margin:0}.tab.tab-block .tab-item .badge[data-badge]::after{position:absolute;right:.1rem;top:.1rem;transform:translate(0,0)}.tab:not(.tab-block) .badge{padding-right:0}.tile{align-content:space-between;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-align:start;-ms-flex-line-pack:justify}.tile .tile-action,.tile .tile-icon{-ms-flex:0 0 auto;flex:0 0 auto}.tile .tile-content{-ms-flex:1 1 auto;flex:1 1 auto}.tile .tile-content:not(:first-child){padding-left:.4rem}.tile .tile-content:not(:last-child){padding-right:.4rem}.tile .tile-subtitle,.tile .tile-title{line-height:1.2rem}.tile.tile-centered{align-items:center;-ms-flex-align:center}.tile.tile-centered .tile-content{overflow:hidden}.tile.tile-centered .tile-subtitle,.tile.tile-centered .tile-title{margin-bottom:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.toast{background:rgba(48,55,66,.95);border:.05rem solid #303742;border-color:#303742;border-radius:.1rem;color:#fff;display:block;padding:.4rem;width:100%}.toast.toast-primary{background:rgba(87,85,217,.95);border-color:#5755d9}.toast.toast-success{background:rgba(50,182,67,.95);border-color:#32b643}.toast.toast-warning{background:rgba(255,183,0,.95);border-color:#ffb700}.toast.toast-error{background:rgba(232,86,0,.95);border-color:#e85600}.toast a{color:#fff;text-decoration:underline}.toast a.active,.toast a:active,.toast a:focus,.toast a:hover{opacity:.75}.toast .btn-clear{margin:.1rem}.toast p:last-child{margin-bottom:0}.tooltip{position:relative}.tooltip::after{background:rgba(48,55,66,.95);border-radius:.1rem;bottom:100%;color:#fff;content:attr(data-tooltip);display:block;font-size:.7rem;left:50%;max-width:320px;opacity:0;overflow:hidden;padding:.2rem .4rem;pointer-events:none;position:absolute;text-overflow:ellipsis;transform:translate(-50%,.4rem);transition:opacity .2s,transform .2s;white-space:pre;z-index:300}.tooltip:focus::after,.tooltip:hover::after{opacity:1;transform:translate(-50%,-.2rem)}.tooltip.disabled,.tooltip[disabled]{pointer-events:auto}.tooltip.tooltip-right::after{bottom:50%;left:100%;transform:translate(-.2rem,50%)}.tooltip.tooltip-right:focus::after,.tooltip.tooltip-right:hover::after{transform:translate(.2rem,50%)}.tooltip.tooltip-bottom::after{bottom:auto;top:100%;transform:translate(-50%,-.4rem)}.tooltip.tooltip-bottom:focus::after,.tooltip.tooltip-bottom:hover::after{transform:translate(-50%,.2rem)}.tooltip.tooltip-left::after{bottom:50%;left:auto;right:100%;transform:translate(.4rem,50%)}.tooltip.tooltip-left:focus::after,.tooltip.tooltip-left:hover::after{transform:translate(-.2rem,50%)}@keyframes loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes slide-down{0%{opacity:0;transform:translateY(-1.6rem)}100%{opacity:1;transform:translateY(0)}}.text-primary{color:#5755d9!important}a.text-primary:focus,a.text-primary:hover{color:#4240d4}a.text-primary:visited{color:#6c6ade}.text-secondary{color:#e5e5f9!important}a.text-secondary:focus,a.text-secondary:hover{color:#d1d0f4}a.text-secondary:visited{color:#fafafe}.text-gray{color:#bcc3ce!important}a.text-gray:focus,a.text-gray:hover{color:#adb6c4}a.text-gray:visited{color:#cbd0d9}.text-light{color:#fff!important}a.text-light:focus,a.text-light:hover{color:#f2f2f2}a.text-light:visited{color:#fff}.text-dark{color:#3b4351!important}a.text-dark:focus,a.text-dark:hover{color:#303742}a.text-dark:visited{color:#455060}.text-success{color:#32b643!important}a.text-success:focus,a.text-success:hover{color:#2da23c}a.text-success:visited{color:#39c94b}.text-warning{color:#ffb700!important}a.text-warning:focus,a.text-warning:hover{color:#e6a500}a.text-warning:visited{color:#ffbe1a}.text-error{color:#e85600!important}a.text-error:focus,a.text-error:hover{color:#cf4d00}a.text-error:visited{color:#ff6003}.bg-primary{background:#5755d9!important;color:#fff}.bg-secondary{background:#f1f1fc!important}.bg-dark{background:#303742!important;color:#fff}.bg-gray{background:#f7f8f9!important}.bg-success{background:#32b643!important;color:#fff}.bg-warning{background:#ffb700!important;color:#fff}.bg-error{background:#e85600!important;color:#fff}.c-hand{cursor:pointer}.c-move{cursor:move}.c-zoom-in{cursor:zoom-in}.c-zoom-out{cursor:zoom-out}.c-not-allowed{cursor:not-allowed}.c-auto{cursor:auto}.d-block{display:block}.d-inline{display:inline}.d-inline-block{display:inline-block}.d-flex{display:-ms-flexbox;display:flex}.d-inline-flex{display:-ms-inline-flexbox;display:inline-flex}.d-hide,.d-none{display:none!important}.d-visible{visibility:visible}.d-invisible{visibility:hidden}.text-hide{background:0 0;border:0;color:transparent;font-size:0;line-height:0;text-shadow:none}.text-assistive{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.divider,.divider-vert{display:block;position:relative}.divider-vert[data-content]::after,.divider[data-content]::after{background:#fff;color:#bcc3ce;content:attr(data-content);display:inline-block;font-size:.7rem;padding:0 .4rem;transform:translateY(-.65rem)}.divider{border-top:.05rem solid #f1f3f5;height:.05rem;margin:.4rem 0}.divider[data-content]{margin:.8rem 0}.divider-vert{display:block;padding:.8rem}.divider-vert::before{border-left:.05rem solid #dadee4;bottom:.4rem;content:"";display:block;left:50%;position:absolute;top:.4rem;transform:translateX(-50%)}.divider-vert[data-content]::after{left:50%;padding:.2rem 0;position:absolute;top:50%;transform:translate(-50%,-50%)}.loading{color:transparent!important;min-height:.8rem;pointer-events:none;position:relative}.loading::after{animation:loading .5s infinite linear;background:0 0;border:.1rem solid #5755d9;border-radius:50%;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:.8rem;left:50%;margin-left:-.4rem;margin-top:-.4rem;opacity:1;padding:0;position:absolute;top:50%;width:.8rem;z-index:1}.loading.loading-lg{min-height:2rem}.loading.loading-lg::after{height:1.6rem;margin-left:-.8rem;margin-top:-.8rem;width:1.6rem}.clearfix::after{clear:both;content:"";display:table}.float-left{float:left!important}.float-right{float:right!important}.p-relative{position:relative!important}.p-absolute{position:absolute!important}.p-fixed{position:fixed!important}.p-sticky{position:-webkit-sticky!important;position:sticky!important}.p-centered{display:block;float:none;margin-left:auto;margin-right:auto}.flex-centered{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center}.m-0{margin:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mr-0{margin-right:0!important}.mt-0{margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.m-1{margin:.2rem!important}.mb-1{margin-bottom:.2rem!important}.ml-1{margin-left:.2rem!important}.mr-1{margin-right:.2rem!important}.mt-1{margin-top:.2rem!important}.mx-1{margin-left:.2rem!important;margin-right:.2rem!important}.my-1{margin-bottom:.2rem!important;margin-top:.2rem!important}.m-2{margin:.4rem!important}.mb-2{margin-bottom:.4rem!important}.ml-2{margin-left:.4rem!important}.mr-2{margin-right:.4rem!important}.mt-2{margin-top:.4rem!important}.mx-2{margin-left:.4rem!important;margin-right:.4rem!important}.my-2{margin-bottom:.4rem!important;margin-top:.4rem!important}.p-0{padding:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.pr-0{padding-right:0!important}.pt-0{padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.p-1{padding:.2rem!important}.pb-1{padding-bottom:.2rem!important}.pl-1{padding-left:.2rem!important}.pr-1{padding-right:.2rem!important}.pt-1{padding-top:.2rem!important}.px-1{padding-left:.2rem!important;padding-right:.2rem!important}.py-1{padding-bottom:.2rem!important;padding-top:.2rem!important}.p-2{padding:.4rem!important}.pb-2{padding-bottom:.4rem!important}.pl-2{padding-left:.4rem!important}.pr-2{padding-right:.4rem!important}.pt-2{padding-top:.4rem!important}.px-2{padding-left:.4rem!important;padding-right:.4rem!important}.py-2{padding-bottom:.4rem!important;padding-top:.4rem!important}.s-rounded{border-radius:.1rem}.s-circle{border-radius:50%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-normal{font-weight:400}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-large{font-size:1.2em}.text-small{font-size:.9em}.text-tiny{font-size:.8em}.text-muted{opacity:.8}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-clip{overflow:hidden;text-overflow:clip;white-space:nowrap}.text-break{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word} \ No newline at end of file diff --git a/templates/assets/images/Ark-A.png b/templates/assets/images/Ark-A.png new file mode 100644 index 0000000..4550f74 Binary files /dev/null and b/templates/assets/images/Ark-A.png differ diff --git a/templates/assets/images/Ark-full.png b/templates/assets/images/Ark-full.png new file mode 100644 index 0000000..0d4d42a Binary files /dev/null and b/templates/assets/images/Ark-full.png differ diff --git a/templates/assets/images/Ark-slim.png b/templates/assets/images/Ark-slim.png new file mode 100644 index 0000000..c1b6deb Binary files /dev/null and b/templates/assets/images/Ark-slim.png differ diff --git a/templates/assets/js/languages/arkscript.js b/templates/assets/js/languages/arkscript.js new file mode 100644 index 0000000..fd4b8ea --- /dev/null +++ b/templates/assets/js/languages/arkscript.js @@ -0,0 +1,46 @@ +Rainbow.extend('arkscript', [ + { + /* making peace with HTML */ + name: 'plain', + pattern: />|</g + }, + { + name: 'comment', + pattern: /#.*$/gm + }, + { + name: 'constant.language', + pattern: /true|false|nil/g + }, + { + name: 'constant.symbol', + pattern: /'[^()\s#']+/g + }, + { + name: 'constant.number', + pattern: /\b\d+(?:\.\d*)?\b/g + }, + { + name: 'string', + pattern: /".+?"/g + }, + { + matches: { + 1: 'storage.function', + 2: 'variable' + }, + pattern: /\(\s*(let|mut|set)\s+\(?(\S+)/g + }, + { + matches: { + 1: 'keyword' + }, + pattern: /\(\s*(begin|if|fun|quote|set|while|let|mut|del|import)(?=[\]()\s#])/g + }, + { + matches: { + 1: 'entity.function' + }, + pattern: /\(\s*(=|<|>|<=|>=|!=|@|\^|\+|\-|\*|\/|tailOf|headOf|nil\?|list|len|append|concat|print|puts|input|time|empty\?|firstOf|assert|toNumber|toString|and|or|mod|type|hasField|not)(?=[\]()\s#])/g + } +]); \ No newline at end of file diff --git a/templates/assets/js/languages/cpp.js b/templates/assets/js/languages/cpp.js new file mode 100644 index 0000000..5060318 --- /dev/null +++ b/templates/assets/js/languages/cpp.js @@ -0,0 +1,26 @@ +Rainbow.extend("cpp", [ + { + name: "meta.preprocessor", + matches: { + 1: [ + { matches: { 1: "keyword.define", 2: "entity.name" }, pattern: /(\w+)\s(\w+)\b/g }, + { name: "keyword.define", pattern: /endif/g }, + { name: "constant.numeric", pattern: /\d+/g }, + { matches: { 1: "keyword.include", 2: "string" }, pattern: /(include)\s(.*?)$/g }, + ], + }, + pattern: /\#([\S\s]*?)$/gm, + }, + { name: "keyword", pattern: /\b(while|break|continue|switch|case|default|do|goto|typedef|template|decltype|delete|if|else|for|nullptr|operator|namespace|new|this|try|except|typename|sizeof|throw|typeid|using)\b/g }, + { matches: { 1: "storage.type", 3: "storage.type", 4: "entity.name.function" }, pattern: /\b((un)?signed|const)? ?(void|char|short|int|long|float|double)\*? +((\w+)(?= ?\())?/g }, + { matches: { 2: "entity.name.function" }, pattern: /(\w|\*) +((\w+)(?= ?\())/g }, + { name: "storage.modifier", pattern: /\b(static|extern|auto|register|volatile|inline|constexpr|explicit|export|mutable|private|protected|public|virtual|final|override)\b/g }, + { name: "support.type", pattern: /\b(struct|union|enum|class)\b/g }, + { name: "support.namespace", pattern: /([A-Za-z_]+::)+[A-Za-z_]+/g, }, + { + matches: { + 1: "function.method.call", + }, + pattern: /([A-Za-z_]+\.)[A-Za-z_]+(?=\))/g, + }, +], 'generic'); \ No newline at end of file diff --git a/templates/assets/js/languages/shell.js b/templates/assets/js/languages/shell.js new file mode 100644 index 0000000..56456ab --- /dev/null +++ b/templates/assets/js/languages/shell.js @@ -0,0 +1,9 @@ +Rainbow.extend("shell", [ + { name: "shell", matches: { 1: { language: "shell" } }, pattern: /\$\(([\s\S]*?)\)/gm }, + { matches: { 2: "string" }, pattern: /(\(|\s|\[|\=)(('|")[\s\S]*?(\3))/gm }, + { name: "keyword.operator", pattern: /<|>|&/g }, + { name: "comment", pattern: /\#[\s\S]*?$/gm }, + { name: "storage.function", pattern: /(.+?)(?=\(\)\s{0,}\{)/g }, + { name: "support.command", pattern: /\b(echo|rm|ls|(mk|rm)dir|cd|find|cp|exit|pwd|exec|trap|source|shift|unset)/g }, + { matches: { 1: "keyword" }, pattern: /\b(break|case|continue|do|done|elif|else|esac|eval|export|fi|for|function|if|in|local|return|set|then|unset|until|while)(?=\b)/g }, +]); \ No newline at end of file diff --git a/templates/assets/js/rainbow.min.js b/templates/assets/js/rainbow.min.js new file mode 100644 index 0000000..42a53de --- /dev/null +++ b/templates/assets/js/rainbow.min.js @@ -0,0 +1,2 @@ +/* Rainbow v2.1.4 rainbowco.de | included languages: c, csharp, css, generic, html, java, javascript, json, php, python, ruby */!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Rainbow=t()}(this,function(){"use strict";function e(){return"undefined"!=typeof module&&"object"==typeof module.exports}function t(e){var t=e.getAttribute("data-language")||e.parentNode.getAttribute("data-language");if(!t){var n=/\blang(?:uage)?-(\w+)/,r=e.className.match(n)||e.parentNode.className.match(n);r&&(t=r[1])}return t?t.toLowerCase():null}function n(e,t,n,r){return(n!==e||r!==t)&&(n<=e&&r>=t)}function r(e){return e.replace(//g,">").replace(/&(?![\w\#]+;)/g,"&")}function a(e,t){for(var n=0,r=1;r=e&&ne&&r'+n+""}function c(e){for(var t=i(v),n=0,r=t;n section, .inner-section > section + margin-bottom: 3.5% + +table.table.dark + background-color: $menus-bg-color +.table.table-striped tbody tr:nth-of-type(odd) + background-color: darken($menus-bg-color, 3%) +.table.table-hover tbody tr:hover + background-color: darken($menus-bg-color, 6%) + +// rainbowJS +code.rainbowjs + display: block + overflow-x: auto + +pre.rainbow-show + position: initial + +// Responsive +@media screen and (max-width: $break-width) + // remove content side columns + .col-2 + display: none + .col-8 + width: 100vw + + #content + margin-top: $header-height * 1.5 + padding: 5vh 10px + h2 + text-align: center + section .inner-section + padding: 0 + border: none \ No newline at end of file diff --git a/templates/assets/sass/general.sass b/templates/assets/sass/general.sass new file mode 100644 index 0000000..93ad0f5 --- /dev/null +++ b/templates/assets/sass/general.sass @@ -0,0 +1,77 @@ +@import "_vars.sass" + +body + background-color: $menus-bg-color + color: $menus-color + margin: 0 + padding: 0 + min-height: 100vh + + +// Images +img.fit + width: 100% +img.three-quarters + width: 75% + +// Code and codeblocks +code:not(.rainbowjs), div.codeblock + background-color: $menus-bg-color + color: $menus-color + word-break: break-all +code:not(.rainbowjs).error, div.codeblock.error + color: #d73e48 +code.rainbowjs + color: $body-color + background-color: inherit +div.codeblock, pre + padding: 0 10px !important + font-family: "SF Mono","Segoe UI Mono","Roboto Mono",Menlo,Courier,monospace + font-size: 110% !important + line-height: 0.5 + border-radius: .1rem + +// Rainbowjs fucking up with the positions +pre.preloader, div.preloader + position: initial + + +// Spectre.css overrides to fit in with the theme +.divider + border-top: none + border-left: 1px solid lighten($body-bg-color, 8%) + height: $header-height +.divider.half + height: $header-height / 2 + +pre code.rainbowjs span.label + background: initial + +.btn:not(.btn-link) + border-color: $btn-primary-bg-color !important + &:hover + border-color: darken($btn-primary-bg-color, 2%) !important + +.btn.btn-link, .btn-link, .btn.btn-link:focus + color: $btn-link-color + &:hover + color: lighten($btn-link-color, 10%) + +.btn:hover + border-radius: 5px + transition: border-radius 0.1s ease-in-out + +.btn.btn-primary + color: $body-color + background: $btn-primary-bg-color + &:hover + background-color: darken($btn-primary-bg-color, 5%) + +// Adding another animation from a Spectre.css keyframes +@keyframes slide-left + 0% + opacity: 0 + transform: translateX(1.6rem) + 100% + opacity: 1 + transform: translateX(0) \ No newline at end of file diff --git a/templates/assets/sass/page-structure.sass b/templates/assets/sass/page-structure.sass new file mode 100644 index 0000000..ab1e95a --- /dev/null +++ b/templates/assets/sass/page-structure.sass @@ -0,0 +1,192 @@ +@import "_vars.sass" + +// PAGE STRUCTURE SASS FILE +// contains header, footer and sidebar styles + + +// NAVBAR/HEADER +$banner-height: 60vh +$header-sections-font-size: 0.8rem + +header.navbar, #banner + padding: 0 4vw + width: 100vw + height: $header-height + background-color: $menus-bg-color + + * + margin: 0 10px + a + font-size: $header-sections-font-size + + img + height: $header-height + + .navbar-brand + font-size: $header-sections-font-size * 1.4 + color: darken($btn-link-color, 5%) + text-transform: uppercase + font-weight: bold + line-height: $header-height + + .dropdown + margin: 0 + a + border: none + +header.navbar:not(.has-banner) + height: $header-height * 1.5 + img, .navbar-center, .navbar-center a, div.dropdown-link + height: $header-height * 1.5 + + +// BANNER +#banner + height: $banner-height + margin-bottom: 25px + + .banner-center + display: flex + flex-flow: column + text-align: center + + img + height: $banner-height / 5 + + +// SIDEBAR +.off-canvas .off-canvas-toggle + position: fixed + top: $header-height * 2 + left: 15px + +#sidebar + background: $menus-bg-color + max-width: 15vw + + &~.off-canvas-overlay + cursor: initial + + .nav .nav-item a + color: darken($body-color, 3%) + &:hover + color: $btn-link-color + +// FOOTER +footer#page-footer + bottom: 0 + width: 100vw + min-height: $footer-height + background-color: $menus-bg-color + padding: 2vh + + p + margin: 0 + padding: 0 + + +// DROPDOWN +.btn.btn-link.dropdown-toggle:focus + box-shadow: none +.menu + background-color: $menus-bg-color +.dropdown .dropdown-toggle:focus+.menu, .dropdown .menu:hover, .dropdown.active .menu + display: block !important + + +// Hiding the logo on the index page by default (will show only on click on the menu toggler!) +.hide + display: none + +// caret icon modifications +.dropdown-toggle .icon.icon-caret + margin-right: 0 + + + +// RESPONSIVE +@media screen and (max-width: $break-width) + .dropdown-toggle .icon.icon-caret + display: none + + header.navbar + min-height: 55px + &.has-banner + #menu-show + height: $header-height + i + height: $header-height * 1.5 + padding: 0 + position: fixed + .dropdown + display: flex !important + align-items: center + flex-direction: column + .menu, .menu:hover + animation: none + display: flex !important + align-items: inherit + flex-direction: inherit + position: relative + margin-bottom: 20px + .dropdown-toggle:focus + .menu + display: flex !important + #menu-show + min-height: 55px + i + height: $header-height * 1.5 + padding-top: 0 + padding-bottom: 0 + border: 0 + height: $header-height * 1.5 + position: fixed + top: 0 + margin-left: 0 + z-index: 500 + .logo + align-items: initial + position: fixed + right: 0 + img + min-height: 50px + .divider + width: 190px + height: 1px + border-left: none + border-top: 1px solid lighten($body-bg-color, 8%) + + // No banner + header.navbar:not(.has-banner):focus-within + .navbar-section.show-on-focus + animation: slide-down ease 0.15s 1 + padding-top: $header-height + background-color: $menus-bg-color + left: 0 + margin: 0 + width: 100vw + display: flex !important + align-items: center + flex-direction: column + .menu + position: initial + + // Banner + header.navbar.has-banner:focus-within + .logo, .logo * + animation: slide-left ease 0.15s 1 + display: block !important + .navbar-center + animation: slide-down ease 0.15s 1 + display: flex !important + background-color: $menus-bg-color + position: fixed + top: $header-height + left: 0 + flex-direction: column + margin: 0 + width: 100vw + + // sidebar button behaviour + .off-canvas .off-canvas-toggle + left: -6px + border-bottom-right-radius: 10px \ No newline at end of file diff --git a/templates/banner.html b/templates/banner.html new file mode 100644 index 0000000..cc92044 --- /dev/null +++ b/templates/banner.html @@ -0,0 +1,16 @@ + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..104c6f5 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,67 @@ + + + + + + {page_title} + + + + + + + + + + + + + + + {banner} + + +
+ {table_of_content} + +
+ +
+ + +
+ {sections} +
+ + + +
+
+
+ +
+

+ Copyright © 2020-2021 Alexandre Plateau & Fabien Zoccola.
All rights reserved.
+ {footer} +

+
+ + + + + + + \ No newline at end of file diff --git a/templates/table_of_content.html b/templates/table_of_content.html new file mode 100644 index 0000000..ead5608 --- /dev/null +++ b/templates/table_of_content.html @@ -0,0 +1,21 @@ +
+ + + + + + + + + + +
\ No newline at end of file diff --git a/themes/dark/404.html b/themes/dark/404.html deleted file mode 100644 index 0d58f06..0000000 --- a/themes/dark/404.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -
-
-

404

-

Page not found

-

Home

-
-
- -{% endblock %} diff --git a/themes/dark/base.html b/themes/dark/base.html deleted file mode 100644 index 71b4a45..0000000 --- a/themes/dark/base.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - {% if config.site_description %}{% endif %} - {% if config.site_author %}{% endif %} - {% if page.canonical_url %}{% endif %} - - - {% block htmltitle %} - {% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }} - {% endblock %} - - - - - - - - - - - {% if config.theme.highlightjs is defined and config.theme.highlightjs is sameas false %} - - {% else %} - {% if config.theme.colorscheme %} - - {% else %} - - {% endif %} - {% endif %} - - {%- for path in config['extra_css'] %} - - {%- endfor %} - - - - - {% if config.google_analytics %} - - {% endif %} - - {% block extrahead %} {% endblock %} - - - - - {% include "nav.html" %} - -
- {% block content %} - {% if page.meta.disable_toc %} -
{% include "content.html" %}
- {% else %} -
{% include "toc.html" %}
-
{% include "content.html" %}
- {% endif %} - {% endblock %} -
- - {% if not config.theme.disable_footer %} -
- {% block footer %} - {% if not config.theme.disable_footer_except_revision %} -
-

{% if config.copyright %} - {{ config.copyright }}
- {% endif %} - Documentation built with ArkDoc. -

- {% endif %} - - {% if page and page.meta.revision_date %} - {% if config.theme.disable_footer_except_revision %}
{% else %}
{% endif %} - Revised on: {{ page.meta.revision_date }} - {% endif %} - {% endblock %} -
- {% endif %} - - {%- block scripts %} - - - - {% if config.theme.highlightjs is defined and config.theme.highlightjs is sameas false %} - - {% else %} - - {% if config.theme.hljs_languages %} - {%- for lang in config.theme.hljs_languages %} - - {%- endfor %} - {% endif %} - - {% endif %} - - - {% if config.shortcuts %} - - {% endif %} - - {%- for path in config['extra_javascript'] %} - - {%- endfor %} - {%- endblock %} - - {% if 'search' in config['plugins'] %}{%- include "search-modal.html" %}{% endif %} - {%- include "keyboard-modal.html" %} - - - -{% if page and page.is_homepage %} - -{% endif %} diff --git a/themes/dark/content.html b/themes/dark/content.html deleted file mode 100644 index 8b51ac6..0000000 --- a/themes/dark/content.html +++ /dev/null @@ -1,9 +0,0 @@ -{% if page.meta.source %} - -{% endif %} - -{{ page.content }} diff --git a/themes/dark/css/base.css b/themes/dark/css/base.css deleted file mode 100644 index 2d68482..0000000 --- a/themes/dark/css/base.css +++ /dev/null @@ -1,289 +0,0 @@ -html { - scroll-padding-top: 70px; -} - -body { - padding-top: 70px; -} - -p > img { - max-width: 100%; - height: auto; -} - -ul.nav li.first-level { - font-weight: bold; -} - -ul.nav li.third-level { - padding-left: 12px; -} - -div.col-md-3 { - padding-left: 0; -} - -div.col-md-9 { - padding-bottom: 100px; -} - -div.source-links { - float: right; -} - -/* - * Side navigation - * - * Scrollspy and affixed enhanced navigation to highlight sections and secondary - * sections of docs content. - */ - -/* By default it's not affixed in mobile views, so undo that */ -.bs-sidebar.affix { - position: static; -} - -.bs-sidebar.well { - padding: 0; -} - -/* First level of nav */ -.bs-sidenav { - margin-top: 30px; - margin-bottom: 30px; - padding-top: 10px; - padding-bottom: 10px; - border-radius: 5px; -} - -/* All levels of nav */ -.bs-sidebar .nav > li > a { - display: block; - padding: 5px 20px; - z-index: 1; -} -.bs-sidebar .nav > li > a:hover, -.bs-sidebar .nav > li > a:focus { - text-decoration: none; - border-right: 1px solid; -} -.bs-sidebar .nav > .active > a, -.bs-sidebar .nav > .active:hover > a, -.bs-sidebar .nav > .active:focus > a { - font-weight: bold; - background-color: transparent; - border-right: 1px solid; -} - -/* Nav: second level (shown on .active) */ -.bs-sidebar .nav .nav { - display: none; /* Hide by default, but at >768px, show it */ - margin-bottom: 8px; -} -.bs-sidebar .nav .nav > li > a { - padding-top: 3px; - padding-bottom: 3px; - padding-left: 30px; - font-size: 90%; -} - -/* Show and affix the side nav when space allows it */ -@media (min-width: 992px) { - .bs-sidebar .nav > .active > ul { - display: block; - } - /* Widen the fixed sidebar */ - .bs-sidebar.affix, - .bs-sidebar.affix-bottom { - width: 213px; - } - .bs-sidebar.affix { - position: fixed; /* Undo the static from mobile first approach */ - top: 80px; - max-height: calc(100% - 180px); - overflow-y: auto; - } - .bs-sidebar.affix-bottom { - position: absolute; /* Undo the static from mobile first approach */ - } - .bs-sidebar.affix-bottom .bs-sidenav, - .bs-sidebar.affix .bs-sidenav { - margin-top: 0; - margin-bottom: 0; - } -} -@media (min-width: 1200px) { - /* Widen the fixed sidebar again */ - .bs-sidebar.affix-bottom, - .bs-sidebar.affix { - width: 263px; - } -} - - -/* Added to support >2 level nav in drop down */ - -.dropdown-submenu { - position: relative; -} - -.dropdown-submenu>.dropdown-menu { - top: 0; - left: 100%; - margin-top: 0px; - margin-left: 0px; -} - -.dropdown-submenu:hover>.dropdown-menu { - display: block; -} - -.dropdown-submenu>a:after { - display: block; - content: " "; - float: right; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; - border-width: 5px 0 5px 5px; - border-left-color: #ccc; - margin-top: 5px; - margin-right: -10px; -} - -.dropdown-submenu:hover>a:after { - border-left-color: #fff; -} - -.dropdown-submenu.pull-left { - float: none; -} - -.dropdown-submenu.pull-left>.dropdown-menu { - left: -100%; - margin-left: 00px; -} -/* Start Bootstrap Callouts CSS Source by Chris Pratt (https://codepen.io/chrisdpratt/pen/IAymB) MIT License*/ -.bs-callout { - padding: 20px; - margin: 20px 0; - border: 1px solid #eee; - border-left-width: 5px; - border-radius: 3px; - background-color: #FCFDFF; -} -.bs-callout h4 { - font-style: normal; - font-weight: 400; - margin-top: 0; - margin-bottom: 5px; -} -.bs-callout p:last-child { - margin-bottom: 0; -} -.bs-callout code { - border-radius: 3px; -} -.bs-callout+.bs-callout { - margin-top: -5px; -} -.bs-callout-default { - border-left-color: #FA023C; /*modified from upstream default by Christopher Simpkins*/ -} -.bs-callout-default h4 { - color: #FA023C; /*modified from upstream default by Christopher Simpkins*/ -} -.bs-callout-primary { - border-left-color: #428bca; -} -.bs-callout-primary h4 { - color: #428bca; -} -.bs-callout-success { - border-left-color: #5cb85c; -} -.bs-callout-success h4 { - color: #5cb85c; -} -.bs-callout-danger { - border-left-color: #d9534f; -} -.bs-callout-danger h4 { - color: #d9534f; -} -.bs-callout-warning { - border-left-color: #f0ad4e; -} -.bs-callout-warning h4 { - color: #f0ad4e; -} -.bs-callout-info { - border-left-color: #5bc0de; -} -.bs-callout-info h4 { - color: #5bc0de; -} -/* End Bootstrap Callouts CSS Source by Chris Pratt */ - -/* Headerlinks */ -.headerlink { - display: none; - padding-left: .5em; -} - -h1:hover .headerlink, h2:hover .headerlink, h3:hover .headerlink, h4:hover .headerlink, h5:hover .headerlink, h6:hover .headerlink { - display: inline-block; -} - -/* Admonitions */ -.admonition { - padding: 20px; - margin: 20px 0; - border: 1px solid #eee; - border-left-width: 5px; - border-radius: 3px; - background-color: #FCFDFF; -} - -.admonition p:last-child { - margin-bottom: 0; -} -.admonition code { - border-radius: 3px; -} -.admonition+.admonition { - margin-top: -5px; -} - -.admonition.note { /* csslint allow: adjoining-classes */ - border-left-color: #428bca; -} - -.admonition.warning { /* csslint allow: adjoining-classes */ - border-left-color: #f0ad4e; -} - -.admonition.danger { /* csslint allow: adjoining-classes */ - border-left-color: #d9534f; -} - -.admonition-title { - font-size: 19px; - font-style: normal; - font-weight: 400; - margin-top: 0; - margin-bottom: 5px; -} - -.admonition.note > .admonition-title { - color: #428bca; -} - -.admonition.warning > .admonition-title { - color: #f0ad4e; -} - -.admonition.danger > .admonition-title { - color: #d9534f; -} diff --git a/themes/dark/css/base.min.css b/themes/dark/css/base.min.css deleted file mode 100644 index 10fe295..0000000 --- a/themes/dark/css/base.min.css +++ /dev/null @@ -1,292 +0,0 @@ -html -{ - scroll-padding-top:70px -} -body -{ - padding-top:70px -} -p>img -{ - max-width:100%; - height:auto -} -ul.nav li.first-level -{ - font-weight:bold -} -ul.nav li.third-level -{ - padding-left:12px -} -div.col-md-3 -{ - padding-left:0 -} -div.col-md-9 -{ - padding-bottom:100px -} -div.source-links -{ - float:right -} -.bs-sidebar.affix -{ - position:static -} -.bs-sidebar.well -{ - padding:0 -} -.bs-sidenav -{ - margin-top:30px; - margin-bottom:30px; - padding-top:10px; - padding-bottom:10px; - border-radius:5px -} -.bs-sidebar .nav>li>a -{ - display:block; - padding:5px 20px; - z-index:1 -} -.bs-sidebar .nav>li>a:hover,.bs-sidebar .nav>li>a:focus -{ - text-decoration:none; - border-right:0px solid -} -.bs-sidebar .nav>.active>a,.bs-sidebar .nav>.active:hover>a,.bs-sidebar .nav>.active:focus>a -{ - font-weight:bold; - background-color:transparent; - border-right:1px solid -} -.bs-sidebar .nav .nav -{ - display:none; - margin-bottom:8px -} -.bs-sidebar .nav .nav>li>a -{ - padding-top:3px; - padding-bottom:3px; - padding-left:30px; - font-size:90% -} -@media(min-width:992px) -{ - .bs-sidebar .nav>.active>ul - { - display:block - } - .bs-sidebar.affix,.bs-sidebar.affix-bottom - { - width:213px - } - .bs-sidebar.affix - { - position:fixed; - top:80px; - max-height:calc(100% - 180px); - overflow-y:auto - } - .bs-sidebar.affix-bottom - { - position:absolute - } - .bs-sidebar.affix-bottom .bs-sidenav,.bs-sidebar.affix .bs-sidenav - { - margin-top:0; - margin-bottom:0 - } -} -@media(min-width:1200px) -{ - .bs-sidebar.affix-bottom,.bs-sidebar.affix - { - width:263px - } -} -.dropdown-submenu -{ - position:relative -} -.dropdown-submenu>.dropdown-menu -{ - top:0; - left:100%; - margin-top:0; - margin-left:0 -} -.dropdown-submenu:hover>.dropdown-menu -{ - display:block -} -.dropdown-submenu>a:after -{ - display:block; - content:" "; - float:right; - width:0; - height:0; - border-color:transparent; - border-style:solid; - border-width:5px 0 5px 5px; - border-left-color:#ccc; - margin-top:5px; - margin-right:-10px -} -.dropdown-submenu:hover>a:after -{ - border-left-color:#fff -} -.dropdown-submenu.pull-left -{ - float:none -} -.dropdown-submenu.pull-left>.dropdown-menu -{ - left:-100%; - margin-left:00px -} -.bs-callout -{ - padding:20px; - margin:20px 0; - border:1px solid #eee; - border-left-width:5px; - border-radius:3px; - background-color:#fcfdff -} -.bs-callout h4 -{ - font-style:normal; - font-weight:400; - margin-top:0; - margin-bottom:5px -} -.bs-callout p:last-child -{ - margin-bottom:0 -} -.bs-callout code -{ - border-radius:3px -} -.bs-callout+.bs-callout -{ - margin-top:-5px -} -.bs-callout-default -{ - border-left-color:#fa023c -} -.bs-callout-default h4 -{ - color:#fa023c -} -.bs-callout-primary -{ - border-left-color:#428bca -} -.bs-callout-primary h4 -{ - color:#428bca -} -.bs-callout-success -{ - border-left-color:#5cb85c -} -.bs-callout-success h4 -{ - color:#5cb85c -} -.bs-callout-danger -{ - border-left-color:#d9534f -} -.bs-callout-danger h4 -{ - color:#d9534f -} -.bs-callout-warning -{ - border-left-color:#f0ad4e -} -.bs-callout-warning h4 -{ - color:#f0ad4e -} -.bs-callout-info -{ - border-left-color:#5bc0de -} -.bs-callout-info h4 -{ - color:#5bc0de -} -.headerlink -{ - display:none; - padding-left:.5em -} -h1:hover .headerlink,h2:hover .headerlink,h3:hover .headerlink,h4:hover .headerlink,h5:hover .headerlink,h6:hover .headerlink -{ - display:inline-block -} -.admonition -{ - padding:20px; - margin:20px 0; - border:1px solid #eee; - border-left-width:5px; - border-radius:3px; - background-color:#fcfdff -} -.admonition p:last-child -{ - margin-bottom:0 -} -.admonition code -{ - border-radius:3px -} -.admonition+.admonition -{ - margin-top:-5px -} -.admonition.note -{ - border-left-color:#428bca -} -.admonition.warning -{ - border-left-color:#f0ad4e -} -.admonition.danger -{ - border-left-color:#d9534f -} -.admonition-title -{ - font-size:19px; - font-style:normal; - font-weight:400; - margin-top:0; - margin-bottom:5px -} -.admonition.note>.admonition-title -{ - color:#428bca -} -.admonition.warning>.admonition-title -{ - color:#f0ad4e -} -.admonition.danger>.admonition-title -{ - color:#d9534f -} diff --git a/themes/dark/css/bootstrap-custom.css b/themes/dark/css/bootstrap-custom.css deleted file mode 100644 index 631252d..0000000 --- a/themes/dark/css/bootstrap-custom.css +++ /dev/null @@ -1,5309 +0,0 @@ -/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ -article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { - display: block; -} -audio, canvas, video { - display: inline-block; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], template { - display: none; -} -html { - font-family: sans-serif; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%} -body { - margin: 0; -} -a { - background: transparent; -} -a:focus { - outline: thin dotted; -} -a:active, a:hover { - outline: 0; -} -h1 { - margin: .67em 0; - font-size: 2em; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, strong { - font-weight: bold; -} -dfn { - font-style: italic; -} -hr { - height: 0; - -moz-box-sizing: content-box; - box-sizing: content-box; -} -mark { - color: #000; - background: #ff0; -} -code, kbd, pre, samp { - font-family: Hack, monospace, serif; - font-size: 1em; -} -pre { - white-space: pre-wrap; -} -q { - quotes: "\201C" "\201D" "\2018" "\2019"} -small { - font-size: 80%} -sub, sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} -img { - border: 0; -} -svg:not(:root) { - overflow: hidden; -} -figure { - margin: 0; -} -fieldset { - padding: .35em .625em .75em; - margin: 0 2px; - border: 1px solid #c0c0c0; -} -legend { - padding: 0; - border: 0; -} -button, input, select, textarea { - margin: 0; - font-family: inherit; - font-size: 100%} -button, input { - line-height: normal; -} -button, select { - text-transform: none; -} -button, html input[type="button"], input[type="reset"], input[type="submit"] { - cursor: pointer; - -webkit-appearance: button; -} -button[disabled], html input[disabled] { - cursor: default; -} -input[type="checkbox"], input[type="radio"] { - padding: 0; - box-sizing: border-box; -} -input[type="search"] { - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; - -webkit-appearance: textfield; -} -input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -button::-moz-focus-inner, input::-moz-focus-inner { - padding: 0; - border: 0; -} -textarea { - overflow: auto; - vertical-align: top; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -@media print { - * { - color: #000!important; - text-shadow: none!important; - background: transparent!important; - box-shadow: none!important; -} -a, a:visited { - text-decoration: underline; -} -a[href]:after { - content: " (" attr(href) ")"} -abbr[title]:after { - content: " (" attr(title) ")"} -a[href^="javascript:"]:after, a[href^="#"]:after { - content: ""} -pre, blockquote { - border: 1px solid #999; - page-break-inside: avoid; -} -thead { - display: table-header-group; -} -tr, img { - page-break-inside: avoid; -} -img { - max-width: 100%!important; -} -@page { - margin: 2cm .5cm; -} -p, h2, h3 { - orphans: 3; - widows: 3; -} -h2, h3 { - page-break-after: avoid; -} -select { - background: #fff!important; -} -.navbar { - display: none; -} -.table td, .table th { - background-color: #fff!important; -} -.btn>.caret, .dropup>.btn>.caret { - border-top-color: #000!important; -} -.label { - border: 1px solid #000; -} -.table { - border-collapse: collapse!important; -} -.table-bordered th, .table-bordered td { - border: 1px solid #ddd!important; -} -}*, *:before, *:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 62.5%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: Merriweather, Georgia, serif; - font-size: 14px; - line-height: 1.428571429; - color: #222; - background-color: #fff; -} -input, button, select, textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #008cba; - text-decoration: none; -} -a:hover, a:focus { - color: #00526e; - text-decoration: underline; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -img { - vertical-align: middle; -} -.img-responsive { - display: block; - height: auto; - max-width: 100%} -.img-rounded { - border-radius: 0; -} -.img-thumbnail { - display: inline-block; - height: auto; - max-width: 100%; - padding: 4px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 0; - -webkit-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} -.img-circle { - border-radius: 50%} -hr { - margin-top: 21px; - margin-bottom: 21px; - border: 0; - border-top: 1px solid #ddd; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { - font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-weight: 300; - line-height: 1.1; - color: inherit; -} -h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { - font-weight: normal; - line-height: 1; - color: #999; -} -h1, h2, h3 { - margin-top: 21px; - margin-bottom: 10.5px; -} -h1 small, h2 small, h3 small, h1 .small, h2 .small, h3 .small { - font-size: 65%} -h4, h5, h6 { - margin-top: 10.5px; - margin-bottom: 10.5px; -} -h4 small, h5 small, h6 small, h4 .small, h5 .small, h6 .small { - font-size: 75%} -h1, .h1 { - font-size: 39px; -} -h2, .h2 { - font-size: 32px; -} -h3, .h3 { - font-size: 26px; -} -h4, .h4 { - font-size: 19px; -} -h5, .h5 { - font-size: 15px; -} -h6, .h6 { - font-size: 13px; -} -p { - margin: 0 0 10.5px; -} -.lead { - margin-bottom: 21px; - font-size: 17px; - font-weight: 200; - line-height: 1.4; -} -@media(min-width:768px) { - .lead { - font-size: 22.5px; -} -}small, .small { - font-size: 85%} -cite { - font-style: normal; -} -.text-muted { - color: #999; -} -.text-primary { - color: #008cba; -} -.text-primary:hover { - color: #006687; -} -.text-warning { - color: #e99002; -} -.text-warning:hover { - color: #b67102; -} -.text-danger { - color: #f04124; -} -.text-danger:hover { - color: #d32a0e; -} -.text-success { - color: #43ac6a; -} -.text-success:hover { - color: #358753; -} -.text-info { - color: #5bc0de; -} -.text-info:hover { - color: #31b0d5; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.page-header { - padding-bottom: 9.5px; - margin: 42px 0 21px; - border-bottom: 1px solid #ddd; -} -ul, ol { - margin-top: 0; - margin-bottom: 10.5px; -} -ul ul, ol ul, ul ol, ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - list-style: none; -} -.list-inline>li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} -.list-inline>li:first-child { - padding-left: 0; -} -dl { - margin-top: 0; - margin-bottom: 21px; -} -dt, dd { - line-height: 1.428571429; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; -} -@media(min-width:768px) { - .dl-horizontal dt { - float: left; - width: 160px; - overflow: hidden; - clear: left; - text-align: right; - text-overflow: ellipsis; - white-space: nowrap; -} -.dl-horizontal dd { - margin-left: 180px; -} -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: " "} -.dl-horizontal dd:after { - clear: both; -} -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: " "} -.dl-horizontal dd:after { - clear: both; -} -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: " "} -.dl-horizontal dd:after { - clear: both; -} -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: " "} -.dl-horizontal dd:after { - clear: both; -} -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: " "} -.dl-horizontal dd:after { - clear: both; -} -}abbr[title], abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #999; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 10.5px 21px; - margin: 0 0 21px; - border-left: 5px solid #ddd; -} -blockquote p { - font-size: 18.75px; - font-weight: 300; - line-height: 1.25; -} -blockquote p:last-child { - margin-bottom: 0; -} -blockquote small, blockquote .small { - display: block; - line-height: 1.428571429; - color: #6f6f6f; -} -blockquote small:before, blockquote .small:before { - content: '\2014 \00A0'} -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid #ddd; - border-left: 0; -} -blockquote.pull-right p, blockquote.pull-right small, blockquote.pull-right .small { - text-align: right; -} -blockquote.pull-right small:before, blockquote.pull-right .small:before { - content: ''} -blockquote.pull-right small:after, blockquote.pull-right .small:after { - content: '\00A0 \2014'} -blockquote:before, blockquote:after { - content: ""} -address { - margin-bottom: 21px; - font-style: normal; - line-height: 1.428571429; -} -code, kbd, pre, samp { - font-family: Hack, Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - white-space: nowrap; - background-color: #f9f2f4; - border-radius: 0; -} -pre { - display: block; - padding: 10px; - margin: 0 0 10.5px; - font-size: 14px; - line-height: 1.428571429; - color: #333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 0; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.container:before, .container:after { - display: table; - content: " "} -.container:after { - clear: both; -} -.container:before, .container:after { - display: table; - content: " "} -.container:after { - clear: both; -} -.container:before, .container:after { - display: table; - content: " "} -.container:after { - clear: both; -} -.container:before, .container:after { - display: table; - content: " "} -.container:after { - clear: both; -} -.container:before, .container:after { - display: table; - content: " "} -.container:after { - clear: both; -} -@media(min-width:768px) { - .container { - width: 750px; -} -}@media(min-width:992px) { - .container { - width: 970px; -} -}@media(min-width:1200px) { - .container { - width: 1170px; -} -}.row { - margin-right: -15px; - margin-left: -15px; -} -.row:before, .row:after { - display: table; - content: " "} -.row:after { - clear: both; -} -.row:before, .row:after { - display: table; - content: " "} -.row:after { - clear: both; -} -.row:before, .row:after { - display: table; - content: " "} -.row:after { - clear: both; -} -.row:before, .row:after { - display: table; - content: " "} -.row:after { - clear: both; -} -.row:before, .row:after { - display: table; - content: " "} -.row:after { - clear: both; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%} -.col-xs-11 { - width: 91.66666666666666%} -.col-xs-10 { - width: 83.33333333333334%} -.col-xs-9 { - width: 75%} -.col-xs-8 { - width: 66.66666666666666%} -.col-xs-7 { - width: 58.333333333333336%} -.col-xs-6 { - width: 50%} -.col-xs-5 { - width: 41.66666666666667%} -.col-xs-4 { - width: 33.33333333333333%} -.col-xs-3 { - width: 25%} -.col-xs-2 { - width: 16.666666666666664%} -.col-xs-1 { - width: 8.333333333333332%} -.col-xs-pull-12 { - right: 100%} -.col-xs-pull-11 { - right: 91.66666666666666%} -.col-xs-pull-10 { - right: 83.33333333333334%} -.col-xs-pull-9 { - right: 75%} -.col-xs-pull-8 { - right: 66.66666666666666%} -.col-xs-pull-7 { - right: 58.333333333333336%} -.col-xs-pull-6 { - right: 50%} -.col-xs-pull-5 { - right: 41.66666666666667%} -.col-xs-pull-4 { - right: 33.33333333333333%} -.col-xs-pull-3 { - right: 25%} -.col-xs-pull-2 { - right: 16.666666666666664%} -.col-xs-pull-1 { - right: 8.333333333333332%} -.col-xs-pull-0 { - right: 0; -} -.col-xs-push-12 { - left: 100%} -.col-xs-push-11 { - left: 91.66666666666666%} -.col-xs-push-10 { - left: 83.33333333333334%} -.col-xs-push-9 { - left: 75%} -.col-xs-push-8 { - left: 66.66666666666666%} -.col-xs-push-7 { - left: 58.333333333333336%} -.col-xs-push-6 { - left: 50%} -.col-xs-push-5 { - left: 41.66666666666667%} -.col-xs-push-4 { - left: 33.33333333333333%} -.col-xs-push-3 { - left: 25%} -.col-xs-push-2 { - left: 16.666666666666664%} -.col-xs-push-1 { - left: 8.333333333333332%} -.col-xs-push-0 { - left: 0; -} -.col-xs-offset-12 { - margin-left: 100%} -.col-xs-offset-11 { - margin-left: 91.66666666666666%} -.col-xs-offset-10 { - margin-left: 83.33333333333334%} -.col-xs-offset-9 { - margin-left: 75%} -.col-xs-offset-8 { - margin-left: 66.66666666666666%} -.col-xs-offset-7 { - margin-left: 58.333333333333336%} -.col-xs-offset-6 { - margin-left: 50%} -.col-xs-offset-5 { - margin-left: 41.66666666666667%} -.col-xs-offset-4 { - margin-left: 33.33333333333333%} -.col-xs-offset-3 { - margin-left: 25%} -.col-xs-offset-2 { - margin-left: 16.666666666666664%} -.col-xs-offset-1 { - margin-left: 8.333333333333332%} -.col-xs-offset-0 { - margin-left: 0; -} -@media(min-width:768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; -} -.col-sm-12 { - width: 100%} -.col-sm-11 { - width: 91.66666666666666%} -.col-sm-10 { - width: 83.33333333333334%} -.col-sm-9 { - width: 75%} -.col-sm-8 { - width: 66.66666666666666%} -.col-sm-7 { - width: 58.333333333333336%} -.col-sm-6 { - width: 50%} -.col-sm-5 { - width: 41.66666666666667%} -.col-sm-4 { - width: 33.33333333333333%} -.col-sm-3 { - width: 25%} -.col-sm-2 { - width: 16.666666666666664%} -.col-sm-1 { - width: 8.333333333333332%} -.col-sm-pull-12 { - right: 100%} -.col-sm-pull-11 { - right: 91.66666666666666%} -.col-sm-pull-10 { - right: 83.33333333333334%} -.col-sm-pull-9 { - right: 75%} -.col-sm-pull-8 { - right: 66.66666666666666%} -.col-sm-pull-7 { - right: 58.333333333333336%} -.col-sm-pull-6 { - right: 50%} -.col-sm-pull-5 { - right: 41.66666666666667%} -.col-sm-pull-4 { - right: 33.33333333333333%} -.col-sm-pull-3 { - right: 25%} -.col-sm-pull-2 { - right: 16.666666666666664%} -.col-sm-pull-1 { - right: 8.333333333333332%} -.col-sm-pull-0 { - right: 0; -} -.col-sm-push-12 { - left: 100%} -.col-sm-push-11 { - left: 91.66666666666666%} -.col-sm-push-10 { - left: 83.33333333333334%} -.col-sm-push-9 { - left: 75%} -.col-sm-push-8 { - left: 66.66666666666666%} -.col-sm-push-7 { - left: 58.333333333333336%} -.col-sm-push-6 { - left: 50%} -.col-sm-push-5 { - left: 41.66666666666667%} -.col-sm-push-4 { - left: 33.33333333333333%} -.col-sm-push-3 { - left: 25%} -.col-sm-push-2 { - left: 16.666666666666664%} -.col-sm-push-1 { - left: 8.333333333333332%} -.col-sm-push-0 { - left: 0; -} -.col-sm-offset-12 { - margin-left: 100%} -.col-sm-offset-11 { - margin-left: 91.66666666666666%} -.col-sm-offset-10 { - margin-left: 83.33333333333334%} -.col-sm-offset-9 { - margin-left: 75%} -.col-sm-offset-8 { - margin-left: 66.66666666666666%} -.col-sm-offset-7 { - margin-left: 58.333333333333336%} -.col-sm-offset-6 { - margin-left: 50%} -.col-sm-offset-5 { - margin-left: 41.66666666666667%} -.col-sm-offset-4 { - margin-left: 33.33333333333333%} -.col-sm-offset-3 { - margin-left: 25%} -.col-sm-offset-2 { - margin-left: 16.666666666666664%} -.col-sm-offset-1 { - margin-left: 8.333333333333332%} -.col-sm-offset-0 { - margin-left: 0; -} -}@media(min-width:992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; -} -.col-md-12 { - width: 100%} -.col-md-11 { - width: 91.66666666666666%} -.col-md-10 { - width: 83.33333333333334%} -.col-md-9 { - width: 75%} -.col-md-8 { - width: 66.66666666666666%} -.col-md-7 { - width: 58.333333333333336%} -.col-md-6 { - width: 50%} -.col-md-5 { - width: 41.66666666666667%} -.col-md-4 { - width: 33.33333333333333%} -.col-md-3 { - width: 25%} -.col-md-2 { - width: 16.666666666666664%} -.col-md-1 { - width: 8.333333333333332%} -.col-md-pull-12 { - right: 100%} -.col-md-pull-11 { - right: 91.66666666666666%} -.col-md-pull-10 { - right: 83.33333333333334%} -.col-md-pull-9 { - right: 75%} -.col-md-pull-8 { - right: 66.66666666666666%} -.col-md-pull-7 { - right: 58.333333333333336%} -.col-md-pull-6 { - right: 50%} -.col-md-pull-5 { - right: 41.66666666666667%} -.col-md-pull-4 { - right: 33.33333333333333%} -.col-md-pull-3 { - right: 25%} -.col-md-pull-2 { - right: 16.666666666666664%} -.col-md-pull-1 { - right: 8.333333333333332%} -.col-md-pull-0 { - right: 0; -} -.col-md-push-12 { - left: 100%} -.col-md-push-11 { - left: 91.66666666666666%} -.col-md-push-10 { - left: 83.33333333333334%} -.col-md-push-9 { - left: 75%} -.col-md-push-8 { - left: 66.66666666666666%} -.col-md-push-7 { - left: 58.333333333333336%} -.col-md-push-6 { - left: 50%} -.col-md-push-5 { - left: 41.66666666666667%} -.col-md-push-4 { - left: 33.33333333333333%} -.col-md-push-3 { - left: 25%} -.col-md-push-2 { - left: 16.666666666666664%} -.col-md-push-1 { - left: 8.333333333333332%} -.col-md-push-0 { - left: 0; -} -.col-md-offset-12 { - margin-left: 100%} -.col-md-offset-11 { - margin-left: 91.66666666666666%} -.col-md-offset-10 { - margin-left: 83.33333333333334%} -.col-md-offset-9 { - margin-left: 75%} -.col-md-offset-8 { - margin-left: 66.66666666666666%} -.col-md-offset-7 { - margin-left: 58.333333333333336%} -.col-md-offset-6 { - margin-left: 50%} -.col-md-offset-5 { - margin-left: 41.66666666666667%} -.col-md-offset-4 { - margin-left: 33.33333333333333%} -.col-md-offset-3 { - margin-left: 25%} -.col-md-offset-2 { - margin-left: 16.666666666666664%} -.col-md-offset-1 { - margin-left: 8.333333333333332%} -.col-md-offset-0 { - margin-left: 0; -} -}@media(min-width:1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; -} -.col-lg-12 { - width: 100%} -.col-lg-11 { - width: 91.66666666666666%} -.col-lg-10 { - width: 83.33333333333334%} -.col-lg-9 { - width: 75%} -.col-lg-8 { - width: 66.66666666666666%} -.col-lg-7 { - width: 58.333333333333336%} -.col-lg-6 { - width: 50%} -.col-lg-5 { - width: 41.66666666666667%} -.col-lg-4 { - width: 33.33333333333333%} -.col-lg-3 { - width: 25%} -.col-lg-2 { - width: 16.666666666666664%} -.col-lg-1 { - width: 8.333333333333332%} -.col-lg-pull-12 { - right: 100%} -.col-lg-pull-11 { - right: 91.66666666666666%} -.col-lg-pull-10 { - right: 83.33333333333334%} -.col-lg-pull-9 { - right: 75%} -.col-lg-pull-8 { - right: 66.66666666666666%} -.col-lg-pull-7 { - right: 58.333333333333336%} -.col-lg-pull-6 { - right: 50%} -.col-lg-pull-5 { - right: 41.66666666666667%} -.col-lg-pull-4 { - right: 33.33333333333333%} -.col-lg-pull-3 { - right: 25%} -.col-lg-pull-2 { - right: 16.666666666666664%} -.col-lg-pull-1 { - right: 8.333333333333332%} -.col-lg-pull-0 { - right: 0; -} -.col-lg-push-12 { - left: 100%} -.col-lg-push-11 { - left: 91.66666666666666%} -.col-lg-push-10 { - left: 83.33333333333334%} -.col-lg-push-9 { - left: 75%} -.col-lg-push-8 { - left: 66.66666666666666%} -.col-lg-push-7 { - left: 58.333333333333336%} -.col-lg-push-6 { - left: 50%} -.col-lg-push-5 { - left: 41.66666666666667%} -.col-lg-push-4 { - left: 33.33333333333333%} -.col-lg-push-3 { - left: 25%} -.col-lg-push-2 { - left: 16.666666666666664%} -.col-lg-push-1 { - left: 8.333333333333332%} -.col-lg-push-0 { - left: 0; -} -.col-lg-offset-12 { - margin-left: 100%} -.col-lg-offset-11 { - margin-left: 91.66666666666666%} -.col-lg-offset-10 { - margin-left: 83.33333333333334%} -.col-lg-offset-9 { - margin-left: 75%} -.col-lg-offset-8 { - margin-left: 66.66666666666666%} -.col-lg-offset-7 { - margin-left: 58.333333333333336%} -.col-lg-offset-6 { - margin-left: 50%} -.col-lg-offset-5 { - margin-left: 41.66666666666667%} -.col-lg-offset-4 { - margin-left: 33.33333333333333%} -.col-lg-offset-3 { - margin-left: 25%} -.col-lg-offset-2 { - margin-left: 16.666666666666664%} -.col-lg-offset-1 { - margin-left: 8.333333333333332%} -.col-lg-offset-0 { - margin-left: 0; -} -}table { - max-width: 100%; - background-color: transparent; -} -th { - text-align: left; -} -.table { - width: 100%; - margin-bottom: 21px; -} -.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td { - padding: 8px; - line-height: 1.428571429; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table>thead>tr>th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>th, .table>caption+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>td, .table>thead:first-child>tr:first-child>td { - border-top: 0; -} -.table>tbody+tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} -.table-condensed>thead>tr>th, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>tbody>tr>td, .table-condensed>tfoot>tr>td { - padding: 5px; -} -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td { - border: 1px solid #ddd; -} -.table-bordered>thead>tr>th, .table-bordered>thead>tr>td { - border-bottom-width: 2px; -} -.table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th { - background-color: #f9f9f9; -} -.table-hover>tbody>tr:hover>td, .table-hover>tbody>tr:hover>th { - background-color: #f5f5f5; -} -table col[class*="col-"] { - position: static; - display: table-column; - float: none; -} -table td[class*="col-"], table th[class*="col-"] { - display: table-cell; - float: none; -} -.table>thead>tr>.active, .table>tbody>tr>.active, .table>tfoot>tr>.active, .table>thead>.active>td, .table>tbody>.active>td, .table>tfoot>.active>td, .table>thead>.active>th, .table>tbody>.active>th, .table>tfoot>.active>th { - background-color: #f5f5f5; -} -.table-hover>tbody>tr>.active:hover, .table-hover>tbody>.active:hover>td, .table-hover>tbody>.active:hover>th { - background-color: #e8e8e8; -} -.table>thead>tr>.success, .table>tbody>tr>.success, .table>tfoot>tr>.success, .table>thead>.success>td, .table>tbody>.success>td, .table>tfoot>.success>td, .table>thead>.success>th, .table>tbody>.success>th, .table>tfoot>.success>th { - background-color: #dff0d8; -} -.table-hover>tbody>tr>.success:hover, .table-hover>tbody>.success:hover>td, .table-hover>tbody>.success:hover>th { - background-color: #d0e9c6; -} -.table>thead>tr>.danger, .table>tbody>tr>.danger, .table>tfoot>tr>.danger, .table>thead>.danger>td, .table>tbody>.danger>td, .table>tfoot>.danger>td, .table>thead>.danger>th, .table>tbody>.danger>th, .table>tfoot>.danger>th { - background-color: #f2dede; -} -.table-hover>tbody>tr>.danger:hover, .table-hover>tbody>.danger:hover>td, .table-hover>tbody>.danger:hover>th { - background-color: #ebcccc; -} -.table>thead>tr>.warning, .table>tbody>tr>.warning, .table>tfoot>tr>.warning, .table>thead>.warning>td, .table>tbody>.warning>td, .table>tfoot>.warning>td, .table>thead>.warning>th, .table>tbody>.warning>th, .table>tfoot>.warning>th { - background-color: #fcf8e3; -} -.table-hover>tbody>tr>.warning:hover, .table-hover>tbody>.warning:hover>td, .table-hover>tbody>.warning:hover>th { - background-color: #faf2cc; -} -@media(max-width:767px) { - .table-responsive { - width: 100%; - margin-bottom: 15.75px; - overflow-x: scroll; - overflow-y: hidden; - border: 1px solid #ddd; - -ms-overflow-style: -ms-autohiding-scrollbar; - -webkit-overflow-scrolling: touch; -} -.table-responsive>.table { - margin-bottom: 0; -} -.table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td { - white-space: nowrap; -} -.table-responsive>.table-bordered { - border: 0; -} -.table-responsive>.table-bordered>thead>tr>th:first-child, .table-responsive>.table-bordered>tbody>tr>th:first-child, .table-responsive>.table-bordered>tfoot>tr>th:first-child, .table-responsive>.table-bordered>thead>tr>td:first-child, .table-responsive>.table-bordered>tbody>tr>td:first-child, .table-responsive>.table-bordered>tfoot>tr>td:first-child { - border-left: 0; -} -.table-responsive>.table-bordered>thead>tr>th:last-child, .table-responsive>.table-bordered>tbody>tr>th:last-child, .table-responsive>.table-bordered>tfoot>tr>th:last-child, .table-responsive>.table-bordered>thead>tr>td:last-child, .table-responsive>.table-bordered>tbody>tr>td:last-child, .table-responsive>.table-bordered>tfoot>tr>td:last-child { - border-right: 0; -} -.table-responsive>.table-bordered>tbody>tr:last-child>th, .table-responsive>.table-bordered>tfoot>tr:last-child>th, .table-responsive>.table-bordered>tbody>tr:last-child>td, .table-responsive>.table-bordered>tfoot>tr:last-child>td { - border-bottom: 0; -} -}fieldset { - padding: 0; - margin: 0; - border: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 21px; - font-size: 22.5px; - line-height: inherit; - color: #333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - margin-bottom: 5px; - font-weight: bold; -} -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type="radio"], input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type="file"] { - display: block; -} -select[multiple], select[size] { - height: auto; -} -select optgroup { - font-family: inherit; - font-size: inherit; - font-style: inherit; -} -input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button { - height: auto; -} -output { - display: block; - padding-top: 7px; - font-size: 15px; - line-height: 1.428571429; - color: #6f6f6f; - vertical-align: middle; -} -.form-control { - display: block; - width: 100%; - height: 35px; - padding: 6px 12px; - font-size: 15px; - line-height: 1.428571429; - color: #6f6f6f; - vertical-align: middle; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); -} -.form-control:-moz-placeholder { - color: #999; -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - cursor: not-allowed; - background-color: #eee; -} -textarea.form-control { - height: auto; -} -.form-group { - margin-bottom: 15px; -} -.radio, .checkbox { - display: block; - min-height: 21px; - padding-left: 20px; - margin-top: 10px; - margin-bottom: 10px; - vertical-align: middle; -} -.radio label, .checkbox label { - display: inline; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} -.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { - float: left; - margin-left: -20px; -} -.radio+.radio, .checkbox+.checkbox { - margin-top: -5px; -} -.radio-inline, .checkbox-inline { - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - vertical-align: middle; - cursor: pointer; -} -.radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type="radio"][disabled], input[type="checkbox"][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.input-sm { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 0; -} -select.input-sm { - height: 30px; - line-height: 30px; -} -textarea.input-sm { - height: auto; -} -.input-lg { - height: 48px; - padding: 10px 16px; - font-size: 19px; - line-height: 1.33; - border-radius: 0; -} -select.input-lg { - height: 48px; - line-height: 48px; -} -textarea.input-lg { - height: auto; -} -.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { - color: #e99002; -} -.has-warning .form-control { - border-color: #e99002; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .form-control:focus { - border-color: #b67102; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #febc53; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #febc53; -} -.has-warning .input-group-addon { - color: #e99002; - background-color: #fcf8e3; - border-color: #e99002; -} -.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { - color: #f04124; -} -.has-error .form-control { - border-color: #f04124; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .form-control:focus { - border-color: #d32a0e; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f79483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f79483; -} -.has-error .input-group-addon { - color: #f04124; - background-color: #f2dede; - border-color: #f04124; -} -.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { - color: #43ac6a; -} -.has-success .form-control { - border-color: #43ac6a; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .form-control:focus { - border-color: #358753; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #85d0a1; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #85d0a1; -} -.has-success .input-group-addon { - color: #43ac6a; - background-color: #dff0d8; - border-color: #43ac6a; -} -.form-control-static { - margin-bottom: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #626262; -} -@media(min-width:768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; -} -.form-inline .form-control { - display: inline-block; -} -.form-inline select.form-control { - width: auto; -} -.form-inline .radio, .form-inline .checkbox { - display: inline-block; - padding-left: 0; - margin-top: 0; - margin-bottom: 0; -} -.form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { - float: none; - margin-left: 0; -} -}.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; -} -.form-horizontal .radio, .form-horizontal .checkbox { - min-height: 28px; -} -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: " "} -.form-horizontal .form-group:after { - clear: both; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: " "} -.form-horizontal .form-group:after { - clear: both; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: " "} -.form-horizontal .form-group:after { - clear: both; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: " "} -.form-horizontal .form-group:after { - clear: both; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: " "} -.form-horizontal .form-group:after { - clear: both; -} -.form-horizontal .form-control-static { - padding-top: 7px; -} -@media(min-width:768px) { - .form-horizontal .control-label { - text-align: right; -} -}.btn { - display: inline-block; - padding: 6px 12px; - margin-bottom: 0; - font-size: 15px; - font-weight: normal; - line-height: 1.428571429; - text-align: center; - white-space: nowrap; - vertical-align: middle; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - border-radius: 0; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; -} -.btn:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, .btn:focus { - color: #333; - text-decoration: none; -} -.btn:active, .btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, .btn[disabled], fieldset[disabled] .btn { - pointer-events: none; - cursor: not-allowed; - opacity: .65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-default { - color: #333; - background-color: #e7e7e7; - border-color: #dadada; -} -.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { - color: #333; - background-color: #d3d3d3; - border-color: #bbb; -} -.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { - background-color: #e7e7e7; - border-color: #dadada; -} -.btn-default .badge { - color: #e7e7e7; - background-color: #fff; -} -.btn-primary { - color: #fff; - background-color: #008cba; - border-color: #0079a1; -} -.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary { - color: #fff; - background-color: #006d91; - border-color: #004b63; -} -.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { - background-color: #008cba; - border-color: #0079a1; -} -.btn-primary .badge { - color: #008cba; - background-color: #fff; -} -.btn-warning { - color: #fff; - background-color: #e99002; - border-color: #d08002; -} -.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning { - color: #fff; - background-color: #c17702; - border-color: #935b01; -} -.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { - background-color: #e99002; - border-color: #d08002; -} -.btn-warning .badge { - color: #e99002; - background-color: #fff; -} -.btn-danger { - color: #fff; - background-color: #f04124; - border-color: #ea2f10; -} -.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger { - color: #fff; - background-color: #dc2c0f; - border-color: #b1240c; -} -.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { - background-color: #f04124; - border-color: #ea2f10; -} -.btn-danger .badge { - color: #f04124; - background-color: #fff; -} -.btn-success { - color: #fff; - background-color: #43ac6a; - border-color: #3c9a5f; -} -.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success { - color: #fff; - background-color: #388f58; - border-color: #2b6e44; -} -.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { - background-color: #43ac6a; - border-color: #3c9a5f; -} -.btn-success .badge { - color: #43ac6a; - background-color: #fff; -} -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info { - color: #fff; - background-color: #39b3d7; - border-color: #269abc; -} -.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} -.btn-link { - font-weight: normal; - color: #008cba; - cursor: pointer; - border-radius: 0; -} -.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; -} -.btn-link:hover, .btn-link:focus { - color: #00526e; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { - color: #999; - text-decoration: none; -} -.btn-lg { - padding: 10px 16px; - font-size: 19px; - line-height: 1.33; - border-radius: 0; -} -.btn-sm { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 0; -} -.btn-xs { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 0; -} -.btn-block { - display: block; - width: 100%; - padding-right: 0; - padding-left: 0; -} -.btn-block+.btn-block { - margin-top: 5px; -} -input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { - width: 100%} -.fade { - opacity: 0; - -webkit-transition: opacity .15s linear; - transition: opacity .15s linear; -} -.fade.in { - opacity: 1; -} -.collapse { - display: none; -} -.collapse.in { - display: block; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition: height .35s ease; - transition: height .35s ease; -} -@font-face { - font-family: 'Glyphicons Halflings'; - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), 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'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - -webkit-font-smoothing: antialiased; - font-style: normal; - font-weight: normal; - line-height: 1; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon:empty { - width: 1em; -} -.glyphicon-asterisk:before { - content: "\2a"} -.glyphicon-plus:before { - content: "\2b"} -.glyphicon-euro:before { - content: "\20ac"} -.glyphicon-minus:before { - content: "\2212"} -.glyphicon-cloud:before { - content: "\2601"} -.glyphicon-envelope:before { - content: "\2709"} -.glyphicon-pencil:before { - content: "\270f"} -.glyphicon-glass:before { - content: "\e001"} -.glyphicon-music:before { - content: "\e002"} -.glyphicon-search:before { - content: "\e003"} -.glyphicon-heart:before { - content: "\e005"} -.glyphicon-star:before { - content: "\e006"} -.glyphicon-star-empty:before { - content: "\e007"} -.glyphicon-user:before { - content: "\e008"} -.glyphicon-film:before { - content: "\e009"} -.glyphicon-th-large:before { - content: "\e010"} -.glyphicon-th:before { - content: "\e011"} -.glyphicon-th-list:before { - content: "\e012"} -.glyphicon-ok:before { - content: "\e013"} -.glyphicon-remove:before { - content: "\e014"} -.glyphicon-zoom-in:before { - content: "\e015"} -.glyphicon-zoom-out:before { - content: "\e016"} -.glyphicon-off:before { - content: "\e017"} -.glyphicon-signal:before { - content: "\e018"} -.glyphicon-cog:before { - content: "\e019"} -.glyphicon-trash:before { - content: "\e020"} -.glyphicon-home:before { - content: "\e021"} -.glyphicon-file:before { - content: "\e022"} -.glyphicon-time:before { - content: "\e023"} -.glyphicon-road:before { - content: "\e024"} -.glyphicon-download-alt:before { - content: "\e025"} -.glyphicon-download:before { - content: "\e026"} -.glyphicon-upload:before { - content: "\e027"} -.glyphicon-inbox:before { - content: "\e028"} -.glyphicon-play-circle:before { - content: "\e029"} -.glyphicon-repeat:before { - content: "\e030"} -.glyphicon-refresh:before { - content: "\e031"} -.glyphicon-list-alt:before { - content: "\e032"} -.glyphicon-lock:before { - content: "\e033"} -.glyphicon-flag:before { - content: "\e034"} -.glyphicon-headphones:before { - content: "\e035"} -.glyphicon-volume-off:before { - content: "\e036"} -.glyphicon-volume-down:before { - content: "\e037"} -.glyphicon-volume-up:before { - content: "\e038"} -.glyphicon-qrcode:before { - content: "\e039"} -.glyphicon-barcode:before { - content: "\e040"} -.glyphicon-tag:before { - content: "\e041"} -.glyphicon-tags:before { - content: "\e042"} -.glyphicon-book:before { - content: "\e043"} -.glyphicon-bookmark:before { - content: "\e044"} -.glyphicon-print:before { - content: "\e045"} -.glyphicon-camera:before { - content: "\e046"} -.glyphicon-font:before { - content: "\e047"} -.glyphicon-bold:before { - content: "\e048"} -.glyphicon-italic:before { - content: "\e049"} -.glyphicon-text-height:before { - content: "\e050"} -.glyphicon-text-width:before { - content: "\e051"} -.glyphicon-align-left:before { - content: "\e052"} -.glyphicon-align-center:before { - content: "\e053"} -.glyphicon-align-right:before { - content: "\e054"} -.glyphicon-align-justify:before { - content: "\e055"} -.glyphicon-list:before { - content: "\e056"} -.glyphicon-indent-left:before { - content: "\e057"} -.glyphicon-indent-right:before { - content: "\e058"} -.glyphicon-facetime-video:before { - content: "\e059"} -.glyphicon-picture:before { - content: "\e060"} -.glyphicon-map-marker:before { - content: "\e062"} -.glyphicon-adjust:before { - content: "\e063"} -.glyphicon-tint:before { - content: "\e064"} -.glyphicon-edit:before { - content: "\e065"} -.glyphicon-share:before { - content: "\e066"} -.glyphicon-check:before { - content: "\e067"} -.glyphicon-move:before { - content: "\e068"} -.glyphicon-step-backward:before { - content: "\e069"} -.glyphicon-fast-backward:before { - content: "\e070"} -.glyphicon-backward:before { - content: "\e071"} -.glyphicon-play:before { - content: "\e072"} -.glyphicon-pause:before { - content: "\e073"} -.glyphicon-stop:before { - content: "\e074"} -.glyphicon-forward:before { - content: "\e075"} -.glyphicon-fast-forward:before { - content: "\e076"} -.glyphicon-step-forward:before { - content: "\e077"} -.glyphicon-eject:before { - content: "\e078"} -.glyphicon-chevron-left:before { - content: "\e079"} -.glyphicon-chevron-right:before { - content: "\e080"} -.glyphicon-plus-sign:before { - content: "\e081"} -.glyphicon-minus-sign:before { - content: "\e082"} -.glyphicon-remove-sign:before { - content: "\e083"} -.glyphicon-ok-sign:before { - content: "\e084"} -.glyphicon-question-sign:before { - content: "\e085"} -.glyphicon-info-sign:before { - content: "\e086"} -.glyphicon-screenshot:before { - content: "\e087"} -.glyphicon-remove-circle:before { - content: "\e088"} -.glyphicon-ok-circle:before { - content: "\e089"} -.glyphicon-ban-circle:before { - content: "\e090"} -.glyphicon-arrow-left:before { - content: "\e091"} -.glyphicon-arrow-right:before { - content: "\e092"} -.glyphicon-arrow-up:before { - content: "\e093"} -.glyphicon-arrow-down:before { - content: "\e094"} -.glyphicon-share-alt:before { - content: "\e095"} -.glyphicon-resize-full:before { - content: "\e096"} -.glyphicon-resize-small:before { - content: "\e097"} -.glyphicon-exclamation-sign:before { - content: "\e101"} -.glyphicon-gift:before { - content: "\e102"} -.glyphicon-leaf:before { - content: "\e103"} -.glyphicon-fire:before { - content: "\e104"} -.glyphicon-eye-open:before { - content: "\e105"} -.glyphicon-eye-close:before { - content: "\e106"} -.glyphicon-warning-sign:before { - content: "\e107"} -.glyphicon-plane:before { - content: "\e108"} -.glyphicon-calendar:before { - content: "\e109"} -.glyphicon-random:before { - content: "\e110"} -.glyphicon-comment:before { - content: "\e111"} -.glyphicon-magnet:before { - content: "\e112"} -.glyphicon-chevron-up:before { - content: "\e113"} -.glyphicon-chevron-down:before { - content: "\e114"} -.glyphicon-retweet:before { - content: "\e115"} -.glyphicon-shopping-cart:before { - content: "\e116"} -.glyphicon-folder-close:before { - content: "\e117"} -.glyphicon-folder-open:before { - content: "\e118"} -.glyphicon-resize-vertical:before { - content: "\e119"} -.glyphicon-resize-horizontal:before { - content: "\e120"} -.glyphicon-hdd:before { - content: "\e121"} -.glyphicon-bullhorn:before { - content: "\e122"} -.glyphicon-bell:before { - content: "\e123"} -.glyphicon-certificate:before { - content: "\e124"} -.glyphicon-thumbs-up:before { - content: "\e125"} -.glyphicon-thumbs-down:before { - content: "\e126"} -.glyphicon-hand-right:before { - content: "\e127"} -.glyphicon-hand-left:before { - content: "\e128"} -.glyphicon-hand-up:before { - content: "\e129"} -.glyphicon-hand-down:before { - content: "\e130"} -.glyphicon-circle-arrow-right:before { - content: "\e131"} -.glyphicon-circle-arrow-left:before { - content: "\e132"} -.glyphicon-circle-arrow-up:before { - content: "\e133"} -.glyphicon-circle-arrow-down:before { - content: "\e134"} -.glyphicon-globe:before { - content: "\e135"} -.glyphicon-wrench:before { - content: "\e136"} -.glyphicon-tasks:before { - content: "\e137"} -.glyphicon-filter:before { - content: "\e138"} -.glyphicon-briefcase:before { - content: "\e139"} -.glyphicon-fullscreen:before { - content: "\e140"} -.glyphicon-dashboard:before { - content: "\e141"} -.glyphicon-paperclip:before { - content: "\e142"} -.glyphicon-heart-empty:before { - content: "\e143"} -.glyphicon-link:before { - content: "\e144"} -.glyphicon-phone:before { - content: "\e145"} -.glyphicon-pushpin:before { - content: "\e146"} -.glyphicon-usd:before { - content: "\e148"} -.glyphicon-gbp:before { - content: "\e149"} -.glyphicon-sort:before { - content: "\e150"} -.glyphicon-sort-by-alphabet:before { - content: "\e151"} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"} -.glyphicon-sort-by-order:before { - content: "\e153"} -.glyphicon-sort-by-order-alt:before { - content: "\e154"} -.glyphicon-sort-by-attributes:before { - content: "\e155"} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"} -.glyphicon-unchecked:before { - content: "\e157"} -.glyphicon-expand:before { - content: "\e158"} -.glyphicon-collapse-down:before { - content: "\e159"} -.glyphicon-collapse-up:before { - content: "\e160"} -.glyphicon-log-in:before { - content: "\e161"} -.glyphicon-flash:before { - content: "\e162"} -.glyphicon-log-out:before { - content: "\e163"} -.glyphicon-new-window:before { - content: "\e164"} -.glyphicon-record:before { - content: "\e165"} -.glyphicon-save:before { - content: "\e166"} -.glyphicon-open:before { - content: "\e167"} -.glyphicon-saved:before { - content: "\e168"} -.glyphicon-import:before { - content: "\e169"} -.glyphicon-export:before { - content: "\e170"} -.glyphicon-send:before { - content: "\e171"} -.glyphicon-floppy-disk:before { - content: "\e172"} -.glyphicon-floppy-saved:before { - content: "\e173"} -.glyphicon-floppy-remove:before { - content: "\e174"} -.glyphicon-floppy-save:before { - content: "\e175"} -.glyphicon-floppy-open:before { - content: "\e176"} -.glyphicon-credit-card:before { - content: "\e177"} -.glyphicon-transfer:before { - content: "\e178"} -.glyphicon-cutlery:before { - content: "\e179"} -.glyphicon-header:before { - content: "\e180"} -.glyphicon-compressed:before { - content: "\e181"} -.glyphicon-earphone:before { - content: "\e182"} -.glyphicon-phone-alt:before { - content: "\e183"} -.glyphicon-tower:before { - content: "\e184"} -.glyphicon-stats:before { - content: "\e185"} -.glyphicon-sd-video:before { - content: "\e186"} -.glyphicon-hd-video:before { - content: "\e187"} -.glyphicon-subtitles:before { - content: "\e188"} -.glyphicon-sound-stereo:before { - content: "\e189"} -.glyphicon-sound-dolby:before { - content: "\e190"} -.glyphicon-sound-5-1:before { - content: "\e191"} -.glyphicon-sound-6-1:before { - content: "\e192"} -.glyphicon-sound-7-1:before { - content: "\e193"} -.glyphicon-copyright-mark:before { - content: "\e194"} -.glyphicon-registration-mark:before { - content: "\e195"} -.glyphicon-cloud-download:before { - content: "\e197"} -.glyphicon-cloud-upload:before { - content: "\e198"} -.glyphicon-tree-conifer:before { - content: "\e199"} -.glyphicon-tree-deciduous:before { - content: "\e200"} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px solid; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 15px; - list-style: none; - background-color: #fff; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - background-clip: padding-box; -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9.5px 0; - overflow: hidden; - background-color: rgba(0, 0, 0, 0.2); -} -.dropdown-menu>li>a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.428571429; - color: #555; - white-space: nowrap; -} -.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus { - color: #262626; - text-decoration: none; - background-color: #eee; -} -.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus { - color: #fff; - text-decoration: none; - background-color: #008cba; - outline: 0; -} -.dropdown-menu>.disabled>a, .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { - color: #999; -} -.dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); -} -.open>.dropdown-menu { - display: block; -} -.open>a { - outline: 0; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.428571429; - color: #999; -} -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; -} -.pull-right>.dropdown-menu { - right: 0; - left: auto; -} -.dropup .caret, .navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px solid; - content: ""} -.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 1px; -} -@media(min-width:768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; -} -}.btn-group, .btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group>.btn, .btn-group-vertical>.btn { - position: relative; - float: left; -} -.btn-group>.btn:hover, .btn-group-vertical>.btn:hover, .btn-group>.btn:focus, .btn-group-vertical>.btn:focus, .btn-group>.btn:active, .btn-group-vertical>.btn:active, .btn-group>.btn.active, .btn-group-vertical>.btn.active { - z-index: 2; -} -.btn-group>.btn:focus, .btn-group-vertical>.btn:focus { - outline: 0; -} -.btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group { - margin-left: -1px; -} -.btn-toolbar:before, .btn-toolbar:after { - display: table; - content: " "} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar:before, .btn-toolbar:after { - display: table; - content: " "} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar:before, .btn-toolbar:after { - display: table; - content: " "} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar:before, .btn-toolbar:after { - display: table; - content: " "} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar:before, .btn-toolbar:after { - display: table; - content: " "} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar .btn-group { - float: left; -} -.btn-toolbar>.btn+.btn, .btn-toolbar>.btn-group+.btn, .btn-toolbar>.btn+.btn-group, .btn-toolbar>.btn-group+.btn-group { - margin-left: 5px; -} -.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} -.btn-group>.btn:first-child { - margin-left: 0; -} -.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group>.btn-group { - float: left; -} -.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { - border-radius: 0; -} -.btn-group>.btn-group:first-child>.btn:last-child, .btn-group>.btn-group:first-child>.dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group>.btn-group:last-child>.btn:first-child { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group-xs>.btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 0; -} -.btn-group-sm>.btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 0; -} -.btn-group-lg>.btn { - padding: 10px 16px; - font-size: 19px; - line-height: 1.33; - border-radius: 0; -} -.btn-group>.btn+.dropdown-toggle { - padding-right: 8px; - padding-left: 8px; -} -.btn-group>.btn-lg+.dropdown-toggle { - padding-right: 12px; - padding-left: 12px; -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical>.btn, .btn-group-vertical>.btn-group, .btn-group-vertical>.btn-group>.btn { - display: block; - float: none; - width: 100%; - max-width: 100%} -.btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after { - display: table; - content: " "} -.btn-group-vertical>.btn-group:after { - clear: both; -} -.btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after { - display: table; - content: " "} -.btn-group-vertical>.btn-group:after { - clear: both; -} -.btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after { - display: table; - content: " "} -.btn-group-vertical>.btn-group:after { - clear: both; -} -.btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after { - display: table; - content: " "} -.btn-group-vertical>.btn-group:after { - clear: both; -} -.btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after { - display: table; - content: " "} -.btn-group-vertical>.btn-group:after { - clear: both; -} -.btn-group-vertical>.btn-group>.btn { - float: none; -} -.btn-group-vertical>.btn+.btn, .btn-group-vertical>.btn+.btn-group, .btn-group-vertical>.btn-group+.btn, .btn-group-vertical>.btn-group+.btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical>.btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical>.btn:first-child:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical>.btn:last-child:not(:first-child) { - border-top-right-radius: 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { - border-radius: 0; -} -.btn-group-vertical>.btn-group:first-child>.btn:last-child, .btn-group-vertical>.btn-group:first-child>.dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical>.btn-group:last-child>.btn:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.btn-group-justified { - display: table; - width: 100%; - border-collapse: separate; - table-layout: fixed; -} -.btn-group-justified>.btn, .btn-group-justified>.btn-group { - display: table-cell; - float: none; - width: 1%} -.btn-group-justified>.btn-group .btn { - width: 100%} -[data-toggle="buttons"]>.btn>input[type="radio"], [data-toggle="buttons"]>.btn>input[type="checkbox"] { - display: none; -} -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*="col-"] { - float: none; - padding-right: 0; - padding-left: 0; -} -.input-group .form-control { - width: 100%; - margin-bottom: 0; -} -.input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn { - height: 48px; - padding: 10px 16px; - font-size: 19px; - line-height: 1.33; - border-radius: 0; -} -select.input-group-lg>.form-control, select.input-group-lg>.input-group-addon, select.input-group-lg>.input-group-btn>.btn { - height: 48px; - line-height: 48px; -} -textarea.input-group-lg>.form-control, textarea.input-group-lg>.input-group-addon, textarea.input-group-lg>.input-group-btn>.btn { - height: auto; -} -.input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 0; -} -select.input-group-sm>.form-control, select.input-group-sm>.input-group-addon, select.input-group-sm>.input-group-btn>.btn { - height: 30px; - line-height: 30px; -} -textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addon, textarea.input-group-sm>.input-group-btn>.btn { - height: auto; -} -.input-group-addon, .input-group-btn, .input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, .input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 15px; - font-weight: normal; - line-height: 1; - color: #6f6f6f; - text-align: center; - background-color: #eee; - border: 1px solid #ccc; - border-radius: 0; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 0; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 19px; - border-radius: 0; -} -.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { - margin-top: 0; -} -.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group-addon:first-child { - border-right: 0; -} -.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.input-group-addon:last-child { - border-left: 0; -} -.input-group-btn { - position: relative; - white-space: nowrap; -} -.input-group-btn:first-child>.btn { - margin-right: -1px; -} -.input-group-btn:last-child>.btn { - margin-left: -1px; -} -.input-group-btn>.btn { - position: relative; -} -.input-group-btn>.btn+.btn { - margin-left: -4px; -} -.input-group-btn>.btn:hover, .input-group-btn>.btn:active { - z-index: 2; -} -.nav { - font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav:before, .nav:after { - display: table; - content: " "} -.nav:after { - clear: both; -} -.nav:before, .nav:after { - display: table; - content: " "} -.nav:after { - clear: both; -} -.nav:before, .nav:after { - display: table; - content: " "} -.nav:after { - clear: both; -} -.nav:before, .nav:after { - display: table; - content: " "} -.nav:after { - clear: both; -} -.nav:before, .nav:after { - display: table; - content: " "} -.nav:after { - clear: both; -} -.nav>li { - position: relative; - display: block; -} -.nav>li>a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav>li>a:hover, .nav>li>a:focus { - text-decoration: none; - background-color: #eee; -} -.nav>li.disabled>a { - color: #999; -} -.nav>li.disabled>a:hover, .nav>li.disabled>a:focus { - color: #999; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} -.nav .open>a, .nav .open>a:hover, .nav .open>a:focus { - background-color: #eee; - border-color: #008cba; -} -.nav .nav-divider { - height: 1px; - margin: 9.5px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav>li>a>img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs>li { - float: left; - margin-bottom: -1px; -} -.nav-tabs>li>a { - margin-right: 2px; - line-height: 1.428571429; - border: 1px solid transparent; - border-radius: 0; -} -.nav-tabs>li>a:hover { - border-color: #eee #eee #ddd; -} -.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus { - color: #6f6f6f; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified>li { - float: none; -} -.nav-tabs.nav-justified>li>a { - margin-bottom: 5px; - text-align: center; -} -.nav-tabs.nav-justified>.dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media(min-width:768px) { - .nav-tabs.nav-justified>li { - display: table-cell; - width: 1%} -.nav-tabs.nav-justified>li>a { - margin-bottom: 0; -} -}.nav-tabs.nav-justified>li>a { - margin-right: 0; - border-radius: 0; -} -.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { - border: 1px solid #ddd; -} -@media(min-width:768px) { - .nav-tabs.nav-justified>li>a { - border-bottom: 1px solid #ddd; - border-radius: 0; -} -.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { - border-bottom-color: #fff; -} -}.nav-pills>li { - float: left; -} -.nav-pills>li>a { - border-radius: 0; -} -.nav-pills>li+li { - margin-left: 2px; -} -.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus { - color: #fff; - background-color: #008cba; -} -.nav-stacked>li { - float: none; -} -.nav-stacked>li+li { - margin-top: 2px; - margin-left: 0; -} -.nav-justified { - width: 100%} -.nav-justified>li { - float: none; -} -.nav-justified>li>a { - margin-bottom: 5px; - text-align: center; -} -.nav-justified>.dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media(min-width:768px) { - .nav-justified>li { - display: table-cell; - width: 1%} -.nav-justified>li>a { - margin-bottom: 0; -} -}.nav-tabs-justified { - border-bottom: 0; -} -.nav-tabs-justified>li>a { - margin-right: 0; - border-radius: 0; -} -.nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { - border: 1px solid #ddd; -} -@media(min-width:768px) { - .nav-tabs-justified>li>a { - border-bottom: 1px solid #ddd; - border-radius: 0; -} -.nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { - border-bottom-color: #fff; -} -}.tab-content>.tab-pane { - display: none; -} -.tab-content>.active { - display: block; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar { - position: relative; - min-height: 45px; - margin-bottom: 21px; - border: 1px solid transparent; -} -.navbar:before, .navbar:after { - display: table; - content: " "} -.navbar:after { - clear: both; -} -.navbar:before, .navbar:after { - display: table; - content: " "} -.navbar:after { - clear: both; -} -.navbar:before, .navbar:after { - display: table; - content: " "} -.navbar:after { - clear: both; -} -.navbar:before, .navbar:after { - display: table; - content: " "} -.navbar:after { - clear: both; -} -.navbar:before, .navbar:after { - display: table; - content: " "} -.navbar:after { - clear: both; -} -@media(min-width:768px) { - .navbar { - border-radius: 0; -} -}.navbar-header:before, .navbar-header:after { - display: table; - content: " "} -.navbar-header:after { - clear: both; -} -.navbar-header:before, .navbar-header:after { - display: table; - content: " "} -.navbar-header:after { - clear: both; -} -.navbar-header:before, .navbar-header:after { - display: table; - content: " "} -.navbar-header:after { - clear: both; -} -.navbar-header:before, .navbar-header:after { - display: table; - content: " "} -.navbar-header:after { - clear: both; -} -.navbar-header:before, .navbar-header:after { - display: table; - content: " "} -.navbar-header:after { - clear: both; -} -@media(min-width:768px) { - .navbar-header { - float: left; -} -}.navbar-collapse { - max-height: 340px; - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse:before, .navbar-collapse:after { - display: table; - content: " "} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse:before, .navbar-collapse:after { - display: table; - content: " "} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse:before, .navbar-collapse:after { - display: table; - content: " "} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse:before, .navbar-collapse:after { - display: table; - content: " "} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse:before, .navbar-collapse:after { - display: table; - content: " "} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media(min-width:768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; -} -.navbar-collapse.collapse { - display: block!important; - height: auto!important; - padding-bottom: 0; - overflow: visible!important; -} -.navbar-collapse.in { - overflow-y: visible; -} -.navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; -} -}.container>.navbar-header, .container>.navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media(min-width:768px) { - .container>.navbar-header, .container>.navbar-collapse { - margin-right: 0; - margin-left: 0; -} -}.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media(min-width:768px) { - .navbar-static-top { - border-radius: 0; -} -}.navbar-fixed-top, .navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -@media(min-width:768px) { - .navbar-fixed-top, .navbar-fixed-bottom { - border-radius: 0; -} -}.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} -.navbar-brand { - font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - float: left; - padding: 12px 15px; - font-size: 19px; - line-height: 21px; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} -@media(min-width:768px) { - .navbar>.container .navbar-brand { - margin-left: -15px; -} -}.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-top: 5.5px; - margin-right: 15px; - margin-bottom: 5.5px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar+.icon-bar { - margin-top: 4px; -} -@media(min-width:768px) { - .navbar-toggle { - display: none; -} -}.navbar-nav { - margin: 6px -15px; -} -.navbar-nav>li>a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 21px; -} -@media(max-width:767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; -} -.navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; -} -.navbar-nav .open .dropdown-menu>li>a { - line-height: 21px; -} -.navbar-nav .open .dropdown-menu>li>a:hover, .navbar-nav .open .dropdown-menu>li>a:focus { - background-image: none; -} -}@media(min-width:768px) { - .navbar-nav { - float: left; - margin: 0; -} -.navbar-nav>li { - float: left; -} -.navbar-nav>li>a { - padding-top: 12px; - padding-bottom: 12px; -} -.navbar-nav.navbar-right:last-child { - margin-right: -15px; -} -}@media(min-width:768px) { - .navbar-left { - float: left!important; -} -.navbar-right { - float: right!important; -} -}.navbar-form { - padding: 10px 15px; - margin-top: 5px; - margin-right: -15px; - margin-bottom: 5px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -} -@media(min-width:768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; -} -.navbar-form .form-control { - display: inline-block; -} -.navbar-form select.form-control { - width: auto; -} -.navbar-form .radio, .navbar-form .checkbox { - display: inline-block; - padding-left: 0; - margin-top: 0; - margin-bottom: 0; -} -.navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { - float: none; - margin-left: 0; -} -}@media(max-width:767px) { - .navbar-form .form-group { - margin-bottom: 5px; -} -}@media(min-width:768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; -} -.navbar-form.navbar-right:last-child { - margin-right: -15px; -} -}.navbar-nav>li>.dropdown-menu { - margin-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-nav.pull-right>li>.dropdown-menu, .navbar-nav>li>.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.navbar-btn { - margin-top: 5px; - margin-bottom: 5px; -} -.navbar-btn.btn-sm { - margin-top: 7.5px; - margin-bottom: 7.5px; -} -.navbar-btn.btn-xs { - margin-top: 11.5px; - margin-bottom: 11.5px; -} -.navbar-text { - margin-top: 12px; - margin-bottom: 12px; -} -@media(min-width:768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; -} -.navbar-text.navbar-right:last-child { - margin-right: 0; -} -}.navbar-default { - background-color: #333; - border-color: #222; -} -.navbar-default .navbar-brand { - color: #fff; -} -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #fff; -} -.navbar-default .navbar-nav>li>a { - color: #fff; -} -.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus { - color: #fff; - background-color: #272727; -} -.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus { - color: #fff; - background-color: #272727; -} -.navbar-default .navbar-nav>.disabled>a, .navbar-default .navbar-nav>.disabled>a:hover, .navbar-default .navbar-nav>.disabled>a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: transparent; -} -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: transparent; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-default .navbar-collapse, .navbar-default .navbar-form { - border-color: #222; -} -.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus { - color: #fff; - background-color: #272727; -} -@media(max-width:767px) { - .navbar-default .navbar-nav .open .dropdown-menu>li>a { - color: #fff; -} -.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus { - color: #fff; - background-color: #272727; -} -.navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus { - color: #fff; - background-color: #272727; -} -.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus { - color: #ccc; - background-color: transparent; -} -}.navbar-default .navbar-link { - color: #fff; -} -.navbar-default .navbar-link:hover { - color: #fff; -} -.navbar-inverse { - background-color: #008cba; - border-color: #006687; -} -.navbar-inverse .navbar-brand { - color: #fff; -} -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #fff; -} -.navbar-inverse .navbar-nav>li>a { - color: #fff; -} -.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus { - color: #fff; - background-color: #006687; -} -.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:hover, .navbar-inverse .navbar-nav>.active>a:focus { - color: #fff; - background-color: #006687; -} -.navbar-inverse .navbar-nav>.disabled>a, .navbar-inverse .navbar-nav>.disabled>a:hover, .navbar-inverse .navbar-nav>.disabled>a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: transparent; -} -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: transparent; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { - border-color: #007196; -} -.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus { - color: #fff; - background-color: #006687; -} -@media(max-width:767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { - border-color: #006687; -} -.navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #006687; -} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a { - color: #fff; -} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus { - color: #fff; - background-color: #006687; -} -.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus { - color: #fff; - background-color: #006687; -} -.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus { - color: #444; - background-color: transparent; -} -}.navbar-inverse .navbar-link { - color: #fff; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 21px; - list-style: none; - background-color: #f5f5f5; - border-radius: 0; -} -.breadcrumb>li { - display: inline-block; -} -.breadcrumb>li+li:before { - padding: 0 5px; - color: #999; - content: "/\00a0"} -.breadcrumb>.active { - color: #333; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 21px 0; - border-radius: 0; -} -.pagination>li { - display: inline; -} -.pagination>li>a, .pagination>li>span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.428571429; - text-decoration: none; - background-color: transparent; - border: 1px solid transparent; -} -.pagination>li:first-child>a, .pagination>li:first-child>span { - margin-left: 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.pagination>li:last-child>a, .pagination>li:last-child>span { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus { - background-color: #eee; -} -.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus { - z-index: 2; - color: #fff; - cursor: default; - background-color: #008cba; - border-color: #008cba; -} -.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus { - color: #999; - cursor: not-allowed; - background-color: transparent; - border-color: transparent; -} -.pagination-lg>li>a, .pagination-lg>li>span { - padding: 10px 16px; - font-size: 19px; -} -.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.pagination-sm>li>a, .pagination-sm>li>span { - padding: 5px 10px; - font-size: 12px; -} -.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.pager { - padding-left: 0; - margin: 21px 0; - text-align: center; - list-style: none; -} -.pager:before, .pager:after { - display: table; - content: " "} -.pager:after { - clear: both; -} -.pager:before, .pager:after { - display: table; - content: " "} -.pager:after { - clear: both; -} -.pager:before, .pager:after { - display: table; - content: " "} -.pager:after { - clear: both; -} -.pager:before, .pager:after { - display: table; - content: " "} -.pager:after { - clear: both; -} -.pager:before, .pager:after { - display: table; - content: " "} -.pager:after { - clear: both; -} -.pager li { - display: inline; -} -.pager li>a, .pager li>span { - display: inline-block; - padding: 5px 14px; - background-color: transparent; - border: 1px solid transparent; - border-radius: 3px; -} -.pager li>a:hover, .pager li>a:focus { - text-decoration: none; - background-color: #eee; -} -.pager .next>a, .pager .next>span { - float: right; -} -.pager .previous>a, .pager .previous>span { - float: left; -} -.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span { - color: #999; - cursor: not-allowed; - background-color: transparent; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -.label[href]:hover, .label[href]:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #999; -} -.label-default[href]:hover, .label-default[href]:focus { - background-color: #808080; -} -.label-primary { - background-color: #008cba; -} -.label-primary[href]:hover, .label-primary[href]:focus { - background-color: #006687; -} -.label-success { - background-color: #43ac6a; -} -.label-success[href]:hover, .label-success[href]:focus { - background-color: #358753; -} -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; -} -.label-warning { - background-color: #e99002; -} -.label-warning[href]:hover, .label-warning[href]:focus { - background-color: #b67102; -} -.label-danger { - background-color: #f04124; -} -.label-danger[href]:hover, .label-danger[href]:focus { - background-color: #d32a0e; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #777; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - background-color: #e7e7e7; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -a.list-group-item.active>.badge, .nav-pills>.active>a>.badge { - color: #008cba; - background-color: #fff; -} -.nav-pills>li>a>.badge { - margin-left: 3px; -} -.jumbotron { - padding: 30px; - margin-bottom: 30px; - font-size: 23px; - font-weight: 200; - line-height: 2.1428571435; - color: inherit; - background-color: #fafafa; -} -.jumbotron h1, .jumbotron .h1 { - line-height: 1; - color: inherit; -} -.jumbotron p { - line-height: 1.4; -} -.container .jumbotron { - border-radius: 0; -} -.jumbotron .container { - max-width: 100%} -@media screen and (min-width:768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; -} -.container .jumbotron { - padding-right: 60px; - padding-left: 60px; -} -.jumbotron h1, .jumbotron .h1 { - font-size: 67.5px; -} -}.thumbnail { - display: block; - padding: 4px; - margin-bottom: 21px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 0; - -webkit-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} -.thumbnail>img, .thumbnail a>img { - display: block; - height: auto; - max-width: 100%; - margin-right: auto; - margin-left: auto; -} -a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { - border-color: #008cba; -} -.thumbnail .caption { - padding: 9px; - color: #222; -} -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; - } - - .alert-heading { - color: inherit; - } - - .alert-link { - font-weight: 700; - } - - .alert-dismissible { - padding-right: 4rem; - } - - .alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; - } - - .alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; - } - - .alert-primary hr { - border-top-color: #9fcdff; - } - - .alert-primary .alert-link { - color: #002752; - } - - .alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; - } - - .alert-secondary hr { - border-top-color: #c8cbcf; - } - - .alert-secondary .alert-link { - color: #202326; - } - - .alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; - } - - .alert-success hr { - border-top-color: #b1dfbb; - } - - .alert-success .alert-link { - color: #0b2e13; - } - - .alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; - } - - .alert-info hr { - border-top-color: #abdde5; - } - - .alert-info .alert-link { - color: #062c33; - } - - .alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; - } - - .alert-warning hr { - border-top-color: #ffe8a1; - } - - .alert-warning .alert-link { - color: #533f03; - } - - .alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; - } - - .alert-danger hr { - border-top-color: #f1b0b7; - } - - .alert-danger .alert-link { - color: #491217; - } - - .alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; - } - - .alert-light hr { - border-top-color: #ececf6; - } - - .alert-light .alert-link { - color: #686868; - } - - .alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; - } - - .alert-dark hr { - border-top-color: #b9bbbe; - } - - .alert-dark .alert-link { - color: #040505; - } - - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; -} -to { - background-position: 0 0; -} -}@keyframes progress-bar-stripes { - from { - background-position: 40px 0; -} -to { - background-position: 0 0; -} -}.progress { - height: 21px; - margin-bottom: 21px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 0; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -} -.progress-bar { - float: left; - width: 0; - height: 100%; - font-size: 12px; - line-height: 21px; - color: #fff; - text-align: center; - background-color: #008cba; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width .6s ease; - transition: width .6s ease; -} -.progress-striped .progress-bar { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; -} -.progress.active .progress-bar { - -webkit-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-bar-success { - background-color: #43ac6a; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #e99002; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #f04124; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.media, .media-body { - overflow: hidden; - zoom: 1; -} -.media, .media .media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media-object { - display: block; -} -.media-heading { - margin: 0 0 5px; -} -.media>.pull-left { - margin-right: 10px; -} -.media>.pull-right { - margin-left: 10px; -} -.media-list { - padding-left: 0; - list-style: none; -} -.list-group { - padding-left: 0; - margin-bottom: 20px; -} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.list-group-item>.badge { - float: right; -} -.list-group-item>.badge+.badge { - margin-right: 5px; -} -a.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, a.list-group-item:focus { - text-decoration: none; - background-color: #f5f5f5; -} -a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #008cba; - border-color: #008cba; -} -a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hover .list-group-item-heading, a.list-group-item.active:focus .list-group-item-heading { - color: inherit; -} -a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text { - color: #87e1ff; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 21px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 0; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} -.panel-body { - padding: 15px; -} -.panel-body:before, .panel-body:after { - display: table; - content: " "} -.panel-body:after { - clear: both; -} -.panel-body:before, .panel-body:after { - display: table; - content: " "} -.panel-body:after { - clear: both; -} -.panel-body:before, .panel-body:after { - display: table; - content: " "} -.panel-body:after { - clear: both; -} -.panel-body:before, .panel-body:after { - display: table; - content: " "} -.panel-body:after { - clear: both; -} -.panel-body:before, .panel-body:after { - display: table; - content: " "} -.panel-body:after { - clear: both; -} -.panel>.list-group { - margin-bottom: 0; -} -.panel>.list-group .list-group-item { - border-width: 1px 0; -} -.panel>.list-group .list-group-item:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.panel>.list-group .list-group-item:last-child { - border-bottom: 0; -} -.panel-heading+.list-group .list-group-item:first-child { - border-top-width: 0; -} -.panel>.table, .panel>.table-responsive>.table { - margin-bottom: 0; -} -.panel>.panel-body+.table, .panel>.panel-body+.table-responsive { - border-top: 1px solid #ddd; -} -.panel>.table>tbody:first-child th, .panel>.table>tbody:first-child td { - border-top: 0; -} -.panel>.table-bordered, .panel>.table-responsive>.table-bordered { - border: 0; -} -.panel>.table-bordered>thead>tr>th:first-child, .panel>.table-responsive>.table-bordered>thead>tr>th:first-child, .panel>.table-bordered>tbody>tr>th:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, .panel>.table-bordered>tfoot>tr>th:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, .panel>.table-bordered>thead>tr>td:first-child, .panel>.table-responsive>.table-bordered>thead>tr>td:first-child, .panel>.table-bordered>tbody>tr>td:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, .panel>.table-bordered>tfoot>tr>td:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child { - border-left: 0; -} -.panel>.table-bordered>thead>tr>th:last-child, .panel>.table-responsive>.table-bordered>thead>tr>th:last-child, .panel>.table-bordered>tbody>tr>th:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, .panel>.table-bordered>tfoot>tr>th:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, .panel>.table-bordered>thead>tr>td:last-child, .panel>.table-responsive>.table-bordered>thead>tr>td:last-child, .panel>.table-bordered>tbody>tr>td:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, .panel>.table-bordered>tfoot>tr>td:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child { - border-right: 0; -} -.panel>.table-bordered>thead>tr:last-child>th, .panel>.table-responsive>.table-bordered>thead>tr:last-child>th, .panel>.table-bordered>tbody>tr:last-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, .panel>.table-bordered>tfoot>tr:last-child>th, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th, .panel>.table-bordered>thead>tr:last-child>td, .panel>.table-responsive>.table-bordered>thead>tr:last-child>td, .panel>.table-bordered>tbody>tr:last-child>td, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, .panel>.table-bordered>tfoot>tr:last-child>td, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td { - border-bottom: 0; -} -.panel>.table-responsive { - margin-bottom: 0; - border: 0; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: -1; - border-top-left-radius: -1; -} -.panel-heading>.dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 17px; - color: inherit; -} -.panel-title>a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: -1; - border-bottom-left-radius: -1; -} -.panel-group .panel { - margin-bottom: 0; - overflow: hidden; - border-radius: 0; -} -.panel-group .panel+.panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading+.panel-collapse .panel-body { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer+.panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} -.panel-default { - border-color: #ddd; -} -.panel-default>.panel-heading { - color: #333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default>.panel-heading+.panel-collapse .panel-body { - border-top-color: #ddd; -} -.panel-default>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #ddd; -} -.panel-primary { - border-color: #008cba; -} -.panel-primary>.panel-heading { - color: #fff; - background-color: #008cba; - border-color: #008cba; -} -.panel-primary>.panel-heading+.panel-collapse .panel-body { - border-top-color: #008cba; -} -.panel-primary>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #008cba; -} -.panel-success { - border-color: #3c9a5f; -} -.panel-success>.panel-heading { - color: #43ac6a; - background-color: #dff0d8; - border-color: #3c9a5f; -} -.panel-success>.panel-heading+.panel-collapse .panel-body { - border-top-color: #3c9a5f; -} -.panel-success>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #3c9a5f; -} -.panel-warning { - border-color: #d08002; -} -.panel-warning>.panel-heading { - color: #e99002; - background-color: #fcf8e3; - border-color: #d08002; -} -.panel-warning>.panel-heading+.panel-collapse .panel-body { - border-top-color: #d08002; -} -.panel-warning>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #d08002; -} -.panel-danger { - border-color: #ea2f10; -} -.panel-danger>.panel-heading { - color: #f04124; - background-color: #f2dede; - border-color: #ea2f10; -} -.panel-danger>.panel-heading+.panel-collapse .panel-body { - border-top-color: #ea2f10; -} -.panel-danger>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #ea2f10; -} -.panel-info { - border-color: #3db5d8; -} -.panel-info>.panel-heading { - color: #5bc0de; - background-color: #d9edf7; - border-color: #3db5d8; -} -.panel-info>.panel-heading+.panel-collapse .panel-body { - border-top-color: #3db5d8; -} -.panel-info>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #3db5d8; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #fafafa; - border: 1px solid #e8e8e8; - border-radius: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} -.well-lg { - padding: 24px; - border-radius: 0; -} -.well-sm { - padding: 9px; - border-radius: 0; -} -.close { - float: right; - font-size: 22.5px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .2; - filter: alpha(opacity=20); -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - opacity: .5; - filter: alpha(opacity=50); -} -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; -} -.modal-open { - overflow: hidden; -} -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - display: none; - overflow: auto; - overflow-y: scroll; -} -.modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform .3s ease-out; - -moz-transition: -moz-transform .3s ease-out; - -o-transition: -o-transform .3s ease-out; - transition: transform .3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - transform: translate(0, 0); -} -.modal-dialog { - position: relative; - z-index: 1050; - width: auto; - margin: 10px; -} -.modal-content { - position: relative; - background-color: #fff; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0; - outline: 0; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - background-clip: padding-box; -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; - filter: alpha(opacity=0); -} -.modal-backdrop.in { - opacity: .5; - filter: alpha(opacity=50); -} -.modal-header { - min-height: 16.428571429px; - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.428571429; -} -.modal-body { - position: relative; - padding: 20px; -} -.modal-footer { - padding: 19px 20px 20px; - margin-top: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: " "} -.modal-footer:after { - clear: both; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: " "} -.modal-footer:after { - clear: both; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: " "} -.modal-footer:after { - clear: both; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: " "} -.modal-footer:after { - clear: both; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: " "} -.modal-footer:after { - clear: both; -} -.modal-footer .btn+.btn { - margin-bottom: 0; - margin-left: 5px; -} -.modal-footer .btn-group .btn+.btn { - margin-left: -1px; -} -.modal-footer .btn-block+.btn-block { - margin-left: 0; -} -@media screen and (min-width:768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; -} -.modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); -} -}.tooltip { - position: absolute; - z-index: 1030; - display: block; - font-size: 12px; - line-height: 1.4; - opacity: 0; - filter: alpha(opacity=0); - visibility: visible; -} -.tooltip.in { - opacity: .9; - filter: alpha(opacity=90); -} -.tooltip.top { - padding: 5px 0; - margin-top: -3px; -} -.tooltip.right { - padding: 0 5px; - margin-left: 3px; -} -.tooltip.bottom { - padding: 5px 0; - margin-top: 3px; -} -.tooltip.left { - padding: 0 5px; - margin-left: -3px; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - text-decoration: none; - background-color: #333; - border-radius: 0; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-top-color: #333; - border-width: 5px 5px 0; -} -.tooltip.top-left .tooltip-arrow { - bottom: 0; - left: 5px; - border-top-color: #333; - border-width: 5px 5px 0; -} -.tooltip.top-right .tooltip-arrow { - right: 5px; - bottom: 0; - border-top-color: #333; - border-width: 5px 5px 0; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-right-color: #333; - border-width: 5px 5px 5px 0; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-left-color: #333; - border-width: 5px 0 5px 5px; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-bottom-color: #333; - border-width: 0 5px 5px; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - left: 5px; - border-bottom-color: #333; - border-width: 0 5px 5px; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - right: 5px; - border-bottom-color: #333; - border-width: 0 5px 5px; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1010; - display: none; - max-width: 276px; - padding: 1px; - text-align: left; - white-space: normal; - background-color: #333; - border: 1px solid #333; - border: 1px solid transparent; - border-radius: 0; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - background-clip: padding-box; -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 15px; - font-weight: normal; - line-height: 18px; - background-color: #333; - border-bottom: 1px solid #262626; - border-radius: 5px 5px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover .arrow, .popover .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover .arrow { - border-width: 11px; -} -.popover .arrow:after { - border-width: 10px; - content: ""} -.popover.top .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999; - border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; -} -.popover.top .arrow:after { - bottom: 1px; - margin-left: -10px; - border-top-color: #333; - border-bottom-width: 0; - content: " "} -.popover.right .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999; - border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; -} -.popover.right .arrow:after { - bottom: -10px; - left: 1px; - border-right-color: #333; - border-left-width: 0; - content: " "} -.popover.bottom .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-bottom-color: #999; - border-bottom-color: rgba(0, 0, 0, 0.25); - border-top-width: 0; -} -.popover.bottom .arrow:after { - top: 1px; - margin-left: -10px; - border-bottom-color: #333; - border-top-width: 0; - content: " "} -.popover.left .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-left-color: #999; - border-left-color: rgba(0, 0, 0, 0.25); - border-right-width: 0; -} -.popover.left .arrow:after { - right: 1px; - bottom: -10px; - border-left-color: #333; - border-right-width: 0; - content: " "} -.carousel { - position: relative; -} -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner>.item { - position: relative; - display: none; - -webkit-transition: .6s ease-in-out left; - transition: .6s ease-in-out left; -} -.carousel-inner>.item>img, .carousel-inner>.item>a>img { - display: block; - height: auto; - max-width: 100%; - line-height: 1; -} -.carousel-inner>.active, .carousel-inner>.next, .carousel-inner>.prev { - display: block; -} -.carousel-inner>.active { - left: 0; -} -.carousel-inner>.next, .carousel-inner>.prev { - position: absolute; - top: 0; - width: 100%} -.carousel-inner>.next { - left: 100%} -.carousel-inner>.prev { - left: -100%} -.carousel-inner>.next.left, .carousel-inner>.prev.right { - left: 0; -} -.carousel-inner>.active.left { - left: -100%} -.carousel-inner>.active.right { - left: 100%} -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - opacity: .5; - filter: alpha(opacity=50); -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%)); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); -} -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%)); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); -} -.carousel-control:hover, .carousel-control:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: .9; - filter: alpha(opacity=90); -} -.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; -} -.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { - left: 50%} -.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { - right: 50%} -.carousel-control .icon-prev, .carousel-control .icon-next { - width: 20px; - height: 20px; - margin-top: -10px; - margin-left: -10px; - font-family: serif; -} -.carousel-control .icon-prev:before { - content: '\2039'} -.carousel-control .icon-next:before { - content: '\203a'} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; -} -.carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; -} -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-caption .btn { - text-shadow: none; -} -@media screen and (min-width:768px) { - .carousel-control .glyphicons-chevron-left, .carousel-control .glyphicons-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - margin-left: -15px; - font-size: 30px; -} -.carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; -} -.carousel-indicators { - bottom: 20px; -} -}.clearfix:before, .clearfix:after { - display: table; - content: " "} -.clearfix:after { - clear: both; -} -.clearfix:before, .clearfix:after { - display: table; - content: " "} -.clearfix:after { - clear: both; -} -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} -.pull-right { - float: right!important; -} -.pull-left { - float: left!important; -} -.hide { - display: none!important; -} -.show { - display: block!important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none!important; - visibility: hidden!important; -} -.affix { - position: fixed; -} -@-ms-viewport { - width: device-width; -} -.visible-xs, tr.visible-xs, th.visible-xs, td.visible-xs { - display: none!important; -} -@media(max-width:767px) { - .visible-xs { - display: block!important; -} -table.visible-xs { - display: table; -} -tr.visible-xs { - display: table-row!important; -} -th.visible-xs, td.visible-xs { - display: table-cell!important; -} -}@media(min-width:768px) and (max-width:991px) { - .visible-xs.visible-sm { - display: block!important; -} -table.visible-xs.visible-sm { - display: table; -} -tr.visible-xs.visible-sm { - display: table-row!important; -} -th.visible-xs.visible-sm, td.visible-xs.visible-sm { - display: table-cell!important; -} -}@media(min-width:992px) and (max-width:1199px) { - .visible-xs.visible-md { - display: block!important; -} -table.visible-xs.visible-md { - display: table; -} -tr.visible-xs.visible-md { - display: table-row!important; -} -th.visible-xs.visible-md, td.visible-xs.visible-md { - display: table-cell!important; -} -}@media(min-width:1200px) { - .visible-xs.visible-lg { - display: block!important; -} -table.visible-xs.visible-lg { - display: table; -} -tr.visible-xs.visible-lg { - display: table-row!important; -} -th.visible-xs.visible-lg, td.visible-xs.visible-lg { - display: table-cell!important; -} -}.visible-sm, tr.visible-sm, th.visible-sm, td.visible-sm { - display: none!important; -} -@media(max-width:767px) { - .visible-sm.visible-xs { - display: block!important; -} -table.visible-sm.visible-xs { - display: table; -} -tr.visible-sm.visible-xs { - display: table-row!important; -} -th.visible-sm.visible-xs, td.visible-sm.visible-xs { - display: table-cell!important; -} -}@media(min-width:768px) and (max-width:991px) { - .visible-sm { - display: block!important; -} -table.visible-sm { - display: table; -} -tr.visible-sm { - display: table-row!important; -} -th.visible-sm, td.visible-sm { - display: table-cell!important; -} -}@media(min-width:992px) and (max-width:1199px) { - .visible-sm.visible-md { - display: block!important; -} -table.visible-sm.visible-md { - display: table; -} -tr.visible-sm.visible-md { - display: table-row!important; -} -th.visible-sm.visible-md, td.visible-sm.visible-md { - display: table-cell!important; -} -}@media(min-width:1200px) { - .visible-sm.visible-lg { - display: block!important; -} -table.visible-sm.visible-lg { - display: table; -} -tr.visible-sm.visible-lg { - display: table-row!important; -} -th.visible-sm.visible-lg, td.visible-sm.visible-lg { - display: table-cell!important; -} -}.visible-md, tr.visible-md, th.visible-md, td.visible-md { - display: none!important; -} -@media(max-width:767px) { - .visible-md.visible-xs { - display: block!important; -} -table.visible-md.visible-xs { - display: table; -} -tr.visible-md.visible-xs { - display: table-row!important; -} -th.visible-md.visible-xs, td.visible-md.visible-xs { - display: table-cell!important; -} -}@media(min-width:768px) and (max-width:991px) { - .visible-md.visible-sm { - display: block!important; -} -table.visible-md.visible-sm { - display: table; -} -tr.visible-md.visible-sm { - display: table-row!important; -} -th.visible-md.visible-sm, td.visible-md.visible-sm { - display: table-cell!important; -} -}@media(min-width:992px) and (max-width:1199px) { - .visible-md { - display: block!important; -} -table.visible-md { - display: table; -} -tr.visible-md { - display: table-row!important; -} -th.visible-md, td.visible-md { - display: table-cell!important; -} -}@media(min-width:1200px) { - .visible-md.visible-lg { - display: block!important; -} -table.visible-md.visible-lg { - display: table; -} -tr.visible-md.visible-lg { - display: table-row!important; -} -th.visible-md.visible-lg, td.visible-md.visible-lg { - display: table-cell!important; -} -}.visible-lg, tr.visible-lg, th.visible-lg, td.visible-lg { - display: none!important; -} -@media(max-width:767px) { - .visible-lg.visible-xs { - display: block!important; -} -table.visible-lg.visible-xs { - display: table; -} -tr.visible-lg.visible-xs { - display: table-row!important; -} -th.visible-lg.visible-xs, td.visible-lg.visible-xs { - display: table-cell!important; -} -}@media(min-width:768px) and (max-width:991px) { - .visible-lg.visible-sm { - display: block!important; -} -table.visible-lg.visible-sm { - display: table; -} -tr.visible-lg.visible-sm { - display: table-row!important; -} -th.visible-lg.visible-sm, td.visible-lg.visible-sm { - display: table-cell!important; -} -}@media(min-width:992px) and (max-width:1199px) { - .visible-lg.visible-md { - display: block!important; -} -table.visible-lg.visible-md { - display: table; -} -tr.visible-lg.visible-md { - display: table-row!important; -} -th.visible-lg.visible-md, td.visible-lg.visible-md { - display: table-cell!important; -} -}@media(min-width:1200px) { - .visible-lg { - display: block!important; -} -table.visible-lg { - display: table; -} -tr.visible-lg { - display: table-row!important; -} -th.visible-lg, td.visible-lg { - display: table-cell!important; -} -}.hidden-xs { - display: block!important; -} -table.hidden-xs { - display: table; -} -tr.hidden-xs { - display: table-row!important; -} -th.hidden-xs, td.hidden-xs { - display: table-cell!important; -} -@media(max-width:767px) { - .hidden-xs, tr.hidden-xs, th.hidden-xs, td.hidden-xs { - display: none!important; -} -}@media(min-width:768px) and (max-width:991px) { - .hidden-xs.hidden-sm, tr.hidden-xs.hidden-sm, th.hidden-xs.hidden-sm, td.hidden-xs.hidden-sm { - display: none!important; -} -}@media(min-width:992px) and (max-width:1199px) { - .hidden-xs.hidden-md, tr.hidden-xs.hidden-md, th.hidden-xs.hidden-md, td.hidden-xs.hidden-md { - display: none!important; -} -}@media(min-width:1200px) { - .hidden-xs.hidden-lg, tr.hidden-xs.hidden-lg, th.hidden-xs.hidden-lg, td.hidden-xs.hidden-lg { - display: none!important; -} -}.hidden-sm { - display: block!important; -} -table.hidden-sm { - display: table; -} -tr.hidden-sm { - display: table-row!important; -} -th.hidden-sm, td.hidden-sm { - display: table-cell!important; -} -@media(max-width:767px) { - .hidden-sm.hidden-xs, tr.hidden-sm.hidden-xs, th.hidden-sm.hidden-xs, td.hidden-sm.hidden-xs { - display: none!important; -} -}@media(min-width:768px) and (max-width:991px) { - .hidden-sm, tr.hidden-sm, th.hidden-sm, td.hidden-sm { - display: none!important; -} -}@media(min-width:992px) and (max-width:1199px) { - .hidden-sm.hidden-md, tr.hidden-sm.hidden-md, th.hidden-sm.hidden-md, td.hidden-sm.hidden-md { - display: none!important; -} -}@media(min-width:1200px) { - .hidden-sm.hidden-lg, tr.hidden-sm.hidden-lg, th.hidden-sm.hidden-lg, td.hidden-sm.hidden-lg { - display: none!important; -} -}.hidden-md { - display: block!important; -} -table.hidden-md { - display: table; -} -tr.hidden-md { - display: table-row!important; -} -th.hidden-md, td.hidden-md { - display: table-cell!important; -} -@media(max-width:767px) { - .hidden-md.hidden-xs, tr.hidden-md.hidden-xs, th.hidden-md.hidden-xs, td.hidden-md.hidden-xs { - display: none!important; -} -}@media(min-width:768px) and (max-width:991px) { - .hidden-md.hidden-sm, tr.hidden-md.hidden-sm, th.hidden-md.hidden-sm, td.hidden-md.hidden-sm { - display: none!important; -} -}@media(min-width:992px) and (max-width:1199px) { - .hidden-md, tr.hidden-md, th.hidden-md, td.hidden-md { - display: none!important; -} -}@media(min-width:1200px) { - .hidden-md.hidden-lg, tr.hidden-md.hidden-lg, th.hidden-md.hidden-lg, td.hidden-md.hidden-lg { - display: none!important; -} -}.hidden-lg { - display: block!important; -} -table.hidden-lg { - display: table; -} -tr.hidden-lg { - display: table-row!important; -} -th.hidden-lg, td.hidden-lg { - display: table-cell!important; -} -@media(max-width:767px) { - .hidden-lg.hidden-xs, tr.hidden-lg.hidden-xs, th.hidden-lg.hidden-xs, td.hidden-lg.hidden-xs { - display: none!important; -} -}@media(min-width:768px) and (max-width:991px) { - .hidden-lg.hidden-sm, tr.hidden-lg.hidden-sm, th.hidden-lg.hidden-sm, td.hidden-lg.hidden-sm { - display: none!important; -} -}@media(min-width:992px) and (max-width:1199px) { - .hidden-lg.hidden-md, tr.hidden-lg.hidden-md, th.hidden-lg.hidden-md, td.hidden-lg.hidden-md { - display: none!important; -} -}@media(min-width:1200px) { - .hidden-lg, tr.hidden-lg, th.hidden-lg, td.hidden-lg { - display: none!important; -} -}.visible-print, tr.visible-print, th.visible-print, td.visible-print { - display: none!important; -} -@media print { - .visible-print { - display: block!important; -} -table.visible-print { - display: table; -} -tr.visible-print { - display: table-row!important; -} -th.visible-print, td.visible-print { - display: table-cell!important; -} -.hidden-print, tr.hidden-print, th.hidden-print, td.hidden-print { - display: none!important; -} -}.navbar { - font-size: 13px; - font-weight: 300; - border: 0; -} -.navbar .navbar-toggle:hover .icon-bar { - background-color: #b3b3b3; -} -.navbar-collapse { - border-top-color: rgba(0, 0, 0, 0.2); - -webkit-box-shadow: none; - box-shadow: none; -} -.navbar .dropdown-menu { - border: 0; -} -.navbar .dropdown-menu>li>a, .navbar .dropdown-menu>li>a:focus { - font-size: 13px; - font-weight: 300; - background-color: transparent; -} -.navbar .dropdown-header { - color: rgba(255, 255, 255, 0.5); -} -.navbar-default .dropdown-menu { - background-color: #333; -} -.navbar-default .dropdown-menu>li>a, .navbar-default .dropdown-menu>li>a:focus { - color: #fff; -} -.navbar-default .dropdown-menu>li>a:hover, .navbar-default .dropdown-menu>.active>a, .navbar-default .dropdown-menu>.active>a:hover { - background-color: #272727; -} -.navbar-inverse .dropdown-menu { - background-color: #008cba; -} -.navbar-inverse .dropdown-menu>li>a, .navbar-inverse .dropdown-menu>li>a:focus { - color: #fff; -} -.navbar-inverse .dropdown-menu>li>a:hover, .navbar-inverse .dropdown-menu>.active>a, .navbar-inverse .dropdown-menu>.active>a:hover { - background-color: #006687; -} -.btn { - padding: 14px 28px; -} -.btn-lg { - padding: 16px 32px; -} -.btn-sm { - padding: 8px 16px; -} -.btn-xs { - padding: 4px 8px; -} -.btn-group .btn~.dropdown-toggle { - padding-right: 16px; - padding-left: 16px; -} -.btn-group .dropdown-menu { - border-top-width: 0; -} -.btn-group.dropup .dropdown-menu { - margin-bottom: 0; - border-top-width: 1px; - border-bottom-width: 0; -} -.btn-group .dropdown-toggle.btn-default~.dropdown-menu { - background-color: #e7e7e7; - border-color: #dadada; -} -.btn-group .dropdown-toggle.btn-default~.dropdown-menu>li>a { - color: #333; -} -.btn-group .dropdown-toggle.btn-default~.dropdown-menu>li>a:hover { - background-color: #d3d3d3; -} -.btn-group .dropdown-toggle.btn-primary~.dropdown-menu { - background-color: #008cba; - border-color: #0079a1; -} -.btn-group .dropdown-toggle.btn-primary~.dropdown-menu>li>a { - color: #fff; -} -.btn-group .dropdown-toggle.btn-primary~.dropdown-menu>li>a:hover { - background-color: #006d91; -} -.btn-group .dropdown-toggle.btn-success~.dropdown-menu { - background-color: #43ac6a; - border-color: #3c9a5f; -} -.btn-group .dropdown-toggle.btn-success~.dropdown-menu>li>a { - color: #fff; -} -.btn-group .dropdown-toggle.btn-success~.dropdown-menu>li>a:hover { - background-color: #388f58; -} -.btn-group .dropdown-toggle.btn-info~.dropdown-menu { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-group .dropdown-toggle.btn-info~.dropdown-menu>li>a { - color: #fff; -} -.btn-group .dropdown-toggle.btn-info~.dropdown-menu>li>a:hover { - background-color: #39b3d7; -} -.btn-group .dropdown-toggle.btn-warning~.dropdown-menu { - background-color: #e99002; - border-color: #d08002; -} -.btn-group .dropdown-toggle.btn-warning~.dropdown-menu>li>a { - color: #fff; -} -.btn-group .dropdown-toggle.btn-warning~.dropdown-menu>li>a:hover { - background-color: #c17702; -} -.btn-group .dropdown-toggle.btn-danger~.dropdown-menu { - background-color: #f04124; - border-color: #ea2f10; -} -.btn-group .dropdown-toggle.btn-danger~.dropdown-menu>li>a { - color: #fff; -} -.btn-group .dropdown-toggle.btn-danger~.dropdown-menu>li>a:hover { - background-color: #dc2c0f; -} -.lead { - color: #6f6f6f; -} -cite { - font-style: italic; -} -blockquote { - color: #6f6f6f; - border-left-width: 1px; -} -blockquote.pull-right { - border-right-width: 1px; -} -blockquote small { - font-size: 12px; - font-weight: 300; -} -table { - font-size: 12px; -} -input, .form-control { - padding: 7px; - font-size: 12px; -} -label, .control-label, .help-block, .checkbox, .radio { - font-size: 12px; - font-weight: normal; -} -.form-group .btn, .input-group-addon, .input-group-btn .btn { - padding: 8px 14px; - font-size: 12px; -} -.nav .open>a, .nav .open>a:hover, .nav .open>a:focus { - border-color: transparent; -} -.nav-tabs>li>a { - color: #222; - background-color: #e7e7e7; -} -.nav-tabs .caret { - border-top-color: #222; - border-bottom-color: #222; -} -.nav-pills { - font-weight: 300; -} -.breadcrumb { - font-size: 10px; - font-weight: 300; - text-transform: uppercase; - border: 1px solid #ddd; - border-radius: 3px; -} -.pagination { - font-size: 12px; - font-weight: 300; - color: #999; -} -.pagination>li>a, .pagination>li>span { - margin-left: 4px; - color: #999; -} -.pagination>.active>a, .pagination>.active>span { - color: #fff; -} -.pagination>li>a, .pagination>li:first-child>a, .pagination>li:last-child>a, .pagination>li>span, .pagination>li:first-child>span, .pagination>li:last-child>span { - border-radius: 3px; -} -.pagination-lg>li>a { - padding-right: 22px; - padding-left: 22px; -} -.pagination-sm>li>a { - padding: 0 5px; -} -.pager { - font-size: 12px; - font-weight: 300; - color: #999; -} -.list-group { - font-size: 12px; - font-weight: 300; -} -.label { - padding-right: 1em; - padding-left: 1em; - font-weight: 300; - border-radius: 0; -} -.label-default { - color: #333; - background-color: #e7e7e7; -} -.badge { - font-weight: 300; -} -.progress { - height: 22px; - padding: 2px; - background-color: #f6f6f6; - border: 1px solid #ccc; - -webkit-box-shadow: none; - box-shadow: none; -} -.dropdown-menu { - padding: 0; - margin-top: 0; - font-size: 12px; -} -.dropdown-menu>li>a { - padding: 12px 15px; -} -.dropdown-header { - padding-right: 15px; - padding-left: 15px; - font-size: 9px; - text-transform: uppercase; -} -.popover { - font-size: 12px; - font-weight: 300; - color: #fff; -} -.panel-heading, .panel-footer { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.clearfix:before, .clearfix:after { - display: table; - content: " "} -.clearfix:after { - clear: both; -} -.clearfix:before, .clearfix:after { - display: table; - content: " "} -.clearfix:after { - clear: both; -} -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} -.pull-right { - float: right!important; -} -.pull-left { - float: left!important; -} -.hide { - display: none!important; -} -.show { - display: block!important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none!important; - visibility: hidden!important; -} -.affix { - position: fixed; -} diff --git a/themes/dark/css/bootstrap-custom.min.css b/themes/dark/css/bootstrap-custom.min.css deleted file mode 100644 index 7ecb663..0000000 --- a/themes/dark/css/bootstrap-custom.min.css +++ /dev/null @@ -1,6735 +0,0 @@ -/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section, -summary { - display:block -} -audio, -canvas, -video { - display:inline-block -} -audio:not([controls]) { - display:none; - height:0 -} -[hidden], -template { - display:none -} -html { - font-family:sans-serif; - -webkit-text-size-adjust:100%; - -ms-text-size-adjust:100% -} -body { - margin:0 -} -a { - background:transparent -} -a:focus { - outline:thin dotted -} -a:active, -a:hover { - outline:0 -} -h1 { - margin:.67em 0; - font-size:2em -} -abbr[title] { - border-bottom:1px dotted -} -b, -strong { - font-weight:bold -} -dfn { - font-style:italic -} -hr { - height:0; - -moz-box-sizing:content-box; - box-sizing:content-box -} -mark { - color:#000; - background:#ff0 -} -code, -kbd, -pre, -samp { - font-family:Hack,monospace,serif; - font-size:1em -} -pre { - white-space:pre-wrap -} -q { - quotes:"\201C" "\201D" "\2018" "\2019" -} -small { - font-size:80% -} -sub, -sup { - position:relative; - font-size:75%; - line-height:0; - vertical-align:baseline -} -sup { - top:-0.5em -} -sub { - bottom:-0.25em -} -img { - border:0 -} -svg:not(:root) { - overflow:hidden -} -figure { - margin:0 -} -fieldset { - padding:.35em .625em .75em; - margin:0 2px; - border:1px solid silver -} -legend { - padding:0; - border:0 -} -button, -input, -select, -textarea { - margin:0; - font-family:inherit; - font-size:100% -} -button, -input { - line-height:normal -} -button, -select { - text-transform:none -} -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - cursor:pointer; - -webkit-appearance:button -} -button[disabled], -html input[disabled] { - cursor:default -} -input[type="checkbox"], -input[type="radio"] { - padding:0; - box-sizing:border-box -} -input[type="search"] { - -webkit-box-sizing:content-box; - -moz-box-sizing:content-box; - box-sizing:content-box; - -webkit-appearance:textfield -} -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance:none -} -button::-moz-focus-inner, -input::-moz-focus-inner { - padding:0; - border:0 -} -textarea { - overflow:auto; - vertical-align:top -} -table { - border-collapse:collapse; - border-spacing:0 -} -@media print { - * { - color:#000 !important; - text-shadow:none !important; - background:transparent !important; - box-shadow:none !important - } - a, - a:visited { - text-decoration:underline - } - a[href]:after { - content:" (" attr(href) ")" - } - abbr[title]:after { - content:" (" attr(title) ")" - } - a[href^="javascript:"]:after, - a[href^="#"]:after { - content:"" - } - pre, - blockquote { - border:1px solid #999; - page-break-inside:avoid - } - thead { - display:table-header-group - } - tr, - img { - page-break-inside:avoid - } - img { - max-width:100% !important - } - @page { - margin:2cm .5cm - } - p, - h2, - h3 { - orphans:3; - widows:3 - } - h2, - h3 { - page-break-after:avoid - } - select { - background:#fff !important - } - .navbar { - display:none - } - .table td, - .table th { - background-color:#fff !important - } - .btn>.caret, - .dropup>.btn>.caret { - border-top-color:#000 !important - } - .label { - border:1px solid #000 - } - .table { - border-collapse:collapse !important - } - .table-bordered th, - .table-bordered td { - border:1px solid #ddd !important - } -} -*, -*:before, -*:after { - -webkit-box-sizing:border-box; - -moz-box-sizing:border-box; - box-sizing:border-box -} -html { - font-size:62.5%; - -webkit-tap-highlight-color:rgba(0,0,0,0) -} -body { - font-family:Merriweather,Georgia,serif; - font-size:14px; - line-height:1.428571429; - color:#222; - background-color:#fff -} -input, -button, -select, -textarea { - font-family:inherit; - font-size:inherit; - line-height:inherit -} -a { - color:#008cba; - text-decoration:none -} -a:hover, -a:focus { - color:#00526e; - text-decoration:underline -} -a:focus { - outline:thin dotted; - outline:5px auto -webkit-focus-ring-color; - outline-offset:-2px -} -img { - vertical-align:middle -} -.img-responsive { - display:block; - height:auto; - max-width:100% -} -.img-rounded { - border-radius:0 -} -.img-thumbnail { - display:inline-block; - height:auto; - max-width:100%; - padding:4px; - line-height:1.428571429; - background-color:#fff; - border:1px solid #ddd; - border-radius:0; - -webkit-transition:all .2s ease-in-out; - transition:all .2s ease-in-out -} -.img-circle { - border-radius:50% -} -hr { - margin-top:21px; - margin-bottom:21px; - border:0; - border-top:1px solid #ddd -} -.sr-only { - position:absolute; - width:1px; - height:1px; - padding:0; - margin:-1px; - overflow:hidden; - clip:rect(0,0,0,0); - border:0 -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; - font-weight:300; - line-height:1.1; - color:inherit -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight:normal; - line-height:1; - color:#999 -} -h1, -h2, -h3 { - margin-top:21px; - margin-bottom:10.5px -} -h1 small, -h2 small, -h3 small, -h1 .small, -h2 .small, -h3 .small { - font-size:65% -} -h4, -h5, -h6 { - margin-top:10.5px; - margin-bottom:10.5px -} -h4 small, -h5 small, -h6 small, -h4 .small, -h5 .small, -h6 .small { - font-size:75% -} -h1, -.h1 { - font-size:39px -} -h2, -.h2 { - font-size:32px -} -h3, -.h3 { - font-size:26px -} -h4, -.h4 { - font-size:19px -} -h5, -.h5 { - font-size:15px -} -h6, -.h6 { - font-size:13px -} -p { - margin:0 20px 10.5px -} -.lead { - margin-bottom:21px; - font-size:17px; - font-weight:200; - line-height:1.4 -} -@media(min-width:768px) { - .lead { - font-size:22.5px - } -} -small, -.small { - font-size:85% -} -cite { - font-style:normal -} -.text-muted { - color:#999 -} -.text-primary { - color:#008cba -} -.text-primary:hover { - color:#006687 -} -.text-warning { - color:#e99002 -} -.text-warning:hover { - color:#b67102 -} -.text-danger { - color:#f04124 -} -.text-danger:hover { - color:#d32a0e -} -.text-success { - color:#43ac6a -} -.text-success:hover { - color:#358753 -} -.text-info { - color:#5bc0de -} -.text-info:hover { - color:#31b0d5 -} -.text-left { - text-align:left -} -.text-right { - text-align:right -} -.text-center { - text-align:center -} -.page-header { - padding-bottom:9.5px; - margin:42px 0 21px; - border-bottom:1px solid #ddd -} -ul, -ol { - margin-top:0; - margin-bottom:10.5px -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom:0 -} -.list-unstyled { - padding-left:0; - list-style:none -} -.list-inline { - padding-left:0; - list-style:none -} -.list-inline>li { - display:inline-block; - padding-right:5px; - padding-left:5px -} -.list-inline>li:first-child { - padding-left:0 -} -dl { - margin-top:0; - margin-bottom:21px -} -dt, -dd { - line-height:1.428571429 -} -dt { - font-weight:bold -} -dd { - margin-left:0 -} -@media(min-width:768px) { - .dl-horizontal dt { - float:left; - width:160px; - overflow:hidden; - clear:left; - text-align:right; - text-overflow:ellipsis; - white-space:nowrap - } - .dl-horizontal dd { - margin-left:180px - } - .dl-horizontal dd:before, - .dl-horizontal dd:after { - display:table; - content:" " - } - .dl-horizontal dd:after { - clear:both - } - .dl-horizontal dd:before, - .dl-horizontal dd:after { - display:table; - content:" " - } - .dl-horizontal dd:after { - clear:both - } - .dl-horizontal dd:before, - .dl-horizontal dd:after { - display:table; - content:" " - } - .dl-horizontal dd:after { - clear:both - } - .dl-horizontal dd:before, - .dl-horizontal dd:after { - display:table; - content:" " - } - .dl-horizontal dd:after { - clear:both - } - .dl-horizontal dd:before, - .dl-horizontal dd:after { - display:table; - content:" " - } - .dl-horizontal dd:after { - clear:both - } -} -abbr[title], -abbr[data-original-title] { - cursor:help; - border-bottom:1px dotted #999 -} -.initialism { - font-size:90%; - text-transform:uppercase -} -blockquote { - padding:10.5px 21px; - margin:0 0 21px; - border-left:5px solid #ddd -} -blockquote p { - font-size:18.75px; - font-weight:300; - line-height:1.25 -} -blockquote p:last-child { - margin-bottom:0 -} -blockquote small, -blockquote .small { - display:block; - line-height:1.428571429; - color:#6f6f6f -} -blockquote small:before, -blockquote .small:before { - content:'\2014 \00A0' -} -blockquote.pull-right { - padding-right:15px; - padding-left:0; - border-right:5px solid #ddd; - border-left:0 -} -blockquote.pull-right p, -blockquote.pull-right small, -blockquote.pull-right .small { - text-align:right -} -blockquote.pull-right small:before, -blockquote.pull-right .small:before { - content:'' -} -blockquote.pull-right small:after, -blockquote.pull-right .small:after { - content:'\00A0 \2014' -} -blockquote:before, -blockquote:after { - content:"" -} -address { - margin-bottom:21px; - font-style:normal; - line-height:1.428571429 -} -code, -kbd, -pre, -samp { - font-family:Hack,Menlo,Monaco,Consolas,"Courier New",monospace -} -code { - padding:2px 4px; - font-size:90%; - color:#c7254e; - white-space:nowrap; - background-color:#f9f2f4; - border-radius:0 -} -pre { - display:block; - margin:0 20px 10.5px; - font-size:14px; - line-height:1.428571429; - color:#333; - word-break:break-all; - word-wrap:break-word; - background-color:#f5f5f5; - border:1px solid #000000; - border-radius: 3px -} -pre code { - padding:0; - font-size:inherit; - color:inherit; - white-space:pre-wrap; - background-color:transparent; - border-radius: 2px -} -.pre-scrollable { - max-height:340px; - overflow-y:scroll -} -.container { - padding-right:15px; - padding-left:15px; - margin-right:auto; - margin-left:auto -} -.container:before, -.container:after { - display:table; - content:" " -} -.container:after { - clear:both -} -.container:before, -.container:after { - display:table; - content:" " -} -.container:after { - clear:both -} -.container:before, -.container:after { - display:table; - content:" " -} -.container:after { - clear:both -} -.container:before, -.container:after { - display:table; - content:" " -} -.container:after { - clear:both -} -.container:before, -.container:after { - display:table; - content:" " -} -.container:after { - clear:both -} -@media(min-width:768px) { - .container { - width:750px - } -} -@media(min-width:992px) { - .container { - width:970px - } -} -@media(min-width:1200px) { - .container { - width:1170px - } -} -.row { - margin-right:-15px; - margin-left:-15px -} -.row:before, -.row:after { - display:table; - content:" " -} -.row:after { - clear:both -} -.row:before, -.row:after { - display:table; - content:" " -} -.row:after { - clear:both -} -.row:before, -.row:after { - display:table; - content:" " -} -.row:after { - clear:both -} -.row:before, -.row:after { - display:table; - content:" " -} -.row:after { - clear:both -} -.row:before, -.row:after { - display:table; - content:" " -} -.row:after { - clear:both -} -.col-xs-1, -.col-sm-1, -.col-md-1, -.col-lg-1, -.col-xs-2, -.col-sm-2, -.col-md-2, -.col-lg-2, -.col-xs-3, -.col-sm-3, -.col-md-3, -.col-lg-3, -.col-xs-4, -.col-sm-4, -.col-md-4, -.col-lg-4, -.col-xs-5, -.col-sm-5, -.col-md-5, -.col-lg-5, -.col-xs-6, -.col-sm-6, -.col-md-6, -.col-lg-6, -.col-xs-7, -.col-sm-7, -.col-md-7, -.col-lg-7, -.col-xs-8, -.col-sm-8, -.col-md-8, -.col-lg-8, -.col-xs-9, -.col-sm-9, -.col-md-9, -.col-lg-9, -.col-xs-10, -.col-sm-10, -.col-md-10, -.col-lg-10, -.col-xs-11, -.col-sm-11, -.col-md-11, -.col-lg-11, -.col-xs-12, -.col-sm-12, -.col-md-12, -.col-lg-12 { - position:relative; - min-height:1px; - padding-right:15px; - padding-left:15px -} -.col-xs-1, -.col-xs-2, -.col-xs-3, -.col-xs-4, -.col-xs-5, -.col-xs-6, -.col-xs-7, -.col-xs-8, -.col-xs-9, -.col-xs-10, -.col-xs-11, -.col-xs-12 { - float:left -} -.col-xs-12 { - width:100% -} -.col-xs-11 { - width:91.66666666666666% -} -.col-xs-10 { - width:83.33333333333334% -} -.col-xs-9 { - width:75% -} -.col-xs-8 { - width:66.66666666666666% -} -.col-xs-7 { - width:58.333333333333336% -} -.col-xs-6 { - width:50% -} -.col-xs-5 { - width:41.66666666666667% -} -.col-xs-4 { - width:33.33333333333333% -} -.col-xs-3 { - width:25% -} -.col-xs-2 { - width:16.666666666666664% -} -.col-xs-1 { - width:8.333333333333332% -} -.col-xs-pull-12 { - right:100% -} -.col-xs-pull-11 { - right:91.66666666666666% -} -.col-xs-pull-10 { - right:83.33333333333334% -} -.col-xs-pull-9 { - right:75% -} -.col-xs-pull-8 { - right:66.66666666666666% -} -.col-xs-pull-7 { - right:58.333333333333336% -} -.col-xs-pull-6 { - right:50% -} -.col-xs-pull-5 { - right:41.66666666666667% -} -.col-xs-pull-4 { - right:33.33333333333333% -} -.col-xs-pull-3 { - right:25% -} -.col-xs-pull-2 { - right:16.666666666666664% -} -.col-xs-pull-1 { - right:8.333333333333332% -} -.col-xs-pull-0 { - right:0 -} -.col-xs-push-12 { - left:100% -} -.col-xs-push-11 { - left:91.66666666666666% -} -.col-xs-push-10 { - left:83.33333333333334% -} -.col-xs-push-9 { - left:75% -} -.col-xs-push-8 { - left:66.66666666666666% -} -.col-xs-push-7 { - left:58.333333333333336% -} -.col-xs-push-6 { - left:50% -} -.col-xs-push-5 { - left:41.66666666666667% -} -.col-xs-push-4 { - left:33.33333333333333% -} -.col-xs-push-3 { - left:25% -} -.col-xs-push-2 { - left:16.666666666666664% -} -.col-xs-push-1 { - left:8.333333333333332% -} -.col-xs-push-0 { - left:0 -} -.col-xs-offset-12 { - margin-left:100% -} -.col-xs-offset-11 { - margin-left:91.66666666666666% -} -.col-xs-offset-10 { - margin-left:83.33333333333334% -} -.col-xs-offset-9 { - margin-left:75% -} -.col-xs-offset-8 { - margin-left:66.66666666666666% -} -.col-xs-offset-7 { - margin-left:58.333333333333336% -} -.col-xs-offset-6 { - margin-left:50% -} -.col-xs-offset-5 { - margin-left:41.66666666666667% -} -.col-xs-offset-4 { - margin-left:33.33333333333333% -} -.col-xs-offset-3 { - margin-left:25% -} -.col-xs-offset-2 { - margin-left:16.666666666666664% -} -.col-xs-offset-1 { - margin-left:8.333333333333332% -} -.col-xs-offset-0 { - margin-left:0 -} -@media(min-width:768px) { - .col-sm-1, - .col-sm-2, - .col-sm-3, - .col-sm-4, - .col-sm-5, - .col-sm-6, - .col-sm-7, - .col-sm-8, - .col-sm-9, - .col-sm-10, - .col-sm-11, - .col-sm-12 { - float:left - } - .col-sm-12 { - width:100% - } - .col-sm-11 { - width:91.66666666666666% - } - .col-sm-10 { - width:83.33333333333334% - } - .col-sm-9 { - width:75% - } - .col-sm-8 { - width:66.66666666666666% - } - .col-sm-7 { - width:58.333333333333336% - } - .col-sm-6 { - width:50% - } - .col-sm-5 { - width:41.66666666666667% - } - .col-sm-4 { - width:33.33333333333333% - } - .col-sm-3 { - width:25% - } - .col-sm-2 { - width:16.666666666666664% - } - .col-sm-1 { - width:8.333333333333332% - } - .col-sm-pull-12 { - right:100% - } - .col-sm-pull-11 { - right:91.66666666666666% - } - .col-sm-pull-10 { - right:83.33333333333334% - } - .col-sm-pull-9 { - right:75% - } - .col-sm-pull-8 { - right:66.66666666666666% - } - .col-sm-pull-7 { - right:58.333333333333336% - } - .col-sm-pull-6 { - right:50% - } - .col-sm-pull-5 { - right:41.66666666666667% - } - .col-sm-pull-4 { - right:33.33333333333333% - } - .col-sm-pull-3 { - right:25% - } - .col-sm-pull-2 { - right:16.666666666666664% - } - .col-sm-pull-1 { - right:8.333333333333332% - } - .col-sm-pull-0 { - right:0 - } - .col-sm-push-12 { - left:100% - } - .col-sm-push-11 { - left:91.66666666666666% - } - .col-sm-push-10 { - left:83.33333333333334% - } - .col-sm-push-9 { - left:75% - } - .col-sm-push-8 { - left:66.66666666666666% - } - .col-sm-push-7 { - left:58.333333333333336% - } - .col-sm-push-6 { - left:50% - } - .col-sm-push-5 { - left:41.66666666666667% - } - .col-sm-push-4 { - left:33.33333333333333% - } - .col-sm-push-3 { - left:25% - } - .col-sm-push-2 { - left:16.666666666666664% - } - .col-sm-push-1 { - left:8.333333333333332% - } - .col-sm-push-0 { - left:0 - } - .col-sm-offset-12 { - margin-left:100% - } - .col-sm-offset-11 { - margin-left:91.66666666666666% - } - .col-sm-offset-10 { - margin-left:83.33333333333334% - } - .col-sm-offset-9 { - margin-left:75% - } - .col-sm-offset-8 { - margin-left:66.66666666666666% - } - .col-sm-offset-7 { - margin-left:58.333333333333336% - } - .col-sm-offset-6 { - margin-left:50% - } - .col-sm-offset-5 { - margin-left:41.66666666666667% - } - .col-sm-offset-4 { - margin-left:33.33333333333333% - } - .col-sm-offset-3 { - margin-left:25% - } - .col-sm-offset-2 { - margin-left:16.666666666666664% - } - .col-sm-offset-1 { - margin-left:8.333333333333332% - } - .col-sm-offset-0 { - margin-left:0 - } -} -@media(min-width:992px) { - .col-md-1, - .col-md-2, - .col-md-3, - .col-md-4, - .col-md-5, - .col-md-6, - .col-md-7, - .col-md-8, - .col-md-9, - .col-md-10, - .col-md-11, - .col-md-12 { - float:left - } - .col-md-12 { - width:100% - } - .col-md-11 { - width:91.66666666666666% - } - .col-md-10 { - width:83.33333333333334% - } - .col-md-9 { - width:75% - } - .col-md-8 { - width:66.66666666666666% - } - .col-md-7 { - width:58.333333333333336% - } - .col-md-6 { - width:50% - } - .col-md-5 { - width:41.66666666666667% - } - .col-md-4 { - width:33.33333333333333% - } - .col-md-3 { - width:25% - } - .col-md-2 { - width:16.666666666666664% - } - .col-md-1 { - width:8.333333333333332% - } - .col-md-pull-12 { - right:100% - } - .col-md-pull-11 { - right:91.66666666666666% - } - .col-md-pull-10 { - right:83.33333333333334% - } - .col-md-pull-9 { - right:75% - } - .col-md-pull-8 { - right:66.66666666666666% - } - .col-md-pull-7 { - right:58.333333333333336% - } - .col-md-pull-6 { - right:50% - } - .col-md-pull-5 { - right:41.66666666666667% - } - .col-md-pull-4 { - right:33.33333333333333% - } - .col-md-pull-3 { - right:25% - } - .col-md-pull-2 { - right:16.666666666666664% - } - .col-md-pull-1 { - right:8.333333333333332% - } - .col-md-pull-0 { - right:0 - } - .col-md-push-12 { - left:100% - } - .col-md-push-11 { - left:91.66666666666666% - } - .col-md-push-10 { - left:83.33333333333334% - } - .col-md-push-9 { - left:75% - } - .col-md-push-8 { - left:66.66666666666666% - } - .col-md-push-7 { - left:58.333333333333336% - } - .col-md-push-6 { - left:50% - } - .col-md-push-5 { - left:41.66666666666667% - } - .col-md-push-4 { - left:33.33333333333333% - } - .col-md-push-3 { - left:25% - } - .col-md-push-2 { - left:16.666666666666664% - } - .col-md-push-1 { - left:8.333333333333332% - } - .col-md-push-0 { - left:0 - } - .col-md-offset-12 { - margin-left:100% - } - .col-md-offset-11 { - margin-left:91.66666666666666% - } - .col-md-offset-10 { - margin-left:83.33333333333334% - } - .col-md-offset-9 { - margin-left:75% - } - .col-md-offset-8 { - margin-left:66.66666666666666% - } - .col-md-offset-7 { - margin-left:58.333333333333336% - } - .col-md-offset-6 { - margin-left:50% - } - .col-md-offset-5 { - margin-left:41.66666666666667% - } - .col-md-offset-4 { - margin-left:33.33333333333333% - } - .col-md-offset-3 { - margin-left:25% - } - .col-md-offset-2 { - margin-left:16.666666666666664% - } - .col-md-offset-1 { - margin-left:8.333333333333332% - } - .col-md-offset-0 { - margin-left:0 - } -} -@media(min-width:1200px) { - .col-lg-1, - .col-lg-2, - .col-lg-3, - .col-lg-4, - .col-lg-5, - .col-lg-6, - .col-lg-7, - .col-lg-8, - .col-lg-9, - .col-lg-10, - .col-lg-11, - .col-lg-12 { - float:left - } - .col-lg-12 { - width:100% - } - .col-lg-11 { - width:91.66666666666666% - } - .col-lg-10 { - width:83.33333333333334% - } - .col-lg-9 { - width:75% - } - .col-lg-8 { - width:66.66666666666666% - } - .col-lg-7 { - width:58.333333333333336% - } - .col-lg-6 { - width:50% - } - .col-lg-5 { - width:41.66666666666667% - } - .col-lg-4 { - width:33.33333333333333% - } - .col-lg-3 { - width:25% - } - .col-lg-2 { - width:16.666666666666664% - } - .col-lg-1 { - width:8.333333333333332% - } - .col-lg-pull-12 { - right:100% - } - .col-lg-pull-11 { - right:91.66666666666666% - } - .col-lg-pull-10 { - right:83.33333333333334% - } - .col-lg-pull-9 { - right:75% - } - .col-lg-pull-8 { - right:66.66666666666666% - } - .col-lg-pull-7 { - right:58.333333333333336% - } - .col-lg-pull-6 { - right:50% - } - .col-lg-pull-5 { - right:41.66666666666667% - } - .col-lg-pull-4 { - right:33.33333333333333% - } - .col-lg-pull-3 { - right:25% - } - .col-lg-pull-2 { - right:16.666666666666664% - } - .col-lg-pull-1 { - right:8.333333333333332% - } - .col-lg-pull-0 { - right:0 - } - .col-lg-push-12 { - left:100% - } - .col-lg-push-11 { - left:91.66666666666666% - } - .col-lg-push-10 { - left:83.33333333333334% - } - .col-lg-push-9 { - left:75% - } - .col-lg-push-8 { - left:66.66666666666666% - } - .col-lg-push-7 { - left:58.333333333333336% - } - .col-lg-push-6 { - left:50% - } - .col-lg-push-5 { - left:41.66666666666667% - } - .col-lg-push-4 { - left:33.33333333333333% - } - .col-lg-push-3 { - left:25% - } - .col-lg-push-2 { - left:16.666666666666664% - } - .col-lg-push-1 { - left:8.333333333333332% - } - .col-lg-push-0 { - left:0 - } - .col-lg-offset-12 { - margin-left:100% - } - .col-lg-offset-11 { - margin-left:91.66666666666666% - } - .col-lg-offset-10 { - margin-left:83.33333333333334% - } - .col-lg-offset-9 { - margin-left:75% - } - .col-lg-offset-8 { - margin-left:66.66666666666666% - } - .col-lg-offset-7 { - margin-left:58.333333333333336% - } - .col-lg-offset-6 { - margin-left:50% - } - .col-lg-offset-5 { - margin-left:41.66666666666667% - } - .col-lg-offset-4 { - margin-left:33.33333333333333% - } - .col-lg-offset-3 { - margin-left:25% - } - .col-lg-offset-2 { - margin-left:16.666666666666664% - } - .col-lg-offset-1 { - margin-left:8.333333333333332% - } - .col-lg-offset-0 { - margin-left:0 - } -} -table { - max-width:100%; - background-color:transparent -} -th { - text-align:left -} -.table { - width:100%; - margin-bottom:21px -} -.table>thead>tr>th, -.table>tbody>tr>th, -.table>tfoot>tr>th, -.table>thead>tr>td, -.table>tbody>tr>td, -.table>tfoot>tr>td { - padding:8px; - line-height:1.428571429; - vertical-align:top; - border-top:1px solid #ddd -} -.table>thead>tr>th { - vertical-align:bottom; - border-bottom:2px solid #ddd -} -.table>caption+thead>tr:first-child>th, -.table>colgroup+thead>tr:first-child>th, -.table>thead:first-child>tr:first-child>th, -.table>caption+thead>tr:first-child>td, -.table>colgroup+thead>tr:first-child>td, -.table>thead:first-child>tr:first-child>td { - border-top:0 -} -.table>tbody+tbody { - border-top:2px solid #ddd -} -.table .table { - background-color:#fff -} -.table-condensed>thead>tr>th, -.table-condensed>tbody>tr>th, -.table-condensed>tfoot>tr>th, -.table-condensed>thead>tr>td, -.table-condensed>tbody>tr>td, -.table-condensed>tfoot>tr>td { - padding:5px -} -.table-bordered { - border:1px solid #ddd -} -.table-bordered>thead>tr>th, -.table-bordered>tbody>tr>th, -.table-bordered>tfoot>tr>th, -.table-bordered>thead>tr>td, -.table-bordered>tbody>tr>td, -.table-bordered>tfoot>tr>td { - border:1px solid #ddd -} -.table-bordered>thead>tr>th, -.table-bordered>thead>tr>td { - border-bottom-width:2px -} -.table-striped>tbody>tr:nth-child(odd)>td, -.table-striped>tbody>tr:nth-child(odd)>th { - background-color:#f9f9f9 -} -.table-hover>tbody>tr:hover>td, -.table-hover>tbody>tr:hover>th { - background-color:#f5f5f5 -} -table col[class*="col-"] { - position:static; - display:table-column; - float:none -} -table td[class*="col-"], -table th[class*="col-"] { - display:table-cell; - float:none -} -.table>thead>tr>.active, -.table>tbody>tr>.active, -.table>tfoot>tr>.active, -.table>thead>.active>td, -.table>tbody>.active>td, -.table>tfoot>.active>td, -.table>thead>.active>th, -.table>tbody>.active>th, -.table>tfoot>.active>th { - background-color:#f5f5f5 -} -.table-hover>tbody>tr>.active:hover, -.table-hover>tbody>.active:hover>td, -.table-hover>tbody>.active:hover>th { - background-color:#e8e8e8 -} -.table>thead>tr>.success, -.table>tbody>tr>.success, -.table>tfoot>tr>.success, -.table>thead>.success>td, -.table>tbody>.success>td, -.table>tfoot>.success>td, -.table>thead>.success>th, -.table>tbody>.success>th, -.table>tfoot>.success>th { - background-color:#dff0d8 -} -.table-hover>tbody>tr>.success:hover, -.table-hover>tbody>.success:hover>td, -.table-hover>tbody>.success:hover>th { - background-color:#d0e9c6 -} -.table>thead>tr>.danger, -.table>tbody>tr>.danger, -.table>tfoot>tr>.danger, -.table>thead>.danger>td, -.table>tbody>.danger>td, -.table>tfoot>.danger>td, -.table>thead>.danger>th, -.table>tbody>.danger>th, -.table>tfoot>.danger>th { - background-color:#f2dede -} -.table-hover>tbody>tr>.danger:hover, -.table-hover>tbody>.danger:hover>td, -.table-hover>tbody>.danger:hover>th { - background-color:#ebcccc -} -.table>thead>tr>.warning, -.table>tbody>tr>.warning, -.table>tfoot>tr>.warning, -.table>thead>.warning>td, -.table>tbody>.warning>td, -.table>tfoot>.warning>td, -.table>thead>.warning>th, -.table>tbody>.warning>th, -.table>tfoot>.warning>th { - background-color:#fcf8e3 -} -.table-hover>tbody>tr>.warning:hover, -.table-hover>tbody>.warning:hover>td, -.table-hover>tbody>.warning:hover>th { - background-color:#faf2cc -} -@media(max-width:767px) { - .table-responsive { - width:100%; - margin-bottom:15.75px; - overflow-x:scroll; - overflow-y:hidden; - border:1px solid #ddd; - -ms-overflow-style:-ms-autohiding-scrollbar; - -webkit-overflow-scrolling:touch - } - .table-responsive>.table { - margin-bottom:0 - } - .table-responsive>.table>thead>tr>th, - .table-responsive>.table>tbody>tr>th, - .table-responsive>.table>tfoot>tr>th, - .table-responsive>.table>thead>tr>td, - .table-responsive>.table>tbody>tr>td, - .table-responsive>.table>tfoot>tr>td { - white-space:nowrap - } - .table-responsive>.table-bordered { - border:0 - } - .table-responsive>.table-bordered>thead>tr>th:first-child, - .table-responsive>.table-bordered>tbody>tr>th:first-child, - .table-responsive>.table-bordered>tfoot>tr>th:first-child, - .table-responsive>.table-bordered>thead>tr>td:first-child, - .table-responsive>.table-bordered>tbody>tr>td:first-child, - .table-responsive>.table-bordered>tfoot>tr>td:first-child { - border-left:0 - } - .table-responsive>.table-bordered>thead>tr>th:last-child, - .table-responsive>.table-bordered>tbody>tr>th:last-child, - .table-responsive>.table-bordered>tfoot>tr>th:last-child, - .table-responsive>.table-bordered>thead>tr>td:last-child, - .table-responsive>.table-bordered>tbody>tr>td:last-child, - .table-responsive>.table-bordered>tfoot>tr>td:last-child { - border-right:0 - } - .table-responsive>.table-bordered>tbody>tr:last-child>th, - .table-responsive>.table-bordered>tfoot>tr:last-child>th, - .table-responsive>.table-bordered>tbody>tr:last-child>td, - .table-responsive>.table-bordered>tfoot>tr:last-child>td { - border-bottom:0 - } -} -fieldset { - padding:0; - margin:0; - border:0 -} -legend { - display:block; - width:100%; - padding:0; - margin-bottom:21px; - font-size:22.5px; - line-height:inherit; - color:#333; - border:0; - border-bottom:1px solid #e5e5e5 -} -label { - display:inline-block; - margin-bottom:5px; - font-weight:bold -} -input[type="search"] { - -webkit-box-sizing:border-box; - -moz-box-sizing:border-box; - box-sizing:border-box -} -input[type="radio"], -input[type="checkbox"] { - margin:4px 0 0; - margin-top:1px \9; - line-height:normal -} -input[type="file"] { - display:block -} -select[multiple], -select[size] { - height:auto -} -select optgroup { - font-family:inherit; - font-size:inherit; - font-style:inherit -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline:thin dotted; - outline:5px auto -webkit-focus-ring-color; - outline-offset:-2px -} -input[type="number"]::-webkit-outer-spin-button, -input[type="number"]::-webkit-inner-spin-button { - height:auto -} -output { - display:block; - padding-top:7px; - font-size:15px; - line-height:1.428571429; - color:#6f6f6f; - vertical-align:middle -} -.form-control { - display:block; - width:100%; - height:35px; - padding:6px 12px; - font-size:15px; - line-height:1.428571429; - color:#6f6f6f; - vertical-align:middle; - background-color:#fff; - background-image:none; - border:1px solid #ccc; - border-radius:0; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); - box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); - -webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s; - transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s -} -.form-control:focus { - border-color:#66afe9; - outline:0; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6); - box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6) -} -.form-control:-moz-placeholder { - color:#999 -} -.form-control::-moz-placeholder { - color:#999; - opacity:1 -} -.form-control:-ms-input-placeholder { - color:#999 -} -.form-control::-webkit-input-placeholder { - color:#999 -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - cursor:not-allowed; - background-color:#eee -} -textarea.form-control { - height:auto -} -.form-group { - margin-bottom:15px -} -.radio, -.checkbox { - display:block; - min-height:21px; - padding-left:20px; - margin-top:10px; - margin-bottom:10px; - vertical-align:middle -} -.radio label, -.checkbox label { - display:inline; - margin-bottom:0; - font-weight:normal; - cursor:pointer -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - float:left; - margin-left:-20px -} -.radio+.radio, -.checkbox+.checkbox { - margin-top:-5px -} -.radio-inline, -.checkbox-inline { - display:inline-block; - padding-left:20px; - margin-bottom:0; - font-weight:normal; - vertical-align:middle; - cursor:pointer -} -.radio-inline+.radio-inline, -.checkbox-inline+.checkbox-inline { - margin-top:0; - margin-left:10px -} -input[type="radio"][disabled], -input[type="checkbox"][disabled], -.radio[disabled], -.radio-inline[disabled], -.checkbox[disabled], -.checkbox-inline[disabled], -fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"], -fieldset[disabled] .radio, -fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox, -fieldset[disabled] .checkbox-inline { - cursor:not-allowed -} -.input-sm { - height:30px; - padding:5px 10px; - font-size:12px; - line-height:1.5; - border-radius:0 -} -select.input-sm { - height:30px; - line-height:30px -} -textarea.input-sm { - height:auto -} -.input-lg { - height:48px; - padding:10px 16px; - font-size:19px; - line-height:1.33; - border-radius:0 -} -select.input-lg { - height:48px; - line-height:48px -} -textarea.input-lg { - height:auto -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline { - color:#e99002 -} -.has-warning .form-control { - border-color:#e99002; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); - box-shadow:inset 0 1px 1px rgba(0,0,0,0.075) -} -.has-warning .form-control:focus { - border-color:#b67102; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #febc53; - box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #febc53 -} -.has-warning .input-group-addon { - color:#e99002; - background-color:#fcf8e3; - border-color:#e99002 -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline { - color:#f04124 -} -.has-error .form-control { - border-color:#f04124; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); - box-shadow:inset 0 1px 1px rgba(0,0,0,0.075) -} -.has-error .form-control:focus { - border-color:#d32a0e; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f79483; - box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f79483 -} -.has-error .input-group-addon { - color:#f04124; - background-color:#f2dede; - border-color:#f04124 -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline { - color:#43ac6a -} -.has-success .form-control { - border-color:#43ac6a; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075); - box-shadow:inset 0 1px 1px rgba(0,0,0,0.075) -} -.has-success .form-control:focus { - border-color:#358753; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #85d0a1; - box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #85d0a1 -} -.has-success .input-group-addon { - color:#43ac6a; - background-color:#dff0d8; - border-color:#43ac6a -} -.form-control-static { - margin-bottom:0 -} -.help-block { - display:block; - margin-top:5px; - margin-bottom:10px; - color:#626262 -} -@media(min-width:768px) { - .form-inline .form-group { - display:inline-block; - margin-bottom:0; - vertical-align:middle - } - .form-inline .form-control { - display:inline-block - } - .form-inline select.form-control { - width:auto - } - .form-inline .radio, - .form-inline .checkbox { - display:inline-block; - padding-left:0; - margin-top:0; - margin-bottom:0 - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - float:none; - margin-left:0 - } -} -.form-horizontal .control-label, -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top:7px; - margin-top:0; - margin-bottom:0 -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height:28px -} -.form-horizontal .form-group { - margin-right:-15px; - margin-left:-15px -} -.form-horizontal .form-group:before, -.form-horizontal .form-group:after { - display:table; - content:" " -} -.form-horizontal .form-group:after { - clear:both -} -.form-horizontal .form-group:before, -.form-horizontal .form-group:after { - display:table; - content:" " -} -.form-horizontal .form-group:after { - clear:both -} -.form-horizontal .form-group:before, -.form-horizontal .form-group:after { - display:table; - content:" " -} -.form-horizontal .form-group:after { - clear:both -} -.form-horizontal .form-group:before, -.form-horizontal .form-group:after { - display:table; - content:" " -} -.form-horizontal .form-group:after { - clear:both -} -.form-horizontal .form-group:before, -.form-horizontal .form-group:after { - display:table; - content:" " -} -.form-horizontal .form-group:after { - clear:both -} -.form-horizontal .form-control-static { - padding-top:7px -} -@media(min-width:768px) { - .form-horizontal .control-label { - text-align:right - } -} -.btn { - display:inline-block; - padding:6px 12px; - margin-bottom:0; - font-size:15px; - font-weight:normal; - line-height:1.428571429; - text-align:center; - white-space:nowrap; - vertical-align:middle; - cursor:pointer; - background-image:none; - border:1px solid transparent; - border-radius:0; - -webkit-user-select:none; - -moz-user-select:none; - -ms-user-select:none; - -o-user-select:none; - user-select:none -} -.btn:focus { - outline:thin dotted; - outline:5px auto -webkit-focus-ring-color; - outline-offset:-2px -} -.btn:hover, -.btn:focus { - color:#333; - text-decoration:none -} -.btn:active, -.btn.active { - background-image:none; - outline:0; - -webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125); - box-shadow:inset 0 3px 5px rgba(0,0,0,0.125) -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - pointer-events:none; - cursor:not-allowed; - opacity:.65; - filter:alpha(opacity=65); - -webkit-box-shadow:none; - box-shadow:none -} -.btn-default { - color:#333; - background-color:#e7e7e7; - border-color:#dadada -} -.btn-default:hover, -.btn-default:focus, -.btn-default:active, -.btn-default.active, -.open .dropdown-toggle.btn-default { - color:#333; - background-color:#d3d3d3; - border-color:#bbb -} -.btn-default:active, -.btn-default.active, -.open .dropdown-toggle.btn-default { - background-image:none -} -.btn-default.disabled, -.btn-default[disabled], -fieldset[disabled] .btn-default, -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled:active, -.btn-default[disabled]:active, -fieldset[disabled] .btn-default:active, -.btn-default.disabled.active, -.btn-default[disabled].active, -fieldset[disabled] .btn-default.active { - background-color:#e7e7e7; - border-color:#dadada -} -.btn-default .badge { - color:#e7e7e7; - background-color:#fff -} -.btn-primary { - color:#fff; - background-color:#008cba; - border-color:#0079a1 -} -.btn-primary:hover, -.btn-primary:focus, -.btn-primary:active, -.btn-primary.active, -.open .dropdown-toggle.btn-primary { - color:#fff; - background-color:#006d91; - border-color:#004b63 -} -.btn-primary:active, -.btn-primary.active, -.open .dropdown-toggle.btn-primary { - background-image:none -} -.btn-primary.disabled, -.btn-primary[disabled], -fieldset[disabled] .btn-primary, -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled:active, -.btn-primary[disabled]:active, -fieldset[disabled] .btn-primary:active, -.btn-primary.disabled.active, -.btn-primary[disabled].active, -fieldset[disabled] .btn-primary.active { - background-color:#008cba; - border-color:#0079a1 -} -.btn-primary .badge { - color:#008cba; - background-color:#fff -} -.btn-warning { - color:#fff; - background-color:#e99002; - border-color:#d08002 -} -.btn-warning:hover, -.btn-warning:focus, -.btn-warning:active, -.btn-warning.active, -.open .dropdown-toggle.btn-warning { - color:#fff; - background-color:#c17702; - border-color:#935b01 -} -.btn-warning:active, -.btn-warning.active, -.open .dropdown-toggle.btn-warning { - background-image:none -} -.btn-warning.disabled, -.btn-warning[disabled], -fieldset[disabled] .btn-warning, -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled:active, -.btn-warning[disabled]:active, -fieldset[disabled] .btn-warning:active, -.btn-warning.disabled.active, -.btn-warning[disabled].active, -fieldset[disabled] .btn-warning.active { - background-color:#e99002; - border-color:#d08002 -} -.btn-warning .badge { - color:#e99002; - background-color:#fff -} -.btn-danger { - color:#fff; - background-color:#f04124; - border-color:#ea2f10 -} -.btn-danger:hover, -.btn-danger:focus, -.btn-danger:active, -.btn-danger.active, -.open .dropdown-toggle.btn-danger { - color:#fff; - background-color:#dc2c0f; - border-color:#b1240c -} -.btn-danger:active, -.btn-danger.active, -.open .dropdown-toggle.btn-danger { - background-image:none -} -.btn-danger.disabled, -.btn-danger[disabled], -fieldset[disabled] .btn-danger, -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled:active, -.btn-danger[disabled]:active, -fieldset[disabled] .btn-danger:active, -.btn-danger.disabled.active, -.btn-danger[disabled].active, -fieldset[disabled] .btn-danger.active { - background-color:#f04124; - border-color:#ea2f10 -} -.btn-danger .badge { - color:#f04124; - background-color:#fff -} -.btn-success { - color:#fff; - background-color:#43ac6a; - border-color:#3c9a5f -} -.btn-success:hover, -.btn-success:focus, -.btn-success:active, -.btn-success.active, -.open .dropdown-toggle.btn-success { - color:#fff; - background-color:#388f58; - border-color:#2b6e44 -} -.btn-success:active, -.btn-success.active, -.open .dropdown-toggle.btn-success { - background-image:none -} -.btn-success.disabled, -.btn-success[disabled], -fieldset[disabled] .btn-success, -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled:active, -.btn-success[disabled]:active, -fieldset[disabled] .btn-success:active, -.btn-success.disabled.active, -.btn-success[disabled].active, -fieldset[disabled] .btn-success.active { - background-color:#43ac6a; - border-color:#3c9a5f -} -.btn-success .badge { - color:#43ac6a; - background-color:#fff -} -.btn-info { - color:#fff; - background-color:#5bc0de; - border-color:#46b8da -} -.btn-info:hover, -.btn-info:focus, -.btn-info:active, -.btn-info.active, -.open .dropdown-toggle.btn-info { - color:#fff; - background-color:#39b3d7; - border-color:#269abc -} -.btn-info:active, -.btn-info.active, -.open .dropdown-toggle.btn-info { - background-image:none -} -.btn-info.disabled, -.btn-info[disabled], -fieldset[disabled] .btn-info, -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled:active, -.btn-info[disabled]:active, -fieldset[disabled] .btn-info:active, -.btn-info.disabled.active, -.btn-info[disabled].active, -fieldset[disabled] .btn-info.active { - background-color:#5bc0de; - border-color:#46b8da -} -.btn-info .badge { - color:#5bc0de; - background-color:#fff -} -.btn-link { - font-weight:normal; - color:#008cba; - cursor:pointer; - border-radius:0 -} -.btn-link, -.btn-link:active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color:transparent; - -webkit-box-shadow:none; - box-shadow:none -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color:transparent -} -.btn-link:hover, -.btn-link:focus { - color:#00526e; - text-decoration:underline; - background-color:transparent -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color:#999; - text-decoration:none -} -.btn-lg { - padding:10px 16px; - font-size:19px; - line-height:1.33; - border-radius:0 -} -.btn-sm { - padding:5px 10px; - font-size:12px; - line-height:1.5; - border-radius:0 -} -.btn-xs { - padding:1px 5px; - font-size:12px; - line-height:1.5; - border-radius:0 -} -.btn-block { - display:block; - width:100%; - padding-right:0; - padding-left:0 -} -.btn-block+.btn-block { - margin-top:5px -} -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width:100% -} -.fade { - opacity:0; - -webkit-transition:opacity .15s linear; - transition:opacity .15s linear -} -.fade.in { - opacity:1 -} -.collapse { - display:none -} -.collapse.in { - display:block -} -.collapsing { - position:relative; - height:0; - overflow:hidden; - -webkit-transition:height .35s ease; - transition:height .35s ease -} -@font-face { - font-family:'Glyphicons Halflings'; - src:url('../fonts/glyphicons-halflings-regular.eot'); - src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), - 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') -} -.glyphicon { - position:relative; - top:1px; - display:inline-block; - font-family:'Glyphicons Halflings'; - -webkit-font-smoothing:antialiased; - font-style:normal; - font-weight:normal; - line-height:1; - -moz-osx-font-smoothing:grayscale -} -.glyphicon:empty { - width:1em -} -.glyphicon-asterisk:before { - content:"\2a" -} -.glyphicon-plus:before { - content:"\2b" -} -.glyphicon-euro:before { - content:"\20ac" -} -.glyphicon-minus:before { - content:"\2212" -} -.glyphicon-cloud:before { - content:"\2601" -} -.glyphicon-envelope:before { - content:"\2709" -} -.glyphicon-pencil:before { - content:"\270f" -} -.glyphicon-glass:before { - content:"\e001" -} -.glyphicon-music:before { - content:"\e002" -} -.glyphicon-search:before { - content:"\e003" -} -.glyphicon-heart:before { - content:"\e005" -} -.glyphicon-star:before { - content:"\e006" -} -.glyphicon-star-empty:before { - content:"\e007" -} -.glyphicon-user:before { - content:"\e008" -} -.glyphicon-film:before { - content:"\e009" -} -.glyphicon-th-large:before { - content:"\e010" -} -.glyphicon-th:before { - content:"\e011" -} -.glyphicon-th-list:before { - content:"\e012" -} -.glyphicon-ok:before { - content:"\e013" -} -.glyphicon-remove:before { - content:"\e014" -} -.glyphicon-zoom-in:before { - content:"\e015" -} -.glyphicon-zoom-out:before { - content:"\e016" -} -.glyphicon-off:before { - content:"\e017" -} -.glyphicon-signal:before { - content:"\e018" -} -.glyphicon-cog:before { - content:"\e019" -} -.glyphicon-trash:before { - content:"\e020" -} -.glyphicon-home:before { - content:"\e021" -} -.glyphicon-file:before { - content:"\e022" -} -.glyphicon-time:before { - content:"\e023" -} -.glyphicon-road:before { - content:"\e024" -} -.glyphicon-download-alt:before { - content:"\e025" -} -.glyphicon-download:before { - content:"\e026" -} -.glyphicon-upload:before { - content:"\e027" -} -.glyphicon-inbox:before { - content:"\e028" -} -.glyphicon-play-circle:before { - content:"\e029" -} -.glyphicon-repeat:before { - content:"\e030" -} -.glyphicon-refresh:before { - content:"\e031" -} -.glyphicon-list-alt:before { - content:"\e032" -} -.glyphicon-lock:before { - content:"\e033" -} -.glyphicon-flag:before { - content:"\e034" -} -.glyphicon-headphones:before { - content:"\e035" -} -.glyphicon-volume-off:before { - content:"\e036" -} -.glyphicon-volume-down:before { - content:"\e037" -} -.glyphicon-volume-up:before { - content:"\e038" -} -.glyphicon-qrcode:before { - content:"\e039" -} -.glyphicon-barcode:before { - content:"\e040" -} -.glyphicon-tag:before { - content:"\e041" -} -.glyphicon-tags:before { - content:"\e042" -} -.glyphicon-book:before { - content:"\e043" -} -.glyphicon-bookmark:before { - content:"\e044" -} -.glyphicon-print:before { - content:"\e045" -} -.glyphicon-camera:before { - content:"\e046" -} -.glyphicon-font:before { - content:"\e047" -} -.glyphicon-bold:before { - content:"\e048" -} -.glyphicon-italic:before { - content:"\e049" -} -.glyphicon-text-height:before { - content:"\e050" -} -.glyphicon-text-width:before { - content:"\e051" -} -.glyphicon-align-left:before { - content:"\e052" -} -.glyphicon-align-center:before { - content:"\e053" -} -.glyphicon-align-right:before { - content:"\e054" -} -.glyphicon-align-justify:before { - content:"\e055" -} -.glyphicon-list:before { - content:"\e056" -} -.glyphicon-indent-left:before { - content:"\e057" -} -.glyphicon-indent-right:before { - content:"\e058" -} -.glyphicon-facetime-video:before { - content:"\e059" -} -.glyphicon-picture:before { - content:"\e060" -} -.glyphicon-map-marker:before { - content:"\e062" -} -.glyphicon-adjust:before { - content:"\e063" -} -.glyphicon-tint:before { - content:"\e064" -} -.glyphicon-edit:before { - content:"\e065" -} -.glyphicon-share:before { - content:"\e066" -} -.glyphicon-check:before { - content:"\e067" -} -.glyphicon-move:before { - content:"\e068" -} -.glyphicon-step-backward:before { - content:"\e069" -} -.glyphicon-fast-backward:before { - content:"\e070" -} -.glyphicon-backward:before { - content:"\e071" -} -.glyphicon-play:before { - content:"\e072" -} -.glyphicon-pause:before { - content:"\e073" -} -.glyphicon-stop:before { - content:"\e074" -} -.glyphicon-forward:before { - content:"\e075" -} -.glyphicon-fast-forward:before { - content:"\e076" -} -.glyphicon-step-forward:before { - content:"\e077" -} -.glyphicon-eject:before { - content:"\e078" -} -.glyphicon-chevron-left:before { - content:"\e079" -} -.glyphicon-chevron-right:before { - content:"\e080" -} -.glyphicon-plus-sign:before { - content:"\e081" -} -.glyphicon-minus-sign:before { - content:"\e082" -} -.glyphicon-remove-sign:before { - content:"\e083" -} -.glyphicon-ok-sign:before { - content:"\e084" -} -.glyphicon-question-sign:before { - content:"\e085" -} -.glyphicon-info-sign:before { - content:"\e086" -} -.glyphicon-screenshot:before { - content:"\e087" -} -.glyphicon-remove-circle:before { - content:"\e088" -} -.glyphicon-ok-circle:before { - content:"\e089" -} -.glyphicon-ban-circle:before { - content:"\e090" -} -.glyphicon-arrow-left:before { - content:"\e091" -} -.glyphicon-arrow-right:before { - content:"\e092" -} -.glyphicon-arrow-up:before { - content:"\e093" -} -.glyphicon-arrow-down:before { - content:"\e094" -} -.glyphicon-share-alt:before { - content:"\e095" -} -.glyphicon-resize-full:before { - content:"\e096" -} -.glyphicon-resize-small:before { - content:"\e097" -} -.glyphicon-exclamation-sign:before { - content:"\e101" -} -.glyphicon-gift:before { - content:"\e102" -} -.glyphicon-leaf:before { - content:"\e103" -} -.glyphicon-fire:before { - content:"\e104" -} -.glyphicon-eye-open:before { - content:"\e105" -} -.glyphicon-eye-close:before { - content:"\e106" -} -.glyphicon-warning-sign:before { - content:"\e107" -} -.glyphicon-plane:before { - content:"\e108" -} -.glyphicon-calendar:before { - content:"\e109" -} -.glyphicon-random:before { - content:"\e110" -} -.glyphicon-comment:before { - content:"\e111" -} -.glyphicon-magnet:before { - content:"\e112" -} -.glyphicon-chevron-up:before { - content:"\e113" -} -.glyphicon-chevron-down:before { - content:"\e114" -} -.glyphicon-retweet:before { - content:"\e115" -} -.glyphicon-shopping-cart:before { - content:"\e116" -} -.glyphicon-folder-close:before { - content:"\e117" -} -.glyphicon-folder-open:before { - content:"\e118" -} -.glyphicon-resize-vertical:before { - content:"\e119" -} -.glyphicon-resize-horizontal:before { - content:"\e120" -} -.glyphicon-hdd:before { - content:"\e121" -} -.glyphicon-bullhorn:before { - content:"\e122" -} -.glyphicon-bell:before { - content:"\e123" -} -.glyphicon-certificate:before { - content:"\e124" -} -.glyphicon-thumbs-up:before { - content:"\e125" -} -.glyphicon-thumbs-down:before { - content:"\e126" -} -.glyphicon-hand-right:before { - content:"\e127" -} -.glyphicon-hand-left:before { - content:"\e128" -} -.glyphicon-hand-up:before { - content:"\e129" -} -.glyphicon-hand-down:before { - content:"\e130" -} -.glyphicon-circle-arrow-right:before { - content:"\e131" -} -.glyphicon-circle-arrow-left:before { - content:"\e132" -} -.glyphicon-circle-arrow-up:before { - content:"\e133" -} -.glyphicon-circle-arrow-down:before { - content:"\e134" -} -.glyphicon-globe:before { - content:"\e135" -} -.glyphicon-wrench:before { - content:"\e136" -} -.glyphicon-tasks:before { - content:"\e137" -} -.glyphicon-filter:before { - content:"\e138" -} -.glyphicon-briefcase:before { - content:"\e139" -} -.glyphicon-fullscreen:before { - content:"\e140" -} -.glyphicon-dashboard:before { - content:"\e141" -} -.glyphicon-paperclip:before { - content:"\e142" -} -.glyphicon-heart-empty:before { - content:"\e143" -} -.glyphicon-link:before { - content:"\e144" -} -.glyphicon-phone:before { - content:"\e145" -} -.glyphicon-pushpin:before { - content:"\e146" -} -.glyphicon-usd:before { - content:"\e148" -} -.glyphicon-gbp:before { - content:"\e149" -} -.glyphicon-sort:before { - content:"\e150" -} -.glyphicon-sort-by-alphabet:before { - content:"\e151" -} -.glyphicon-sort-by-alphabet-alt:before { - content:"\e152" -} -.glyphicon-sort-by-order:before { - content:"\e153" -} -.glyphicon-sort-by-order-alt:before { - content:"\e154" -} -.glyphicon-sort-by-attributes:before { - content:"\e155" -} -.glyphicon-sort-by-attributes-alt:before { - content:"\e156" -} -.glyphicon-unchecked:before { - content:"\e157" -} -.glyphicon-expand:before { - content:"\e158" -} -.glyphicon-collapse-down:before { - content:"\e159" -} -.glyphicon-collapse-up:before { - content:"\e160" -} -.glyphicon-log-in:before { - content:"\e161" -} -.glyphicon-flash:before { - content:"\e162" -} -.glyphicon-log-out:before { - content:"\e163" -} -.glyphicon-new-window:before { - content:"\e164" -} -.glyphicon-record:before { - content:"\e165" -} -.glyphicon-save:before { - content:"\e166" -} -.glyphicon-open:before { - content:"\e167" -} -.glyphicon-saved:before { - content:"\e168" -} -.glyphicon-import:before { - content:"\e169" -} -.glyphicon-export:before { - content:"\e170" -} -.glyphicon-send:before { - content:"\e171" -} -.glyphicon-floppy-disk:before { - content:"\e172" -} -.glyphicon-floppy-saved:before { - content:"\e173" -} -.glyphicon-floppy-remove:before { - content:"\e174" -} -.glyphicon-floppy-save:before { - content:"\e175" -} -.glyphicon-floppy-open:before { - content:"\e176" -} -.glyphicon-credit-card:before { - content:"\e177" -} -.glyphicon-transfer:before { - content:"\e178" -} -.glyphicon-cutlery:before { - content:"\e179" -} -.glyphicon-header:before { - content:"\e180" -} -.glyphicon-compressed:before { - content:"\e181" -} -.glyphicon-earphone:before { - content:"\e182" -} -.glyphicon-phone-alt:before { - content:"\e183" -} -.glyphicon-tower:before { - content:"\e184" -} -.glyphicon-stats:before { - content:"\e185" -} -.glyphicon-sd-video:before { - content:"\e186" -} -.glyphicon-hd-video:before { - content:"\e187" -} -.glyphicon-subtitles:before { - content:"\e188" -} -.glyphicon-sound-stereo:before { - content:"\e189" -} -.glyphicon-sound-dolby:before { - content:"\e190" -} -.glyphicon-sound-5-1:before { - content:"\e191" -} -.glyphicon-sound-6-1:before { - content:"\e192" -} -.glyphicon-sound-7-1:before { - content:"\e193" -} -.glyphicon-copyright-mark:before { - content:"\e194" -} -.glyphicon-registration-mark:before { - content:"\e195" -} -.glyphicon-cloud-download:before { - content:"\e197" -} -.glyphicon-cloud-upload:before { - content:"\e198" -} -.glyphicon-tree-conifer:before { - content:"\e199" -} -.glyphicon-tree-deciduous:before { - content:"\e200" -} -.caret { - display:inline-block; - width:0; - height:0; - margin-left:2px; - vertical-align:middle; - border-top:4px solid; - border-right:4px solid transparent; - border-left:4px solid transparent -} -.dropdown { - position:relative -} -.dropdown-toggle:focus { - outline:0 -} -.dropdown-menu { - position:absolute; - top:100%; - left:0; - z-index:1000; - display:none; - float:left; - min-width:160px; - padding:5px 0; - margin:2px 0 0; - font-size:15px; - list-style:none; - background-color:#fff; - border:1px solid #ccc; - border:1px solid rgba(0,0,0,0.15); - border-radius:0; - -webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175); - box-shadow:0 6px 12px rgba(0,0,0,0.175); - background-clip:padding-box -} -.dropdown-menu.pull-right { - right:0; - left:auto -} -.dropdown-menu .divider { - height:1px; - margin:9.5px 0; - overflow:hidden; - background-color:rgba(0,0,0,0.2) -} -.dropdown-menu>li>a { - display:block; - padding:3px 20px; - clear:both; - font-weight:normal; - line-height:1.428571429; - color:#555; - white-space:nowrap -} -.dropdown-menu>li>a:hover, -.dropdown-menu>li>a:focus { - color:#262626; - text-decoration:none; - background-color:#eee -} -.dropdown-menu>.active>a, -.dropdown-menu>.active>a:hover, -.dropdown-menu>.active>a:focus { - color:#fff; - text-decoration:none; - background-color:#008cba; - outline:0 -} -.dropdown-menu>.disabled>a, -.dropdown-menu>.disabled>a:hover, -.dropdown-menu>.disabled>a:focus { - color:#999 -} -.dropdown-menu>.disabled>a:hover, -.dropdown-menu>.disabled>a:focus { - text-decoration:none; - cursor:not-allowed; - background-color:transparent; - background-image:none; - filter:progid:DXImageTransform.Microsoft.gradient(enabled=false) -} -.open>.dropdown-menu { - display:block -} -.open>a { - outline:0 -} -.dropdown-header { - display:block; - padding:3px 20px; - font-size:12px; - line-height:1.428571429; - color:#999 -} -.dropdown-backdrop { - position:fixed; - top:0; - right:0; - bottom:0; - left:0; - z-index:990 -} -.pull-right>.dropdown-menu { - right:0; - left:auto -} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - border-top:0; - border-bottom:4px solid; - content:"" -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top:auto; - bottom:100%; - margin-bottom:1px -} -@media(min-width:768px) { - .navbar-right .dropdown-menu { - right:0; - left:auto - } -} -.btn-group, -.btn-group-vertical { - position:relative; - display:inline-block; - vertical-align:middle -} -.btn-group>.btn, -.btn-group-vertical>.btn { - position:relative; - float:left -} -.btn-group>.btn:hover, -.btn-group-vertical>.btn:hover, -.btn-group>.btn:focus, -.btn-group-vertical>.btn:focus, -.btn-group>.btn:active, -.btn-group-vertical>.btn:active, -.btn-group>.btn.active, -.btn-group-vertical>.btn.active { - z-index:2 -} -.btn-group>.btn:focus, -.btn-group-vertical>.btn:focus { - outline:0 -} -.btn-group .btn+.btn, -.btn-group .btn+.btn-group, -.btn-group .btn-group+.btn, -.btn-group .btn-group+.btn-group { - margin-left:-1px -} -.btn-toolbar:before, -.btn-toolbar:after { - display:table; - content:" " -} -.btn-toolbar:after { - clear:both -} -.btn-toolbar:before, -.btn-toolbar:after { - display:table; - content:" " -} -.btn-toolbar:after { - clear:both -} -.btn-toolbar:before, -.btn-toolbar:after { - display:table; - content:" " -} -.btn-toolbar:after { - clear:both -} -.btn-toolbar:before, -.btn-toolbar:after { - display:table; - content:" " -} -.btn-toolbar:after { - clear:both -} -.btn-toolbar:before, -.btn-toolbar:after { - display:table; - content:" " -} -.btn-toolbar:after { - clear:both -} -.btn-toolbar .btn-group { - float:left -} -.btn-toolbar>.btn+.btn, -.btn-toolbar>.btn-group+.btn, -.btn-toolbar>.btn+.btn-group, -.btn-toolbar>.btn-group+.btn-group { - margin-left:5px -} -.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius:0 -} -.btn-group>.btn:first-child { - margin-left:0 -} -.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius:0; - border-bottom-right-radius:0 -} -.btn-group>.btn:last-child:not(:first-child), -.btn-group>.dropdown-toggle:not(:first-child) { - border-bottom-left-radius:0; - border-top-left-radius:0 -} -.btn-group>.btn-group { - float:left -} -.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { - border-radius:0 -} -.btn-group>.btn-group:first-child>.btn:last-child, -.btn-group>.btn-group:first-child>.dropdown-toggle { - border-top-right-radius:0; - border-bottom-right-radius:0 -} -.btn-group>.btn-group:last-child>.btn:first-child { - border-bottom-left-radius:0; - border-top-left-radius:0 -} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline:0 -} -.btn-group-xs>.btn { - padding:1px 5px; - font-size:12px; - line-height:1.5; - border-radius:0 -} -.btn-group-sm>.btn { - padding:5px 10px; - font-size:12px; - line-height:1.5; - border-radius:0 -} -.btn-group-lg>.btn { - padding:10px 16px; - font-size:19px; - line-height:1.33; - border-radius:0 -} -.btn-group>.btn+.dropdown-toggle { - padding-right:8px; - padding-left:8px -} -.btn-group>.btn-lg+.dropdown-toggle { - padding-right:12px; - padding-left:12px -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125); - box-shadow:inset 0 3px 5px rgba(0,0,0,0.125) -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow:none; - box-shadow:none -} -.btn .caret { - margin-left:0 -} -.btn-lg .caret { - border-width:5px 5px 0; - border-bottom-width:0 -} -.dropup .btn-lg .caret { - border-width:0 5px 5px -} -.btn-group-vertical>.btn, -.btn-group-vertical>.btn-group, -.btn-group-vertical>.btn-group>.btn { - display:block; - float:none; - width:100%; - max-width:100% -} -.btn-group-vertical>.btn-group:before, -.btn-group-vertical>.btn-group:after { - display:table; - content:" " -} -.btn-group-vertical>.btn-group:after { - clear:both -} -.btn-group-vertical>.btn-group:before, -.btn-group-vertical>.btn-group:after { - display:table; - content:" " -} -.btn-group-vertical>.btn-group:after { - clear:both -} -.btn-group-vertical>.btn-group:before, -.btn-group-vertical>.btn-group:after { - display:table; - content:" " -} -.btn-group-vertical>.btn-group:after { - clear:both -} -.btn-group-vertical>.btn-group:before, -.btn-group-vertical>.btn-group:after { - display:table; - content:" " -} -.btn-group-vertical>.btn-group:after { - clear:both -} -.btn-group-vertical>.btn-group:before, -.btn-group-vertical>.btn-group:after { - display:table; - content:" " -} -.btn-group-vertical>.btn-group:after { - clear:both -} -.btn-group-vertical>.btn-group>.btn { - float:none -} -.btn-group-vertical>.btn+.btn, -.btn-group-vertical>.btn+.btn-group, -.btn-group-vertical>.btn-group+.btn, -.btn-group-vertical>.btn-group+.btn-group { - margin-top:-1px; - margin-left:0 -} -.btn-group-vertical>.btn:not(:first-child):not(:last-child) { - border-radius:0 -} -.btn-group-vertical>.btn:first-child:not(:last-child) { - border-top-right-radius:0; - border-bottom-right-radius:0; - border-bottom-left-radius:0 -} -.btn-group-vertical>.btn:last-child:not(:first-child) { - border-top-right-radius:0; - border-bottom-left-radius:0; - border-top-left-radius:0 -} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { - border-radius:0 -} -.btn-group-vertical>.btn-group:first-child>.btn:last-child, -.btn-group-vertical>.btn-group:first-child>.dropdown-toggle { - border-bottom-right-radius:0; - border-bottom-left-radius:0 -} -.btn-group-vertical>.btn-group:last-child>.btn:first-child { - border-top-right-radius:0; - border-top-left-radius:0 -} -.btn-group-justified { - display:table; - width:100%; - border-collapse:separate; - table-layout:fixed -} -.btn-group-justified>.btn, -.btn-group-justified>.btn-group { - display:table-cell; - float:none; - width:1% -} -.btn-group-justified>.btn-group .btn { - width:100% -} -[data-toggle="buttons"]>.btn>input[type="radio"], -[data-toggle="buttons"]>.btn>input[type="checkbox"] { - display:none -} -.input-group { - position:relative; - display:table; - border-collapse:separate -} -.input-group[class*="col-"] { - float:none; - padding-right:0; - padding-left:0 -} -.input-group .form-control { - width:100%; - margin-bottom:0 -} -.input-group-lg>.form-control, -.input-group-lg>.input-group-addon, -.input-group-lg>.input-group-btn>.btn { - height:48px; - padding:10px 16px; - font-size:19px; - line-height:1.33; - border-radius:0 -} -select.input-group-lg>.form-control, -select.input-group-lg>.input-group-addon, -select.input-group-lg>.input-group-btn>.btn { - height:48px; - line-height:48px -} -textarea.input-group-lg>.form-control, -textarea.input-group-lg>.input-group-addon, -textarea.input-group-lg>.input-group-btn>.btn { - height:auto -} -.input-group-sm>.form-control, -.input-group-sm>.input-group-addon, -.input-group-sm>.input-group-btn>.btn { - height:30px; - padding:5px 10px; - font-size:12px; - line-height:1.5; - border-radius:0 -} -select.input-group-sm>.form-control, -select.input-group-sm>.input-group-addon, -select.input-group-sm>.input-group-btn>.btn { - height:30px; - line-height:30px -} -textarea.input-group-sm>.form-control, -textarea.input-group-sm>.input-group-addon, -textarea.input-group-sm>.input-group-btn>.btn { - height:auto -} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display:table-cell -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius:0 -} -.input-group-addon, -.input-group-btn { - width:1%; - white-space:nowrap; - vertical-align:middle -} -.input-group-addon { - padding:6px 12px; - font-size:15px; - font-weight:normal; - line-height:1; - color:#6f6f6f; - text-align:center; - background-color:#eee; - border:1px solid #ccc; - border-radius:0 -} -.input-group-addon.input-sm { - padding:5px 10px; - font-size:12px; - border-radius:0 -} -.input-group-addon.input-lg { - padding:10px 16px; - font-size:19px; - border-radius:0 -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top:0 -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child>.btn, -.input-group-btn:first-child>.dropdown-toggle, -.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius:0; - border-bottom-right-radius:0 -} -.input-group-addon:first-child { - border-right:0 -} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child>.btn, -.input-group-btn:last-child>.dropdown-toggle, -.input-group-btn:first-child>.btn:not(:first-child) { - border-bottom-left-radius:0; - border-top-left-radius:0 -} -.input-group-addon:last-child { - border-left:0 -} -.input-group-btn { - position:relative; - white-space:nowrap -} -.input-group-btn:first-child>.btn { - margin-right:-1px -} -.input-group-btn:last-child>.btn { - margin-left:-1px -} -.input-group-btn>.btn { - position:relative -} -.input-group-btn>.btn+.btn { - margin-left:-4px -} -.input-group-btn>.btn:hover, -.input-group-btn>.btn:active { - z-index:2 -} -.nav { - font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; - padding-left:0; - margin-bottom:0; - list-style:none -} -.nav:before, -.nav:after { - display:table; - content:" " -} -.nav:after { - clear:both -} -.nav:before, -.nav:after { - display:table; - content:" " -} -.nav:after { - clear:both -} -.nav:before, -.nav:after { - display:table; - content:" " -} -.nav:after { - clear:both -} -.nav:before, -.nav:after { - display:table; - content:" " -} -.nav:after { - clear:both -} -.nav:before, -.nav:after { - display:table; - content:" " -} -.nav:after { - clear:both -} -.nav>li { - position:relative; - display:block -} -.nav>li>a { - position:relative; - display:block; - padding:10px 15px -} -.nav>li>a:hover, -.nav>li>a:focus { - text-decoration:none; - background-color:#eee -} -.nav>li.disabled>a { - color:#999 -} -.nav>li.disabled>a:hover, -.nav>li.disabled>a:focus { - color:#999; - text-decoration:none; - cursor:not-allowed; - background-color:transparent -} -.nav .open>a, -.nav .open>a:hover, -.nav .open>a:focus { - background-color:#eee; - border-color:#008cba -} -.nav .nav-divider { - height:1px; - margin:9.5px 0; - overflow:hidden; - background-color:#e5e5e5 -} -.nav>li>a>img { - max-width:none -} -.nav-tabs { - border-bottom:1px solid #ddd -} -.nav-tabs>li { - float:left; - margin-bottom:-1px -} -.nav-tabs>li>a { - margin-right:2px; - line-height:1.428571429; - border:1px solid transparent; - border-radius:0 -} -.nav-tabs>li>a:hover { - border-color:#eee #eee #ddd -} -.nav-tabs>li.active>a, -.nav-tabs>li.active>a:hover, -.nav-tabs>li.active>a:focus { - color:#6f6f6f; - cursor:default; - background-color:#fff; - border:1px solid #ddd; - border-bottom-color:transparent -} -.nav-tabs.nav-justified { - width:100%; - border-bottom:0 -} -.nav-tabs.nav-justified>li { - float:none -} -.nav-tabs.nav-justified>li>a { - margin-bottom:5px; - text-align:center -} -.nav-tabs.nav-justified>.dropdown .dropdown-menu { - top:auto; - left:auto -} -@media(min-width:768px) { - .nav-tabs.nav-justified>li { - display:table-cell; - width:1% - } - .nav-tabs.nav-justified>li>a { - margin-bottom:0 - } -} -.nav-tabs.nav-justified>li>a { - margin-right:0; - border-radius:0 -} -.nav-tabs.nav-justified>.active>a, -.nav-tabs.nav-justified>.active>a:hover, -.nav-tabs.nav-justified>.active>a:focus { - border:1px solid #ddd -} -@media(min-width:768px) { - .nav-tabs.nav-justified>li>a { - border-bottom:1px solid #ddd; - border-radius:0 - } - .nav-tabs.nav-justified>.active>a, - .nav-tabs.nav-justified>.active>a:hover, - .nav-tabs.nav-justified>.active>a:focus { - border-bottom-color:#fff - } -} -.nav-pills>li { - float:left -} -.nav-pills>li>a { - border-radius:0 -} -.nav-pills>li+li { - margin-left:2px -} -.nav-pills>li.active>a, -.nav-pills>li.active>a:hover, -.nav-pills>li.active>a:focus { - color:#fff; - background-color:#008cba -} -.nav-stacked>li { - float:none -} -.nav-stacked>li+li { - margin-top:2px; - margin-left:0 -} -.nav-justified { - width:100% -} -.nav-justified>li { - float:none -} -.nav-justified>li>a { - margin-bottom:5px; - text-align:center -} -.nav-justified>.dropdown .dropdown-menu { - top:auto; - left:auto -} -@media(min-width:768px) { - .nav-justified>li { - display:table-cell; - width:1% - } - .nav-justified>li>a { - margin-bottom:0 - } -} -.nav-tabs-justified { - border-bottom:0 -} -.nav-tabs-justified>li>a { - margin-right:0; - border-radius:0 -} -.nav-tabs-justified>.active>a, -.nav-tabs-justified>.active>a:hover, -.nav-tabs-justified>.active>a:focus { - border:1px solid #ddd -} -@media(min-width:768px) { - .nav-tabs-justified>li>a { - border-bottom:1px solid #ddd; - border-radius:0 - } - .nav-tabs-justified>.active>a, - .nav-tabs-justified>.active>a:hover, - .nav-tabs-justified>.active>a:focus { - border-bottom-color:#fff - } -} -.tab-content>.tab-pane { - display:none -} -.tab-content>.active { - display:block -} -.nav-tabs .dropdown-menu { - margin-top:-1px; - border-top-right-radius:0; - border-top-left-radius:0 -} -.navbar { - position:relative; - min-height:45px; - margin-bottom:21px; - border:1px solid transparent -} -.navbar:before, -.navbar:after { - display:table; - content:" " -} -.navbar:after { - clear:both -} -.navbar:before, -.navbar:after { - display:table; - content:" " -} -.navbar:after { - clear:both -} -.navbar:before, -.navbar:after { - display:table; - content:" " -} -.navbar:after { - clear:both -} -.navbar:before, -.navbar:after { - display:table; - content:" " -} -.navbar:after { - clear:both -} -.navbar:before, -.navbar:after { - display:table; - content:" " -} -.navbar:after { - clear:both -} -@media(min-width:768px) { - .navbar { - border-radius:0 - } -} -.navbar-header:before, -.navbar-header:after { - display:table; - content:" " -} -.navbar-header:after { - clear:both -} -.navbar-header:before, -.navbar-header:after { - display:table; - content:" " -} -.navbar-header:after { - clear:both -} -.navbar-header:before, -.navbar-header:after { - display:table; - content:" " -} -.navbar-header:after { - clear:both -} -.navbar-header:before, -.navbar-header:after { - display:table; - content:" " -} -.navbar-header:after { - clear:both -} -.navbar-header:before, -.navbar-header:after { - display:table; - content:" " -} -.navbar-header:after { - clear:both -} -@media(min-width:768px) { - .navbar-header { - float:left - } -} -.navbar-collapse { - max-height:340px; - padding-right:15px; - padding-left:15px; - overflow-x:visible; - border-top:1px solid transparent; - box-shadow:inset 0 1px 0 rgba(255,255,255,0.1); - -webkit-overflow-scrolling:touch -} -.navbar-collapse:before, -.navbar-collapse:after { - display:table; - content:" " -} -.navbar-collapse:after { - clear:both -} -.navbar-collapse:before, -.navbar-collapse:after { - display:table; - content:" " -} -.navbar-collapse:after { - clear:both -} -.navbar-collapse:before, -.navbar-collapse:after { - display:table; - content:" " -} -.navbar-collapse:after { - clear:both -} -.navbar-collapse:before, -.navbar-collapse:after { - display:table; - content:" " -} -.navbar-collapse:after { - clear:both -} -.navbar-collapse:before, -.navbar-collapse:after { - display:table; - content:" " -} -.navbar-collapse:after { - clear:both -} -.navbar-collapse.in { - overflow-y:auto -} -@media(min-width:768px) { - .navbar-collapse { - width:auto; - border-top:0; - box-shadow:none - } - .navbar-collapse.collapse { - display:block !important; - height:auto !important; - padding-bottom:0; - overflow:visible !important - } - .navbar-collapse.in { - overflow-y:visible - } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-right:0; - padding-left:0 - } -} -.container>.navbar-header, -.container>.navbar-collapse { - margin-right:-15px; - margin-left:-15px -} -@media(min-width:768px) { - .container>.navbar-header, - .container>.navbar-collapse { - margin-right:0; - margin-left:0 - } -} -.navbar-static-top { - z-index:1000; - border-width:0 0 1px -} -@media(min-width:768px) { - .navbar-static-top { - border-radius:0 - } -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position:fixed; - right:0; - left:0; - z-index:1030 -} -@media(min-width:768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius:0 - } -} -.navbar-fixed-top { - top:0; - border-width:0 0 1px -} -.navbar-fixed-bottom { - bottom:0; - margin-bottom:0; - border-width:1px 0 0 -} -.navbar-brand { - font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; - float:left; - padding:12px 15px; - font-size:19px; - line-height:21px -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration:none -} -@media(min-width:768px) { - .navbar>.container .navbar-brand { - margin-left:-15px - } -} -.navbar-toggle { - position:relative; - float:right; - padding:9px 10px; - margin-top:5.5px; - margin-right:15px; - margin-bottom:5.5px; - background-color:transparent; - background-image:none; - border:1px solid transparent; - border-radius:0 -} -.navbar-toggle .icon-bar { - display:block; - width:22px; - height:2px; - border-radius:1px -} -.navbar-toggle .icon-bar+.icon-bar { - margin-top:4px -} -@media(min-width:768px) { - .navbar-toggle { - display:none - } -} -.navbar-nav { - margin:6px -15px -} -.navbar-nav>li>a { - padding-top:10px; - padding-bottom:10px; - line-height:21px -} -@media(max-width:767px) { - .navbar-nav .open .dropdown-menu { - position:static; - float:none; - width:auto; - margin-top:0; - background-color:transparent; - border:0; - box-shadow:none - } - .navbar-nav .open .dropdown-menu>li>a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding:5px 15px 5px 25px - } - .navbar-nav .open .dropdown-menu>li>a { - line-height:21px - } - .navbar-nav .open .dropdown-menu>li>a:hover, - .navbar-nav .open .dropdown-menu>li>a:focus { - background-image:none - } -} -@media(min-width:768px) { - .navbar-nav { - float:left; - margin:0 - } - .navbar-nav>li { - float:left - } - .navbar-nav>li>a { - padding-top:12px; - padding-bottom:12px - } - .navbar-nav.navbar-right:last-child { - margin-right:-15px - } -} -@media(min-width:768px) { - .navbar-left { - float:left !important - } - .navbar-right { - float:right !important - } -} -.navbar-form { - padding:10px 15px; - margin-top:5px; - margin-right:-15px; - margin-bottom:5px; - margin-left:-15px; - border-top:1px solid transparent; - border-bottom:1px solid transparent; - -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1); - box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1) -} -@media(min-width:768px) { - .navbar-form .form-group { - display:inline-block; - margin-bottom:0; - vertical-align:middle - } - .navbar-form .form-control { - display:inline-block - } - .navbar-form select.form-control { - width:auto - } - .navbar-form .radio, - .navbar-form .checkbox { - display:inline-block; - padding-left:0; - margin-top:0; - margin-bottom:0 - } - .navbar-form .radio input[type="radio"], - .navbar-form .checkbox input[type="checkbox"] { - float:none; - margin-left:0 - } -} -@media(max-width:767px) { - .navbar-form .form-group { - margin-bottom:5px - } -} -@media(min-width:768px) { - .navbar-form { - width:auto; - padding-top:0; - padding-bottom:0; - margin-right:0; - margin-left:0; - border:0; - -webkit-box-shadow:none; - box-shadow:none - } - .navbar-form.navbar-right:last-child { - margin-right:-15px - } -} -.navbar-nav>li>.dropdown-menu { - margin-top:0; - border-top-right-radius:0; - border-top-left-radius:0 -} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { - border-bottom-right-radius:0; - border-bottom-left-radius:0 -} -.navbar-nav.pull-right>li>.dropdown-menu, -.navbar-nav>li>.dropdown-menu.pull-right { - right:0; - left:auto -} -.navbar-btn { - margin-top:5px; - margin-bottom:5px -} -.navbar-btn.btn-sm { - margin-top:7.5px; - margin-bottom:7.5px -} -.navbar-btn.btn-xs { - margin-top:11.5px; - margin-bottom:11.5px -} -.navbar-text { - margin-top:12px; - margin-bottom:12px -} -@media(min-width:768px) { - .navbar-text { - float:left; - margin-right:15px; - margin-left:15px - } - .navbar-text.navbar-right:last-child { - margin-right:0 - } -} -.navbar-default { - background-color:#333; - border-color:#222 -} -.navbar-default .navbar-brand { - color:#fff -} -.navbar-default .navbar-brand:hover, -.navbar-default .navbar-brand:focus { - color:#fff; - background-color:transparent -} -.navbar-default .navbar-text { - color:#fff -} -.navbar-default .navbar-nav>li>a { - color:#fff -} -.navbar-default .navbar-nav>li>a:hover, -.navbar-default .navbar-nav>li>a:focus { - color:#fff; - background-color:#272727 -} -.navbar-default .navbar-nav>.active>a, -.navbar-default .navbar-nav>.active>a:hover, -.navbar-default .navbar-nav>.active>a:focus { - color:#fff; - background-color:#272727 -} -.navbar-default .navbar-nav>.disabled>a, -.navbar-default .navbar-nav>.disabled>a:hover, -.navbar-default .navbar-nav>.disabled>a:focus { - color:#ccc; - background-color:transparent -} -.navbar-default .navbar-toggle { - border-color:transparent -} -.navbar-default .navbar-toggle:hover, -.navbar-default .navbar-toggle:focus { - background-color:transparent -} -.navbar-default .navbar-toggle .icon-bar { - background-color:#fff -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color:#222 -} -.navbar-default .navbar-nav>.open>a, -.navbar-default .navbar-nav>.open>a:hover, -.navbar-default .navbar-nav>.open>a:focus { - color:#fff; - background-color:#272727 -} -@media(max-width:767px) { - .navbar-default .navbar-nav .open .dropdown-menu>li>a { - color:#fff - } - .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, - .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus { - color:#fff; - background-color:#272727 - } - .navbar-default .navbar-nav .open .dropdown-menu>.active>a, - .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, - .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus { - color:#fff; - background-color:#272727 - } - .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, - .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, - .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus { - color:#ccc; - background-color:transparent - } -} -.navbar-default .navbar-link { - color:#fff -} -.navbar-default .navbar-link:hover { - color:#fff -} -.navbar-inverse { - background-color:#008cba; - border-color:#006687 -} -.navbar-inverse .navbar-brand { - color:#fff -} -.navbar-inverse .navbar-brand:hover, -.navbar-inverse .navbar-brand:focus { - color:#fff; - background-color:transparent -} -.navbar-inverse .navbar-text { - color:#fff -} -.navbar-inverse .navbar-nav>li>a { - color:#fff -} -.navbar-inverse .navbar-nav>li>a:hover, -.navbar-inverse .navbar-nav>li>a:focus { - color:#fff; - background-color:#006687 -} -.navbar-inverse .navbar-nav>.active>a, -.navbar-inverse .navbar-nav>.active>a:hover, -.navbar-inverse .navbar-nav>.active>a:focus { - color:#fff; - background-color:#006687 -} -.navbar-inverse .navbar-nav>.disabled>a, -.navbar-inverse .navbar-nav>.disabled>a:hover, -.navbar-inverse .navbar-nav>.disabled>a:focus { - color:#444; - background-color:transparent -} -.navbar-inverse .navbar-toggle { - border-color:transparent -} -.navbar-inverse .navbar-toggle:hover, -.navbar-inverse .navbar-toggle:focus { - background-color:transparent -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color:#fff -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color:#007196 -} -.navbar-inverse .navbar-nav>.open>a, -.navbar-inverse .navbar-nav>.open>a:hover, -.navbar-inverse .navbar-nav>.open>a:focus { - color:#fff; - background-color:#006687 -} -@media(max-width:767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { - border-color:#006687 - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color:#006687 - } - .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { - color:#fff - } - .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus { - color:#fff; - background-color:#006687 - } - .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, - .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus { - color:#fff; - background-color:#006687 - } - .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, - .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus { - color:#444; - background-color:transparent - } -} -.navbar-inverse .navbar-link { - color:#fff -} -.navbar-inverse .navbar-link:hover { - color:#fff -} -.breadcrumb { - padding:8px 15px; - margin-bottom:21px; - list-style:none; - background-color:#f5f5f5; - border-radius:0 -} -.breadcrumb>li { - display:inline-block -} -.breadcrumb>li+li:before { - padding:0 5px; - color:#999; - content:"/\00a0" -} -.breadcrumb>.active { - color:#333 -} -.pagination { - display:inline-block; - padding-left:0; - margin:21px 0; - border-radius:0 -} -.pagination>li { - display:inline -} -.pagination>li>a, -.pagination>li>span { - position:relative; - float:left; - padding:6px 12px; - margin-left:-1px; - line-height:1.428571429; - text-decoration:none; - background-color:transparent; - border:1px solid transparent -} -.pagination>li:first-child>a, -.pagination>li:first-child>span { - margin-left:0; - border-bottom-left-radius:0; - border-top-left-radius:0 -} -.pagination>li:last-child>a, -.pagination>li:last-child>span { - border-top-right-radius:0; - border-bottom-right-radius:0 -} -.pagination>li>a:hover, -.pagination>li>span:hover, -.pagination>li>a:focus, -.pagination>li>span:focus { - background-color:#eee -} -.pagination>.active>a, -.pagination>.active>span, -.pagination>.active>a:hover, -.pagination>.active>span:hover, -.pagination>.active>a:focus, -.pagination>.active>span:focus { - z-index:2; - color:#fff; - cursor:default; - background-color:#008cba; - border-color:#008cba -} -.pagination>.disabled>span, -.pagination>.disabled>span:hover, -.pagination>.disabled>span:focus, -.pagination>.disabled>a, -.pagination>.disabled>a:hover, -.pagination>.disabled>a:focus { - color:#999; - cursor:not-allowed; - background-color:transparent; - border-color:transparent -} -.pagination-lg>li>a, -.pagination-lg>li>span { - padding:10px 16px; - font-size:19px -} -.pagination-lg>li:first-child>a, -.pagination-lg>li:first-child>span { - border-bottom-left-radius:0; - border-top-left-radius:0 -} -.pagination-lg>li:last-child>a, -.pagination-lg>li:last-child>span { - border-top-right-radius:0; - border-bottom-right-radius:0 -} -.pagination-sm>li>a, -.pagination-sm>li>span { - padding:5px 10px; - font-size:12px -} -.pagination-sm>li:first-child>a, -.pagination-sm>li:first-child>span { - border-bottom-left-radius:0; - border-top-left-radius:0 -} -.pagination-sm>li:last-child>a, -.pagination-sm>li:last-child>span { - border-top-right-radius:0; - border-bottom-right-radius:0 -} -.pager { - padding-left:0; - margin:21px 0; - text-align:center; - list-style:none -} -.pager:before, -.pager:after { - display:table; - content:" " -} -.pager:after { - clear:both -} -.pager:before, -.pager:after { - display:table; - content:" " -} -.pager:after { - clear:both -} -.pager:before, -.pager:after { - display:table; - content:" " -} -.pager:after { - clear:both -} -.pager:before, -.pager:after { - display:table; - content:" " -} -.pager:after { - clear:both -} -.pager:before, -.pager:after { - display:table; - content:" " -} -.pager:after { - clear:both -} -.pager li { - display:inline -} -.pager li>a, -.pager li>span { - display:inline-block; - padding:5px 14px; - background-color:transparent; - border:1px solid transparent; - border-radius:3px -} -.pager li>a:hover, -.pager li>a:focus { - text-decoration:none; - background-color:#eee -} -.pager .next>a, -.pager .next>span { - float:right -} -.pager .previous>a, -.pager .previous>span { - float:left -} -.pager .disabled>a, -.pager .disabled>a:hover, -.pager .disabled>a:focus, -.pager .disabled>span { - color:#999; - cursor:not-allowed; - background-color:transparent -} -.label { - display:inline; - padding:.2em .6em .3em; - font-size:75%; - font-weight:bold; - line-height:1; - color:#fff; - text-align:center; - white-space:nowrap; - vertical-align:baseline; - border-radius:.25em -} -.label[href]:hover, -.label[href]:focus { - color:#fff; - text-decoration:none; - cursor:pointer -} -.label:empty { - display:none -} -.btn .label { - position:relative; - top:-1px -} -.label-default { - background-color:#999 -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color:gray -} -.label-primary { - background-color:#008cba -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color:#006687 -} -.label-success { - background-color:#43ac6a -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color:#358753 -} -.label-info { - background-color:#5bc0de -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color:#31b0d5 -} -.label-warning { - background-color:#e99002 -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color:#b67102 -} -.label-danger { - background-color:#f04124 -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color:#d32a0e -} -.badge { - display:inline-block; - min-width:10px; - padding:3px 7px; - font-size:12px; - font-weight:bold; - line-height:1; - color:#777; - text-align:center; - white-space:nowrap; - vertical-align:baseline; - background-color:#e7e7e7; - border-radius:10px -} -.badge:empty { - display:none -} -.btn .badge { - position:relative; - top:-1px -} -a.badge:hover, -a.badge:focus { - color:#fff; - text-decoration:none; - cursor:pointer -} -a.list-group-item.active>.badge, -.nav-pills>.active>a>.badge { - color:#008cba; - background-color:#fff -} -.nav-pills>li>a>.badge { - margin-left:3px -} -.jumbotron { - padding:30px; - margin-bottom:30px; - font-size:23px; - font-weight:200; - line-height:2.1428571435; - color:inherit; - background-color:#fafafa -} -.jumbotron h1, -.jumbotron .h1 { - line-height:1; - color:inherit -} -.jumbotron p { - line-height:1.4 -} -.container .jumbotron { - border-radius:0 -} -.jumbotron .container { - max-width:100% -} -@media screen and (min-width:768px) { - .jumbotron { - padding-top:48px; - padding-bottom:48px - } - .container .jumbotron { - padding-right:60px; - padding-left:60px - } - .jumbotron h1, - .jumbotron .h1 { - font-size:67.5px - } -} -.thumbnail { - display:block; - padding:4px; - margin-bottom:21px; - line-height:1.428571429; - background-color:#fff; - border:1px solid #ddd; - border-radius:0; - -webkit-transition:all .2s ease-in-out; - transition:all .2s ease-in-out -} -.thumbnail>img, -.thumbnail a>img { - display:block; - height:auto; - max-width:100%; - margin-right:auto; - margin-left:auto -} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color:#008cba -} -.thumbnail .caption { - padding:9px; - color:#222 -} -.alert { - position:relative; - padding:.75rem 1.25rem; - margin-bottom:1rem; - border:1px solid transparent; - border-radius:.25rem -} -.alert-heading { - color:inherit -} -.alert-link { - font-weight:700 -} -.alert-dismissible { - padding-right:4rem -} -.alert-dismissible .close { - position:absolute; - top:0; - right:0; - padding:.75rem 1.25rem; - color:inherit -} -.alert-primary { - color:#004085; - background-color:#cce5ff; - border-color:#b8daff -} -.alert-primary hr { - border-top-color:#9fcdff -} -.alert-primary .alert-link { - color:#002752 -} -.alert-secondary { - color:#383d41; - background-color:#e2e3e5; - border-color:#d6d8db -} -.alert-secondary hr { - border-top-color:#c8cbcf -} -.alert-secondary .alert-link { - color:#202326 -} -.alert-success { - color:#155724; - background-color:#d4edda; - border-color:#c3e6cb -} -.alert-success hr { - border-top-color:#b1dfbb -} -.alert-success .alert-link { - color:#0b2e13 -} -.alert-info { - color:#0c5460; - background-color:#d1ecf1; - border-color:#bee5eb -} -.alert-info hr { - border-top-color:#abdde5 -} -.alert-info .alert-link { - color:#062c33 -} -.alert-warning { - color:#856404; - background-color:#fff3cd; - border-color:#ffeeba -} -.alert-warning hr { - border-top-color:#ffe8a1 -} -.alert-warning .alert-link { - color:#533f03 -} -.alert-danger { - color:#721c24; - background-color:#f8d7da; - border-color:#f5c6cb -} -.alert-danger hr { - border-top-color:#f1b0b7 -} -.alert-danger .alert-link { - color:#491217 -} -.alert-light { - color:#818182; - background-color:#fefefe; - border-color:#fdfdfe -} -.alert-light hr { - border-top-color:#ececf6 -} -.alert-light .alert-link { - color:#686868 -} -.alert-dark { - color:#1b1e21; - background-color:#d6d8d9; - border-color:#c6c8ca -} -.alert-dark hr { - border-top-color:#b9bbbe -} -.alert-dark .alert-link { - color:#040505 -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position:40px 0 - } - to { - background-position:0 0 - } -} -@keyframes progress-bar-stripes { - from { - background-position:40px 0 - } - to { - background-position:0 0 - } -} -.progress { - height:21px; - margin-bottom:21px; - overflow:hidden; - background-color:#f5f5f5; - border-radius:0; - -webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1); - box-shadow:inset 0 1px 2px rgba(0,0,0,0.1) -} -.progress-bar { - float:left; - width:0; - height:100%; - font-size:12px; - line-height:21px; - color:#fff; - text-align:center; - background-color:#008cba; - -webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15); - box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15); - -webkit-transition:width .6s ease; - transition:width .6s ease -} -.progress-striped .progress-bar { - background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent); - background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent); - background-size:40px 40px -} -.progress.active .progress-bar { - -webkit-animation:progress-bar-stripes 2s linear infinite; - animation:progress-bar-stripes 2s linear infinite -} -.progress-bar-success { - background-color:#43ac6a -} -.progress-striped .progress-bar-success { - background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent); - background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent) -} -.progress-bar-info { - background-color:#5bc0de -} -.progress-striped .progress-bar-info { - background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent); - background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent) -} -.progress-bar-warning { - background-color:#e99002 -} -.progress-striped .progress-bar-warning { - background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent); - background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent) -} -.progress-bar-danger { - background-color:#f04124 -} -.progress-striped .progress-bar-danger { - background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent); - background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent) -} -.media, -.media-body { - overflow:hidden; - zoom:1 -} -.media, -.media .media { - margin-top:15px -} -.media:first-child { - margin-top:0 -} -.media-object { - display:block -} -.media-heading { - margin:0 0 5px -} -.media>.pull-left { - margin-right:10px -} -.media>.pull-right { - margin-left:10px -} -.media-list { - padding-left:0; - list-style:none -} -.list-group { - padding-left:0; - margin-bottom:20px -} -.list-group-item { - position:relative; - display:block; - padding:10px 15px; - margin-bottom:-1px; - background-color:#fff; - border:1px solid #ddd -} -.list-group-item:first-child { - border-top-right-radius:0; - border-top-left-radius:0 -} -.list-group-item:last-child { - margin-bottom:0; - border-bottom-right-radius:0; - border-bottom-left-radius:0 -} -.list-group-item>.badge { - float:right -} -.list-group-item>.badge+.badge { - margin-right:5px -} -a.list-group-item { - color:#555 -} -a.list-group-item .list-group-item-heading { - color:#333 -} -a.list-group-item:hover, -a.list-group-item:focus { - text-decoration:none; - background-color:#f5f5f5 -} -a.list-group-item.active, -a.list-group-item.active:hover, -a.list-group-item.active:focus { - z-index:2; - color:#fff; - background-color:#008cba; - border-color:#008cba -} -a.list-group-item.active .list-group-item-heading, -a.list-group-item.active:hover .list-group-item-heading, -a.list-group-item.active:focus .list-group-item-heading { - color:inherit -} -a.list-group-item.active .list-group-item-text, -a.list-group-item.active:hover .list-group-item-text, -a.list-group-item.active:focus .list-group-item-text { - color:#87e1ff -} -.list-group-item-heading { - margin-top:0; - margin-bottom:5px -} -.list-group-item-text { - margin-bottom:0; - line-height:1.3 -} -.panel { - margin-bottom:21px; - background-color:#fff; - border:1px solid transparent; - border-radius:0; - -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05); - box-shadow:0 1px 1px rgba(0,0,0,0.05) -} -.panel-body { - padding:15px -} -.panel-body:before, -.panel-body:after { - display:table; - content:" " -} -.panel-body:after { - clear:both -} -.panel-body:before, -.panel-body:after { - display:table; - content:" " -} -.panel-body:after { - clear:both -} -.panel-body:before, -.panel-body:after { - display:table; - content:" " -} -.panel-body:after { - clear:both -} -.panel-body:before, -.panel-body:after { - display:table; - content:" " -} -.panel-body:after { - clear:both -} -.panel-body:before, -.panel-body:after { - display:table; - content:" " -} -.panel-body:after { - clear:both -} -.panel>.list-group { - margin-bottom:0 -} -.panel>.list-group .list-group-item { - border-width:1px 0 -} -.panel>.list-group .list-group-item:first-child { - border-top-right-radius:0; - border-top-left-radius:0 -} -.panel>.list-group .list-group-item:last-child { - border-bottom:0 -} -.panel-heading+.list-group .list-group-item:first-child { - border-top-width:0 -} -.panel>.table, -.panel>.table-responsive>.table { - margin-bottom:0 -} -.panel>.panel-body+.table, -.panel>.panel-body+.table-responsive { - border-top:1px solid #ddd -} -.panel>.table>tbody:first-child th, -.panel>.table>tbody:first-child td { - border-top:0 -} -.panel>.table-bordered, -.panel>.table-responsive>.table-bordered { - border:0 -} -.panel>.table-bordered>thead>tr>th:first-child, -.panel>.table-responsive>.table-bordered>thead>tr>th:first-child, -.panel>.table-bordered>tbody>tr>th:first-child, -.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, -.panel>.table-bordered>tfoot>tr>th:first-child, -.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, -.panel>.table-bordered>thead>tr>td:first-child, -.panel>.table-responsive>.table-bordered>thead>tr>td:first-child, -.panel>.table-bordered>tbody>tr>td:first-child, -.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, -.panel>.table-bordered>tfoot>tr>td:first-child, -.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child { - border-left:0 -} -.panel>.table-bordered>thead>tr>th:last-child, -.panel>.table-responsive>.table-bordered>thead>tr>th:last-child, -.panel>.table-bordered>tbody>tr>th:last-child, -.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, -.panel>.table-bordered>tfoot>tr>th:last-child, -.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, -.panel>.table-bordered>thead>tr>td:last-child, -.panel>.table-responsive>.table-bordered>thead>tr>td:last-child, -.panel>.table-bordered>tbody>tr>td:last-child, -.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, -.panel>.table-bordered>tfoot>tr>td:last-child, -.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child { - border-right:0 -} -.panel>.table-bordered>thead>tr:last-child>th, -.panel>.table-responsive>.table-bordered>thead>tr:last-child>th, -.panel>.table-bordered>tbody>tr:last-child>th, -.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, -.panel>.table-bordered>tfoot>tr:last-child>th, -.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th, -.panel>.table-bordered>thead>tr:last-child>td, -.panel>.table-responsive>.table-bordered>thead>tr:last-child>td, -.panel>.table-bordered>tbody>tr:last-child>td, -.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, -.panel>.table-bordered>tfoot>tr:last-child>td, -.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td { - border-bottom:0 -} -.panel>.table-responsive { - margin-bottom:0; - border:0 -} -.panel-heading { - padding:10px 15px; - border-bottom:1px solid transparent; - border-top-right-radius:-1; - border-top-left-radius:-1 -} -.panel-heading>.dropdown .dropdown-toggle { - color:inherit -} -.panel-title { - margin-top:0; - margin-bottom:0; - font-size:17px; - color:inherit -} -.panel-title>a { - color:inherit -} -.panel-footer { - padding:10px 15px; - background-color:#f5f5f5; - border-top:1px solid #ddd; - border-bottom-right-radius:-1; - border-bottom-left-radius:-1 -} -.panel-group .panel { - margin-bottom:0; - overflow:hidden; - border-radius:0 -} -.panel-group .panel+.panel { - margin-top:5px -} -.panel-group .panel-heading { - border-bottom:0 -} -.panel-group .panel-heading+.panel-collapse .panel-body { - border-top:1px solid #ddd -} -.panel-group .panel-footer { - border-top:0 -} -.panel-group .panel-footer+.panel-collapse .panel-body { - border-bottom:1px solid #ddd -} -.panel-default { - border-color:#ddd -} -.panel-default>.panel-heading { - color:#333; - background-color:#f5f5f5; - border-color:#ddd -} -.panel-default>.panel-heading+.panel-collapse .panel-body { - border-top-color:#ddd -} -.panel-default>.panel-footer+.panel-collapse .panel-body { - border-bottom-color:#ddd -} -.panel-primary { - border-color:#008cba -} -.panel-primary>.panel-heading { - color:#fff; - background-color:#008cba; - border-color:#008cba -} -.panel-primary>.panel-heading+.panel-collapse .panel-body { - border-top-color:#008cba -} -.panel-primary>.panel-footer+.panel-collapse .panel-body { - border-bottom-color:#008cba -} -.panel-success { - border-color:#3c9a5f -} -.panel-success>.panel-heading { - color:#43ac6a; - background-color:#dff0d8; - border-color:#3c9a5f -} -.panel-success>.panel-heading+.panel-collapse .panel-body { - border-top-color:#3c9a5f -} -.panel-success>.panel-footer+.panel-collapse .panel-body { - border-bottom-color:#3c9a5f -} -.panel-warning { - border-color:#d08002 -} -.panel-warning>.panel-heading { - color:#e99002; - background-color:#fcf8e3; - border-color:#d08002 -} -.panel-warning>.panel-heading+.panel-collapse .panel-body { - border-top-color:#d08002 -} -.panel-warning>.panel-footer+.panel-collapse .panel-body { - border-bottom-color:#d08002 -} -.panel-danger { - border-color:#ea2f10 -} -.panel-danger>.panel-heading { - color:#f04124; - background-color:#f2dede; - border-color:#ea2f10 -} -.panel-danger>.panel-heading+.panel-collapse .panel-body { - border-top-color:#ea2f10 -} -.panel-danger>.panel-footer+.panel-collapse .panel-body { - border-bottom-color:#ea2f10 -} -.panel-info { - border-color:#3db5d8 -} -.panel-info>.panel-heading { - color:#5bc0de; - background-color:#d9edf7; - border-color:#3db5d8 -} -.panel-info>.panel-heading+.panel-collapse .panel-body { - border-top-color:#3db5d8 -} -.panel-info>.panel-footer+.panel-collapse .panel-body { - border-bottom-color:#3db5d8 -} -.well { - min-height:20px; - padding:19px; - margin-bottom:20px; - background-color:#fafafa; - /*border:1px solid #e8e8e8;*/ - border-radius:0; - -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05); - box-shadow:inset 0 1px 1px rgba(0,0,0,0.05) -} -.well blockquote { - border-color:#ddd; - border-color:rgba(0,0,0,0.15) -} -.well-lg { - padding:24px; - border-radius:0 -} -.well-sm { - padding:9px; - border-radius:0 -} -.close { - float:right; - font-size:22.5px; - font-weight:bold; - line-height:1; - color:#000; - text-shadow:0 1px 0 #fff; - opacity:.2; - filter:alpha(opacity=20) -} -.close:hover, -.close:focus { - color:#000; - text-decoration:none; - cursor:pointer; - opacity:.5; - filter:alpha(opacity=50) -} -button.close { - padding:0; - cursor:pointer; - background:transparent; - border:0; - -webkit-appearance:none -} -.modal-open { - overflow:hidden -} -.modal { - position:fixed; - top:0; - right:0; - bottom:0; - left:0; - z-index:1040; - display:none; - overflow:auto; - overflow-y:scroll -} -.modal.fade .modal-dialog { - -webkit-transform:translate(0,-25%); - -ms-transform:translate(0,-25%); - transform:translate(0,-25%); - -webkit-transition:-webkit-transform .3s ease-out; - -moz-transition:-moz-transform .3s ease-out; - -o-transition:-o-transform .3s ease-out; - transition:transform .3s ease-out -} -.modal.in .modal-dialog { - -webkit-transform:translate(0,0); - -ms-transform:translate(0,0); - transform:translate(0,0) -} -.modal-dialog { - position:relative; - z-index:1050; - width:auto; - margin:10px -} -.modal-content { - position:relative; - background-color:#fff; - border:1px solid #999; - border:1px solid rgba(0,0,0,0.2); - border-radius:0; - outline:0; - -webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5); - box-shadow:0 3px 9px rgba(0,0,0,0.5); - background-clip:padding-box -} -.modal-backdrop { - position:fixed; - top:0; - right:0; - bottom:0; - left:0; - z-index:1030; - background-color:#000 -} -.modal-backdrop.fade { - opacity:0; - filter:alpha(opacity=0) -} -.modal-backdrop.in { - opacity:.5; - filter:alpha(opacity=50) -} -.modal-header { - min-height:16.428571429px; - padding:15px; - border-bottom:1px solid #e5e5e5 -} -.modal-header .close { - margin-top:-2px -} -.modal-title { - margin:0; - line-height:1.428571429 -} -.modal-body { - position:relative; - padding:20px -} -.modal-footer { - padding:19px 20px 20px; - margin-top:15px; - text-align:right; - border-top:1px solid #e5e5e5 -} -.modal-footer:before, -.modal-footer:after { - display:table; - content:" " -} -.modal-footer:after { - clear:both -} -.modal-footer:before, -.modal-footer:after { - display:table; - content:" " -} -.modal-footer:after { - clear:both -} -.modal-footer:before, -.modal-footer:after { - display:table; - content:" " -} -.modal-footer:after { - clear:both -} -.modal-footer:before, -.modal-footer:after { - display:table; - content:" " -} -.modal-footer:after { - clear:both -} -.modal-footer:before, -.modal-footer:after { - display:table; - content:" " -} -.modal-footer:after { - clear:both -} -.modal-footer .btn+.btn { - margin-bottom:0; - margin-left:5px -} -.modal-footer .btn-group .btn+.btn { - margin-left:-1px -} -.modal-footer .btn-block+.btn-block { - margin-left:0 -} -@media screen and (min-width:768px) { - .modal-dialog { - width:600px; - margin:30px auto - } - .modal-content { - -webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5); - box-shadow:0 5px 15px rgba(0,0,0,0.5) - } -} -.tooltip { - position:absolute; - z-index:1030; - display:block; - font-size:12px; - line-height:1.4; - opacity:0; - filter:alpha(opacity=0); - visibility:visible -} -.tooltip.in { - opacity:.9; - filter:alpha(opacity=90) -} -.tooltip.top { - padding:5px 0; - margin-top:-3px -} -.tooltip.right { - padding:0 5px; - margin-left:3px -} -.tooltip.bottom { - padding:5px 0; - margin-top:3px -} -.tooltip.left { - padding:0 5px; - margin-left:-3px -} -.tooltip-inner { - max-width:200px; - padding:3px 8px; - color:#fff; - text-align:center; - text-decoration:none; - background-color:#333; - border-radius:0 -} -.tooltip-arrow { - position:absolute; - width:0; - height:0; - border-color:transparent; - border-style:solid -} -.tooltip.top .tooltip-arrow { - bottom:0; - left:50%; - margin-left:-5px; - border-top-color:#333; - border-width:5px 5px 0 -} -.tooltip.top-left .tooltip-arrow { - bottom:0; - left:5px; - border-top-color:#333; - border-width:5px 5px 0 -} -.tooltip.top-right .tooltip-arrow { - right:5px; - bottom:0; - border-top-color:#333; - border-width:5px 5px 0 -} -.tooltip.right .tooltip-arrow { - top:50%; - left:0; - margin-top:-5px; - border-right-color:#333; - border-width:5px 5px 5px 0 -} -.tooltip.left .tooltip-arrow { - top:50%; - right:0; - margin-top:-5px; - border-left-color:#333; - border-width:5px 0 5px 5px -} -.tooltip.bottom .tooltip-arrow { - top:0; - left:50%; - margin-left:-5px; - border-bottom-color:#333; - border-width:0 5px 5px -} -.tooltip.bottom-left .tooltip-arrow { - top:0; - left:5px; - border-bottom-color:#333; - border-width:0 5px 5px -} -.tooltip.bottom-right .tooltip-arrow { - top:0; - right:5px; - border-bottom-color:#333; - border-width:0 5px 5px -} -.popover { - position:absolute; - top:0; - left:0; - z-index:1010; - display:none; - max-width:276px; - padding:1px; - text-align:left; - white-space:normal; - background-color:#333; - border:1px solid #333; - border:1px solid transparent; - border-radius:0; - -webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2); - box-shadow:0 5px 10px rgba(0,0,0,0.2); - background-clip:padding-box -} -.popover.top { - margin-top:-10px -} -.popover.right { - margin-left:10px -} -.popover.bottom { - margin-top:10px -} -.popover.left { - margin-left:-10px -} -.popover-title { - padding:8px 14px; - margin:0; - font-size:15px; - font-weight:normal; - line-height:18px; - background-color:#333; - border-bottom:1px solid #262626; - border-radius:5px 5px 0 0 -} -.popover-content { - padding:9px 14px -} -.popover .arrow, -.popover .arrow:after { - position:absolute; - display:block; - width:0; - height:0; - border-color:transparent; - border-style:solid -} -.popover .arrow { - border-width:11px -} -.popover .arrow:after { - border-width:10px; - content:"" -} -.popover.top .arrow { - bottom:-11px; - left:50%; - margin-left:-11px; - border-top-color:#999; - border-top-color:rgba(0,0,0,0.25); - border-bottom-width:0 -} -.popover.top .arrow:after { - bottom:1px; - margin-left:-10px; - border-top-color:#333; - border-bottom-width:0; - content:" " -} -.popover.right .arrow { - top:50%; - left:-11px; - margin-top:-11px; - border-right-color:#999; - border-right-color:rgba(0,0,0,0.25); - border-left-width:0 -} -.popover.right .arrow:after { - bottom:-10px; - left:1px; - border-right-color:#333; - border-left-width:0; - content:" " -} -.popover.bottom .arrow { - top:-11px; - left:50%; - margin-left:-11px; - border-bottom-color:#999; - border-bottom-color:rgba(0,0,0,0.25); - border-top-width:0 -} -.popover.bottom .arrow:after { - top:1px; - margin-left:-10px; - border-bottom-color:#333; - border-top-width:0; - content:" " -} -.popover.left .arrow { - top:50%; - right:-11px; - margin-top:-11px; - border-left-color:#999; - border-left-color:rgba(0,0,0,0.25); - border-right-width:0 -} -.popover.left .arrow:after { - right:1px; - bottom:-10px; - border-left-color:#333; - border-right-width:0; - content:" " -} -.carousel { - position:relative -} -.carousel-inner { - position:relative; - width:100%; - overflow:hidden -} -.carousel-inner>.item { - position:relative; - display:none; - -webkit-transition:.6s ease-in-out left; - transition:.6s ease-in-out left -} -.carousel-inner>.item>img, -.carousel-inner>.item>a>img { - display:block; - height:auto; - max-width:100%; - line-height:1 -} -.carousel-inner>.active, -.carousel-inner>.next, -.carousel-inner>.prev { - display:block -} -.carousel-inner>.active { - left:0 -} -.carousel-inner>.next, -.carousel-inner>.prev { - position:absolute; - top:0; - width:100% -} -.carousel-inner>.next { - left:100% -} -.carousel-inner>.prev { - left:-100% -} -.carousel-inner>.next.left, -.carousel-inner>.prev.right { - left:0 -} -.carousel-inner>.active.left { - left:-100% -} -.carousel-inner>.active.right { - left:100% -} -.carousel-control { - position:absolute; - top:0; - bottom:0; - left:0; - width:15%; - font-size:20px; - color:#fff; - text-align:center; - text-shadow:0 1px 2px rgba(0,0,0,0.6); - opacity:.5; - filter:alpha(opacity=50) -} -.carousel-control.left { - background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%)); - background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%); - background-repeat:repeat-x; - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1) -} -.carousel-control.right { - right:0; - left:auto; - background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%)); - background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%); - background-repeat:repeat-x; - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1) -} -.carousel-control:hover, -.carousel-control:focus { - color:#fff; - text-decoration:none; - outline:0; - opacity:.9; - filter:alpha(opacity=90) -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position:absolute; - top:50%; - z-index:5; - display:inline-block -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left:50% -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right:50% -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width:20px; - height:20px; - margin-top:-10px; - margin-left:-10px; - font-family:serif -} -.carousel-control .icon-prev:before { - content:'\2039' -} -.carousel-control .icon-next:before { - content:'\203a' -} -.carousel-indicators { - position:absolute; - bottom:10px; - left:50%; - z-index:15; - width:60%; - padding-left:0; - margin-left:-30%; - text-align:center; - list-style:none -} -.carousel-indicators li { - display:inline-block; - width:10px; - height:10px; - margin:1px; - text-indent:-999px; - cursor:pointer; - background-color:#000 \9; - background-color:rgba(0,0,0,0); - border:1px solid #fff; - border-radius:10px -} -.carousel-indicators .active { - width:12px; - height:12px; - margin:0; - background-color:#fff -} -.carousel-caption { - position:absolute; - right:15%; - bottom:20px; - left:15%; - z-index:10; - padding-top:20px; - padding-bottom:20px; - color:#fff; - text-align:center; - text-shadow:0 1px 2px rgba(0,0,0,0.6) -} -.carousel-caption .btn { - text-shadow:none -} -@media screen and (min-width:768px) { - .carousel-control .glyphicons-chevron-left, - .carousel-control .glyphicons-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width:30px; - height:30px; - margin-top:-15px; - margin-left:-15px; - font-size:30px - } - .carousel-caption { - right:20%; - left:20%; - padding-bottom:30px - } - .carousel-indicators { - bottom:20px - } -} -.clearfix:before, -.clearfix:after { - display:table; - content:" " -} -.clearfix:after { - clear:both -} -.clearfix:before, -.clearfix:after { - display:table; - content:" " -} -.clearfix:after { - clear:both -} -.center-block { - display:block; - margin-right:auto; - margin-left:auto -} -.pull-right { - float:right !important -} -.pull-left { - float:left !important -} -.hide { - display:none !important -} -.show { - display:block !important -} -.invisible { - visibility:hidden -} -.text-hide { - font:0/0 a; - color:transparent; - text-shadow:none; - background-color:transparent; - border:0 -} -.hidden { - display:none !important; - visibility:hidden !important -} -.affix { - position:fixed -} -@-ms-viewport { - width:device-width -} -.visible-xs, -tr.visible-xs, -th.visible-xs, -td.visible-xs { - display:none !important -} -@media(max-width:767px) { - .visible-xs { - display:block !important - } - table.visible-xs { - display:table - } - tr.visible-xs { - display:table-row !important - } - th.visible-xs, - td.visible-xs { - display:table-cell !important - } -} -@media(min-width:768px) and (max-width:991px) { - .visible-xs.visible-sm { - display:block !important - } - table.visible-xs.visible-sm { - display:table - } - tr.visible-xs.visible-sm { - display:table-row !important - } - th.visible-xs.visible-sm, - td.visible-xs.visible-sm { - display:table-cell !important - } -} -@media(min-width:992px) and (max-width:1199px) { - .visible-xs.visible-md { - display:block !important - } - table.visible-xs.visible-md { - display:table - } - tr.visible-xs.visible-md { - display:table-row !important - } - th.visible-xs.visible-md, - td.visible-xs.visible-md { - display:table-cell !important - } -} -@media(min-width:1200px) { - .visible-xs.visible-lg { - display:block !important - } - table.visible-xs.visible-lg { - display:table - } - tr.visible-xs.visible-lg { - display:table-row !important - } - th.visible-xs.visible-lg, - td.visible-xs.visible-lg { - display:table-cell !important - } -} -.visible-sm, -tr.visible-sm, -th.visible-sm, -td.visible-sm { - display:none !important -} -@media(max-width:767px) { - .visible-sm.visible-xs { - display:block !important - } - table.visible-sm.visible-xs { - display:table - } - tr.visible-sm.visible-xs { - display:table-row !important - } - th.visible-sm.visible-xs, - td.visible-sm.visible-xs { - display:table-cell !important - } -} -@media(min-width:768px) and (max-width:991px) { - .visible-sm { - display:block !important - } - table.visible-sm { - display:table - } - tr.visible-sm { - display:table-row !important - } - th.visible-sm, - td.visible-sm { - display:table-cell !important - } -} -@media(min-width:992px) and (max-width:1199px) { - .visible-sm.visible-md { - display:block !important - } - table.visible-sm.visible-md { - display:table - } - tr.visible-sm.visible-md { - display:table-row !important - } - th.visible-sm.visible-md, - td.visible-sm.visible-md { - display:table-cell !important - } -} -@media(min-width:1200px) { - .visible-sm.visible-lg { - display:block !important - } - table.visible-sm.visible-lg { - display:table - } - tr.visible-sm.visible-lg { - display:table-row !important - } - th.visible-sm.visible-lg, - td.visible-sm.visible-lg { - display:table-cell !important - } -} -.visible-md, -tr.visible-md, -th.visible-md, -td.visible-md { - display:none !important -} -@media(max-width:767px) { - .visible-md.visible-xs { - display:block !important - } - table.visible-md.visible-xs { - display:table - } - tr.visible-md.visible-xs { - display:table-row !important - } - th.visible-md.visible-xs, - td.visible-md.visible-xs { - display:table-cell !important - } -} -@media(min-width:768px) and (max-width:991px) { - .visible-md.visible-sm { - display:block !important - } - table.visible-md.visible-sm { - display:table - } - tr.visible-md.visible-sm { - display:table-row !important - } - th.visible-md.visible-sm, - td.visible-md.visible-sm { - display:table-cell !important - } -} -@media(min-width:992px) and (max-width:1199px) { - .visible-md { - display:block !important - } - table.visible-md { - display:table - } - tr.visible-md { - display:table-row !important - } - th.visible-md, - td.visible-md { - display:table-cell !important - } -} -@media(min-width:1200px) { - .visible-md.visible-lg { - display:block !important - } - table.visible-md.visible-lg { - display:table - } - tr.visible-md.visible-lg { - display:table-row !important - } - th.visible-md.visible-lg, - td.visible-md.visible-lg { - display:table-cell !important - } -} -.visible-lg, -tr.visible-lg, -th.visible-lg, -td.visible-lg { - display:none !important -} -@media(max-width:767px) { - .visible-lg.visible-xs { - display:block !important - } - table.visible-lg.visible-xs { - display:table - } - tr.visible-lg.visible-xs { - display:table-row !important - } - th.visible-lg.visible-xs, - td.visible-lg.visible-xs { - display:table-cell !important - } -} -@media(min-width:768px) and (max-width:991px) { - .visible-lg.visible-sm { - display:block !important - } - table.visible-lg.visible-sm { - display:table - } - tr.visible-lg.visible-sm { - display:table-row !important - } - th.visible-lg.visible-sm, - td.visible-lg.visible-sm { - display:table-cell !important - } -} -@media(min-width:992px) and (max-width:1199px) { - .visible-lg.visible-md { - display:block !important - } - table.visible-lg.visible-md { - display:table - } - tr.visible-lg.visible-md { - display:table-row !important - } - th.visible-lg.visible-md, - td.visible-lg.visible-md { - display:table-cell !important - } -} -@media(min-width:1200px) { - .visible-lg { - display:block !important - } - table.visible-lg { - display:table - } - tr.visible-lg { - display:table-row !important - } - th.visible-lg, - td.visible-lg { - display:table-cell !important - } -} -.hidden-xs { - display:block !important -} -table.hidden-xs { - display:table -} -tr.hidden-xs { - display:table-row !important -} -th.hidden-xs, -td.hidden-xs { - display:table-cell !important -} -@media(max-width:767px) { - .hidden-xs, - tr.hidden-xs, - th.hidden-xs, - td.hidden-xs { - display:none !important - } -} -@media(min-width:768px) and (max-width:991px) { - .hidden-xs.hidden-sm, - tr.hidden-xs.hidden-sm, - th.hidden-xs.hidden-sm, - td.hidden-xs.hidden-sm { - display:none !important - } -} -@media(min-width:992px) and (max-width:1199px) { - .hidden-xs.hidden-md, - tr.hidden-xs.hidden-md, - th.hidden-xs.hidden-md, - td.hidden-xs.hidden-md { - display:none !important - } -} -@media(min-width:1200px) { - .hidden-xs.hidden-lg, - tr.hidden-xs.hidden-lg, - th.hidden-xs.hidden-lg, - td.hidden-xs.hidden-lg { - display:none !important - } -} -.hidden-sm { - display:block !important -} -table.hidden-sm { - display:table -} -tr.hidden-sm { - display:table-row !important -} -th.hidden-sm, -td.hidden-sm { - display:table-cell !important -} -@media(max-width:767px) { - .hidden-sm.hidden-xs, - tr.hidden-sm.hidden-xs, - th.hidden-sm.hidden-xs, - td.hidden-sm.hidden-xs { - display:none !important - } -} -@media(min-width:768px) and (max-width:991px) { - .hidden-sm, - tr.hidden-sm, - th.hidden-sm, - td.hidden-sm { - display:none !important - } -} -@media(min-width:992px) and (max-width:1199px) { - .hidden-sm.hidden-md, - tr.hidden-sm.hidden-md, - th.hidden-sm.hidden-md, - td.hidden-sm.hidden-md { - display:none !important - } -} -@media(min-width:1200px) { - .hidden-sm.hidden-lg, - tr.hidden-sm.hidden-lg, - th.hidden-sm.hidden-lg, - td.hidden-sm.hidden-lg { - display:none !important - } -} -.hidden-md { - display:block !important -} -table.hidden-md { - display:table -} -tr.hidden-md { - display:table-row !important -} -th.hidden-md, -td.hidden-md { - display:table-cell !important -} -@media(max-width:767px) { - .hidden-md.hidden-xs, - tr.hidden-md.hidden-xs, - th.hidden-md.hidden-xs, - td.hidden-md.hidden-xs { - display:none !important - } -} -@media(min-width:768px) and (max-width:991px) { - .hidden-md.hidden-sm, - tr.hidden-md.hidden-sm, - th.hidden-md.hidden-sm, - td.hidden-md.hidden-sm { - display:none !important - } -} -@media(min-width:992px) and (max-width:1199px) { - .hidden-md, - tr.hidden-md, - th.hidden-md, - td.hidden-md { - display:none !important - } -} -@media(min-width:1200px) { - .hidden-md.hidden-lg, - tr.hidden-md.hidden-lg, - th.hidden-md.hidden-lg, - td.hidden-md.hidden-lg { - display:none !important - } -} -.hidden-lg { - display:block !important -} -table.hidden-lg { - display:table -} -tr.hidden-lg { - display:table-row !important -} -th.hidden-lg, -td.hidden-lg { - display:table-cell !important -} -@media(max-width:767px) { - .hidden-lg.hidden-xs, - tr.hidden-lg.hidden-xs, - th.hidden-lg.hidden-xs, - td.hidden-lg.hidden-xs { - display:none !important - } -} -@media(min-width:768px) and (max-width:991px) { - .hidden-lg.hidden-sm, - tr.hidden-lg.hidden-sm, - th.hidden-lg.hidden-sm, - td.hidden-lg.hidden-sm { - display:none !important - } -} -@media(min-width:992px) and (max-width:1199px) { - .hidden-lg.hidden-md, - tr.hidden-lg.hidden-md, - th.hidden-lg.hidden-md, - td.hidden-lg.hidden-md { - display:none !important - } -} -@media(min-width:1200px) { - .hidden-lg, - tr.hidden-lg, - th.hidden-lg, - td.hidden-lg { - display:none !important - } -} -.visible-print, -tr.visible-print, -th.visible-print, -td.visible-print { - display:none !important -} -@media print { - .visible-print { - display:block !important - } - table.visible-print { - display:table - } - tr.visible-print { - display:table-row !important - } - th.visible-print, - td.visible-print { - display:table-cell !important - } - .hidden-print, - tr.hidden-print, - th.hidden-print, - td.hidden-print { - display:none !important - } -} -.navbar { - font-size:13px; - font-weight:300; - border:0 -} -.navbar .navbar-toggle:hover .icon-bar { - background-color:#b3b3b3 -} -.navbar-collapse { - border-top-color:rgba(0,0,0,0.2); - -webkit-box-shadow:none; - box-shadow:none -} -.navbar .dropdown-menu { - border:0 -} -.navbar .dropdown-menu>li>a, -.navbar .dropdown-menu>li>a:focus { - font-size:13px; - font-weight:300; - background-color:transparent -} -.navbar .dropdown-header { - color:rgba(255,255,255,0.5) -} -.navbar-default .dropdown-menu { - background-color:#333 -} -.navbar-default .dropdown-menu>li>a, -.navbar-default .dropdown-menu>li>a:focus { - color:#fff -} -.navbar-default .dropdown-menu>li>a:hover, -.navbar-default .dropdown-menu>.active>a, -.navbar-default .dropdown-menu>.active>a:hover { - background-color:#272727 -} -.navbar-inverse .dropdown-menu { - background-color:#008cba -} -.navbar-inverse .dropdown-menu>li>a, -.navbar-inverse .dropdown-menu>li>a:focus { - color:#fff -} -.navbar-inverse .dropdown-menu>li>a:hover, -.navbar-inverse .dropdown-menu>.active>a, -.navbar-inverse .dropdown-menu>.active>a:hover { - background-color:#006687 -} -.btn { - padding:14px 28px -} -.btn-lg { - padding:16px 32px -} -.btn-sm { - padding:8px 16px -} -.btn-xs { - padding:4px 8px -} -.btn-group .btn~.dropdown-toggle { - padding-right:16px; - padding-left:16px -} -.btn-group .dropdown-menu { - border-top-width:0 -} -.btn-group.dropup .dropdown-menu { - margin-bottom:0; - border-top-width:1px; - border-bottom-width:0 -} -.btn-group .dropdown-toggle.btn-default~.dropdown-menu { - background-color:#e7e7e7; - border-color:#dadada -} -.btn-group .dropdown-toggle.btn-default~.dropdown-menu>li>a { - color:#333 -} -.btn-group .dropdown-toggle.btn-default~.dropdown-menu>li>a:hover { - background-color:#d3d3d3 -} -.btn-group .dropdown-toggle.btn-primary~.dropdown-menu { - background-color:#008cba; - border-color:#0079a1 -} -.btn-group .dropdown-toggle.btn-primary~.dropdown-menu>li>a { - color:#fff -} -.btn-group .dropdown-toggle.btn-primary~.dropdown-menu>li>a:hover { - background-color:#006d91 -} -.btn-group .dropdown-toggle.btn-success~.dropdown-menu { - background-color:#43ac6a; - border-color:#3c9a5f -} -.btn-group .dropdown-toggle.btn-success~.dropdown-menu>li>a { - color:#fff -} -.btn-group .dropdown-toggle.btn-success~.dropdown-menu>li>a:hover { - background-color:#388f58 -} -.btn-group .dropdown-toggle.btn-info~.dropdown-menu { - background-color:#5bc0de; - border-color:#46b8da -} -.btn-group .dropdown-toggle.btn-info~.dropdown-menu>li>a { - color:#fff -} -.btn-group .dropdown-toggle.btn-info~.dropdown-menu>li>a:hover { - background-color:#39b3d7 -} -.btn-group .dropdown-toggle.btn-warning~.dropdown-menu { - background-color:#e99002; - border-color:#d08002 -} -.btn-group .dropdown-toggle.btn-warning~.dropdown-menu>li>a { - color:#fff -} -.btn-group .dropdown-toggle.btn-warning~.dropdown-menu>li>a:hover { - background-color:#c17702 -} -.btn-group .dropdown-toggle.btn-danger~.dropdown-menu { - background-color:#f04124; - border-color:#ea2f10 -} -.btn-group .dropdown-toggle.btn-danger~.dropdown-menu>li>a { - color:#fff -} -.btn-group .dropdown-toggle.btn-danger~.dropdown-menu>li>a:hover { - background-color:#dc2c0f -} -.lead { - color:#6f6f6f -} -cite { - font-style:italic -} -blockquote { - color:#6f6f6f; - border-left-width:1px -} -blockquote.pull-right { - border-right-width:1px -} -blockquote small { - font-size:12px; - font-weight:300 -} -table { - font-size:12px -} -input, -.form-control { - padding:7px; - font-size:12px -} -label, -.control-label, -.help-block, -.checkbox, -.radio { - font-size:12px; - font-weight:normal -} -.form-group .btn, -.input-group-addon, -.input-group-btn .btn { - padding:8px 14px; - font-size:12px -} -.nav .open>a, -.nav .open>a:hover, -.nav .open>a:focus { - border-color:transparent -} -.nav-tabs>li>a { - color:#222; - background-color:#e7e7e7 -} -.nav-tabs .caret { - border-top-color:#222; - border-bottom-color:#222 -} -.nav-pills { - font-weight:300 -} -.breadcrumb { - font-size:10px; - font-weight:300; - text-transform:uppercase; - border:1px solid #ddd; - border-radius:3px -} -.pagination { - font-size:12px; - font-weight:300; - color:#999 -} -.pagination>li>a, -.pagination>li>span { - margin-left:4px; - color:#999 -} -.pagination>.active>a, -.pagination>.active>span { - color:#fff -} -.pagination>li>a, -.pagination>li:first-child>a, -.pagination>li:last-child>a, -.pagination>li>span, -.pagination>li:first-child>span, -.pagination>li:last-child>span { - border-radius:3px -} -.pagination-lg>li>a { - padding-right:22px; - padding-left:22px -} -.pagination-sm>li>a { - padding:0 5px -} -.pager { - font-size:12px; - font-weight:300; - color:#999 -} -.list-group { - font-size:12px; - font-weight:300 -} -.label { - padding-right:1em; - padding-left:1em; - font-weight:300; - border-radius:0 -} -.label-default { - color:#333; - background-color:#e7e7e7 -} -.badge { - font-weight:300 -} -.progress { - height:22px; - padding:2px; - background-color:#f6f6f6; - border:1px solid #ccc; - -webkit-box-shadow:none; - box-shadow:none -} -.dropdown-menu { - padding:0; - margin-top:0; - font-size:12px -} -.dropdown-menu>li>a { - padding:12px 15px -} -.dropdown-header { - padding-right:15px; - padding-left:15px; - font-size:9px; - text-transform:uppercase -} -.popover { - font-size:12px; - font-weight:300; - color:#fff -} -.panel-heading, -.panel-footer { - border-top-right-radius:0; - border-top-left-radius:0 -} -.clearfix:before, -.clearfix:after { - display:table; - content:" " -} -.clearfix:after { - clear:both -} -.clearfix:before, -.clearfix:after { - display:table; - content:" " -} -.clearfix:after { - clear:both -} -.center-block { - display:block; - margin-right:auto; - margin-left:auto -} -.pull-right { - float:right !important -} -.pull-left { - float:left !important -} -.hide { - display:none !important -} -.show { - display:block !important -} -.invisible { - visibility:hidden -} -.text-hide { - font:0/0 a; - color:transparent; - text-shadow:none; - background-color:transparent; - border:0 -} -.hidden { - display:none !important; - visibility:hidden !important -} -.affix { - position:fixed -} diff --git a/themes/dark/css/dark.css b/themes/dark/css/dark.css deleted file mode 100644 index 83900dd..0000000 --- a/themes/dark/css/dark.css +++ /dev/null @@ -1,89 +0,0 @@ -/* - Cinder Theme for MkDocs | Copyright 2015 Christopher Simpkins | MIT License -*/ - -body { - font-family:"Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 16px; - line-height: 1.7; - background-color: #343838; - color: #FFF; -} -h1, h2, h3, h4, h5, h6 { - font-family:'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; - color: #C63939; -} -h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { - color: #B1B7B9; -} - -h2 { - margin-top: 35px; -} - -h1, h2 { - font-weight: 700; -} -h4 { - font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; - font-weight: 300; - margin-top: 20px; - font-style: italic; -} -h5 { - font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; - font-weight: 300; - font-variant: small-caps; -} -pre, code { - background-color: #FCFDFF; -} -pre>code { - font-size: 13px; -} -pre { - margin-left: 25px; - margin-top: 25px; - margin-bottom: 25px; -} -.lead { - font-family:"Inter", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-weight: 400; - line-height: 1.4; - letter-spacing: 0.0312em; - color: #B1B7B9; -} -.navbar-default { - background-color: #343838; - border-bottom: 8px #EBF2F2 solid; -} -.bs-sidenav { - background-image: url("../img/grid11.png"); - background-repeat: repeat; - font-family: Inter,"Helvetica Neue",Helvetica,Arial,sans-serif; - font-size: 13px; -} -.well { - background-color: #FCFDFF; -} -.btn-default { - background-color:#FCFDFF; -} -.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th { - background-color: #FCFDFF; -} -#mkdocs-search-query:focus { - outline: none; - -webkit-box-shadow: none; - box-shadow: none; -} -#mkdocs-search-query { - font-family:"Inter", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 20px; - font-weight: 700; - color: #343838; - height: 45px; -} -footer > hr { - width: 35%; -} diff --git a/themes/dark/css/dark.min.css b/themes/dark/css/dark.min.css deleted file mode 100644 index bf1e019..0000000 --- a/themes/dark/css/dark.min.css +++ /dev/null @@ -1,114 +0,0 @@ -body -{ - font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; - font-size:16px; - line-height:1.7; - background-color: #232323; - color: #FFFFFF; -} -h1,h2,h3,h4,h5,h6 -{ - font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif; - color: #FFFFFF; -} -h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small -{ - color:#b1b7b9 -} -h2 -{ - margin-top:35px -} -h1,h2 -{ - font-weight:700 -} -h3 -{ - font-weight: 600; -} -h4 -{ - border-bottom: solid 1px; - border-color: #000000; - padding-top: 5px; - padding-bottom: 5px; - color: #FFFFFF; - font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif; - font-weight:450; - margin-top:20px; -} -h5 -{ - font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif; - font-weight:300; - font-variant:small-caps -} -pre -{ - background-color:#161616 -} -code -{ - background-color:#161616; -} -pre>code -{ - font-size:13px -} -pre -{ - margin-top:20px; - margin-bottom:20px; - border-spacing: 100px; -} -.lead -{ - font-family:"Inter","Helvetica Neue",Helvetica,Arial,sans-serif; - font-weight:400; - line-height:1.4; - letter-spacing:.0312em; - color:#b1b7b9 -} -.navbar-default -{ - background-color:#161616; -} -.bs-sidenav -{ - background-color:#161616; - font-family:Inter,"Helvetica Neue",Helvetica,Arial,sans-serif; - font-size:13.5px; -} -.well -{ - border: 1px solid black; - border-radius: 5px; - background-color: rgba(250, 252, 255, 0); -} -.btn-default -{ - background-color:#fcfdff -} -.table-striped>tbody>tr:nth-child(2n+1)>td,.table-striped>tbody>tr:nth-child(2n+1)>th -{ - background-color:#fcfdff -} -#mkdocs-search-query:focus -{ - outline:0; - -webkit-box-shadow:none; - box-shadow:none -} -#mkdocs-search-query -{ - font-family:"Inter","Helvetica Neue",Helvetica,Arial,sans-serif; - font-size:20px; - font-weight:700; - color:#343838; - height:45px -} -footer>hr -{ - width:35% -} \ No newline at end of file diff --git a/themes/dark/css/highlight.css b/themes/dark/css/highlight.css deleted file mode 100644 index a2b9270..0000000 --- a/themes/dark/css/highlight.css +++ /dev/null @@ -1,99 +0,0 @@ -/* - -github.com style (c) Vasily Polovnyov - -*/ - -.hljs { - display: block; - overflow-x: auto; - padding: 0.5em; - color: #333; - background: #FCFDFF; -} - -.hljs-comment, -.hljs-quote { - color: #998; - font-style: italic; -} - -.hljs-keyword, -.hljs-selector-tag, -.hljs-subst { - color: #333; - font-weight: bold; -} - -.hljs-number, -.hljs-literal, -.hljs-variable, -.hljs-template-variable, -.hljs-tag .hljs-attr { - color: #008080; -} - -.hljs-string, -.hljs-doctag { - color: #d14; -} - -.hljs-title, -.hljs-section, -.hljs-selector-id { - color: #900; - font-weight: bold; -} - -.hljs-subst { - font-weight: normal; -} - -.hljs-type, -.hljs-class .hljs-title { - color: #458; - font-weight: bold; -} - -.hljs-tag, -.hljs-name, -.hljs-attribute { - color: #000080; - font-weight: normal; -} - -.hljs-regexp, -.hljs-link { - color: #009926; -} - -.hljs-symbol, -.hljs-bullet { - color: #990073; -} - -.hljs-built_in, -.hljs-builtin-name { - color: #0086b3; -} - -.hljs-meta { - color: #999; - font-weight: bold; -} - -.hljs-deletion { - background: #fdd; -} - -.hljs-addition { - background: #dfd; -} - -.hljs-emphasis { - font-style: italic; -} - -.hljs-strong { - font-weight: bold; -} diff --git a/themes/dark/css/highlight.min.css b/themes/dark/css/highlight.min.css deleted file mode 100644 index 1b6ab94..0000000 --- a/themes/dark/css/highlight.min.css +++ /dev/null @@ -1 +0,0 @@ -.hljs{display:block;overflow-x:auto;padding:.5em;color:#333;background:#fcfdff}.hljs-comment,.hljs-quote{color:#998;font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-subst{color:#333;font-weight:bold}.hljs-number,.hljs-literal,.hljs-variable,.hljs-template-variable,.hljs-tag .hljs-attr{color:teal}.hljs-string,.hljs-doctag{color:#d14}.hljs-title,.hljs-section,.hljs-selector-id{color:#900;font-weight:bold}.hljs-subst{font-weight:normal}.hljs-type,.hljs-class .hljs-title{color:#458;font-weight:bold}.hljs-tag,.hljs-name,.hljs-attribute{color:navy;font-weight:normal}.hljs-regexp,.hljs-link{color:#009926}.hljs-symbol,.hljs-bullet{color:#990073}.hljs-built_in,.hljs-builtin-name{color:#0086b3}.hljs-meta{color:#999;font-weight:bold}.hljs-deletion{background:#fdd}.hljs-addition{background:#dfd}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold} diff --git a/themes/dark/fonts/fontawesome-webfont.eot b/themes/dark/fonts/fontawesome-webfont.eot deleted file mode 100755 index 7c79c6a..0000000 Binary files a/themes/dark/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/themes/dark/fonts/fontawesome-webfont.svg b/themes/dark/fonts/fontawesome-webfont.svg deleted file mode 100755 index 45fdf33..0000000 --- a/themes/dark/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,414 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/themes/dark/fonts/fontawesome-webfont.ttf b/themes/dark/fonts/fontawesome-webfont.ttf deleted file mode 100755 index e89738d..0000000 Binary files a/themes/dark/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/themes/dark/fonts/fontawesome-webfont.woff b/themes/dark/fonts/fontawesome-webfont.woff deleted file mode 100755 index 8c1748a..0000000 Binary files a/themes/dark/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/themes/dark/img/favicon.ico b/themes/dark/img/favicon.ico deleted file mode 100644 index e85006a..0000000 Binary files a/themes/dark/img/favicon.ico and /dev/null differ diff --git a/themes/dark/img/grid1.png b/themes/dark/img/grid1.png deleted file mode 100644 index a6c493a..0000000 Binary files a/themes/dark/img/grid1.png and /dev/null differ diff --git a/themes/dark/img/grid10.png b/themes/dark/img/grid10.png deleted file mode 100644 index 7c41953..0000000 Binary files a/themes/dark/img/grid10.png and /dev/null differ diff --git a/themes/dark/img/grid11.png b/themes/dark/img/grid11.png deleted file mode 100644 index ef37b27..0000000 Binary files a/themes/dark/img/grid11.png and /dev/null differ diff --git a/themes/dark/img/grid12.png b/themes/dark/img/grid12.png deleted file mode 100644 index 3f100c4..0000000 Binary files a/themes/dark/img/grid12.png and /dev/null differ diff --git a/themes/dark/img/grid13.png b/themes/dark/img/grid13.png deleted file mode 100644 index 1a0d83f..0000000 Binary files a/themes/dark/img/grid13.png and /dev/null differ diff --git a/themes/dark/img/grid14.png b/themes/dark/img/grid14.png deleted file mode 100644 index deabc03..0000000 Binary files a/themes/dark/img/grid14.png and /dev/null differ diff --git a/themes/dark/img/grid15.png b/themes/dark/img/grid15.png deleted file mode 100644 index 1f0417a..0000000 Binary files a/themes/dark/img/grid15.png and /dev/null differ diff --git a/themes/dark/img/grid16.png b/themes/dark/img/grid16.png deleted file mode 100644 index 984454f..0000000 Binary files a/themes/dark/img/grid16.png and /dev/null differ diff --git a/themes/dark/img/grid17.png b/themes/dark/img/grid17.png deleted file mode 100644 index fe48c9d..0000000 Binary files a/themes/dark/img/grid17.png and /dev/null differ diff --git a/themes/dark/img/grid18.png b/themes/dark/img/grid18.png deleted file mode 100644 index 3c84524..0000000 Binary files a/themes/dark/img/grid18.png and /dev/null differ diff --git a/themes/dark/img/grid19.png b/themes/dark/img/grid19.png deleted file mode 100644 index 2bfdd50..0000000 Binary files a/themes/dark/img/grid19.png and /dev/null differ diff --git a/themes/dark/img/grid2.png b/themes/dark/img/grid2.png deleted file mode 100644 index c9eed3e..0000000 Binary files a/themes/dark/img/grid2.png and /dev/null differ diff --git a/themes/dark/img/grid20.png b/themes/dark/img/grid20.png deleted file mode 100644 index 30e3fae..0000000 Binary files a/themes/dark/img/grid20.png and /dev/null differ diff --git a/themes/dark/img/grid3.png b/themes/dark/img/grid3.png deleted file mode 100644 index 4617c9d..0000000 Binary files a/themes/dark/img/grid3.png and /dev/null differ diff --git a/themes/dark/img/grid4.png b/themes/dark/img/grid4.png deleted file mode 100644 index 2a1f180..0000000 Binary files a/themes/dark/img/grid4.png and /dev/null differ diff --git a/themes/dark/img/grid5.png b/themes/dark/img/grid5.png deleted file mode 100644 index a1d710e..0000000 Binary files a/themes/dark/img/grid5.png and /dev/null differ diff --git a/themes/dark/img/grid6.png b/themes/dark/img/grid6.png deleted file mode 100644 index 71b4148..0000000 Binary files a/themes/dark/img/grid6.png and /dev/null differ diff --git a/themes/dark/img/grid7.png b/themes/dark/img/grid7.png deleted file mode 100644 index 6044a41..0000000 Binary files a/themes/dark/img/grid7.png and /dev/null differ diff --git a/themes/dark/img/grid8.png b/themes/dark/img/grid8.png deleted file mode 100644 index a4b6d44..0000000 Binary files a/themes/dark/img/grid8.png and /dev/null differ diff --git a/themes/dark/img/grid9.png b/themes/dark/img/grid9.png deleted file mode 100644 index 627dda5..0000000 Binary files a/themes/dark/img/grid9.png and /dev/null differ diff --git a/themes/dark/js/base.js b/themes/dark/js/base.js deleted file mode 100644 index 1db589c..0000000 --- a/themes/dark/js/base.js +++ /dev/null @@ -1,225 +0,0 @@ -function getSearchTerm() { - var sPageURL = window.location.search.substring(1); - var sURLVariables = sPageURL.split('&'); - for (var i = 0; i < sURLVariables.length; i++) { - var sParameterName = sURLVariables[i].split('='); - if (sParameterName[0] == 'q') { - return sParameterName[1]; - } - } -} - -$(document).ready(function() { - /** - * ------------------------------------------------------------------------ - * Taken from themes/mkdocs/js/base.js - * ------------------------------------------------------------------------ - */ - var search_term = getSearchTerm(), - $search_modal = $('#mkdocs_search_modal'), - $keyboard_modal = $('#mkdocs_keyboard_modal'); - - if (search_term) { - $search_modal.modal(); - } - - // make sure search input gets autofocus everytime modal opens. - $search_modal.on('shown.bs.modal', function() { - $search_modal.find('#mkdocs-search-query').focus(); - }); - - // Close search modal when result is selected - // The links get added later so listen to parent - $('#mkdocs-search-results').click(function(e) { - if ($(e.target).is('a')) { - $search_modal.modal('hide'); - } - }); - - if (typeof shortcuts !== 'undefined') { - // Populate keyboard modal with proper Keys - $keyboard_modal.find('.help.shortcut kbd')[0].innerHTML = keyCodes[shortcuts.help]; - $keyboard_modal.find('.prev.shortcut kbd')[0].innerHTML = keyCodes[shortcuts.previous]; - $keyboard_modal.find('.next.shortcut kbd')[0].innerHTML = keyCodes[shortcuts.next]; - $keyboard_modal.find('.search.shortcut kbd')[0].innerHTML = keyCodes[shortcuts.search]; - - // Keyboard navigation - document.addEventListener("keydown", function(e) { - if ($(e.target).is(':input')) return true; - var key = e.which || e.key || window.event && window.event.key; - var page; - switch (key) { - case shortcuts.next: - page = $('.navbar a[rel="next"]:first').prop('href'); - break; - case shortcuts.previous: - page = $('.navbar a[rel="prev"]:first').prop('href'); - break; - case shortcuts.search: - e.preventDefault(); - $keyboard_modal.modal('hide'); - $search_modal.modal('show'); - $search_modal.find('#mkdocs-search-query').focus(); - break; - case shortcuts.help: - $search_modal.modal('hide'); - $keyboard_modal.modal('show'); - break; - default: - break; - } - if (page) { - $keyboard_modal.modal('hide'); - window.location.href = page; - } - }); - } - - $('table').addClass('table table-striped table-hover'); - - // Improve the scrollspy behaviour when users click on a TOC item. - $(".bs-sidenav a").on("click", function() { - var clicked = this; - setTimeout(function() { - var active = $('.nav li.active a'); - active = active[active.length - 1]; - if (clicked !== active) { - $(active).parent().removeClass("active"); - $(clicked).parent().addClass("active"); - } - }, 50); - }); -}); - - -/** - * ------------------------------------------------------------------------ - * Taken from themes/mkdocs/js/base.js - * ------------------------------------------------------------------------ - */ - -$('body').scrollspy({ - target: '.bs-sidebar', - offset: 100 -}); - -/* Prevent disabled links from causing a page reload */ -$("li.disabled a").click(function() { - event.preventDefault(); -}); - -// See https://www.cambiaresearch.com/articles/15/javascript-char-codes-key-codes -// We only list common keys below. Obscure keys are omited and their use is discouraged. -var keyCodes = { - 8: 'backspace', - 9: 'tab', - 13: 'enter', - 16: 'shift', - 17: 'ctrl', - 18: 'alt', - 19: 'pause/break', - 20: 'caps lock', - 27: 'escape', - 32: 'spacebar', - 33: 'page up', - 34: 'page down', - 35: 'end', - 36: 'home', - 37: '←', - 38: '↑', - 39: '→', - 40: '↓', - 45: 'insert', - 46: 'delete', - 48: '0', - 49: '1', - 50: '2', - 51: '3', - 52: '4', - 53: '5', - 54: '6', - 55: '7', - 56: '8', - 57: '9', - 65: 'a', - 66: 'b', - 67: 'c', - 68: 'd', - 69: 'e', - 70: 'f', - 71: 'g', - 72: 'h', - 73: 'i', - 74: 'j', - 75: 'k', - 76: 'l', - 77: 'm', - 78: 'n', - 79: 'o', - 80: 'p', - 81: 'q', - 82: 'r', - 83: 's', - 84: 't', - 85: 'u', - 86: 'v', - 87: 'w', - 88: 'x', - 89: 'y', - 90: 'z', - 91: 'Left Windows Key / Left ⌘', - 92: 'Right Windows Key', - 93: 'Windows Menu / Right ⌘', - 96: 'numpad 0', - 97: 'numpad 1', - 98: 'numpad 2', - 99: 'numpad 3', - 100: 'numpad 4', - 101: 'numpad 5', - 102: 'numpad 6', - 103: 'numpad 7', - 104: 'numpad 8', - 105: 'numpad 9', - 106: 'multiply', - 107: 'add', - 109: 'subtract', - 110: 'decimal point', - 111: 'divide', - 112: 'f1', - 113: 'f2', - 114: 'f3', - 115: 'f4', - 116: 'f5', - 117: 'f6', - 118: 'f7', - 119: 'f8', - 120: 'f9', - 121: 'f10', - 122: 'f11', - 123: 'f12', - 124: 'f13', - 125: 'f14', - 126: 'f15', - 127: 'f16', - 128: 'f17', - 129: 'f18', - 130: 'f19', - 131: 'f20', - 132: 'f21', - 133: 'f22', - 134: 'f23', - 135: 'f24', - 144: 'num lock', - 145: 'scroll lock', - 186: ';', - 187: '=', - 188: ',', - 189: '‐', - 190: '.', - 191: '?', - 192: '`', - 219: '[', - 220: '\', - 221: ']', - 222: ''', -}; diff --git a/themes/dark/js/bootstrap-3.0.3.min.js b/themes/dark/js/bootstrap-3.0.3.min.js deleted file mode 100644 index 1a6258e..0000000 --- a/themes/dark/js/bootstrap-3.0.3.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v3.0.3 (http://getbootstrap.com) - * Copyright 2013 Twitter, Inc. - * Licensed under http://www.apache.org/licenses/LICENSE-2.0 - */ - -if("undefined"==typeof jQuery)throw new Error("Bootstrap requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]}}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d)};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.is("input")?"val":"html",e=c.data();a+="Text",e.resetText||c.data("resetText",c[d]()),c[d](e[a]||this.options[a]),setTimeout(function(){"loadingText"==a?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons"]'),b=!0;if(a.length){var c=this.$element.find("input");"radio"===c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?b=!1:a.find(".active").removeClass("active")),b&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}b&&this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid.bs.carousel",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid.bs.carousel")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(''}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(jQuery); \ No newline at end of file diff --git a/themes/dark/keyboard-modal.html b/themes/dark/keyboard-modal.html deleted file mode 100644 index a3640b6..0000000 --- a/themes/dark/keyboard-modal.html +++ /dev/null @@ -1,40 +0,0 @@ - diff --git a/themes/dark/main.html b/themes/dark/main.html deleted file mode 100644 index 5eabbc2..0000000 --- a/themes/dark/main.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "base.html" %} - -{# -The entry point for the MkDocs Theme. - -Any theme customisations should override this file to redefine blocks defined in -the various templates. The custom theme should only need to define a main.html -which `{% extends "base.html" %}` and defines various blocks which will replace -the blocks defined in base.html and its included child templates. -#} \ No newline at end of file diff --git a/themes/dark/mkdocs_theme.yml b/themes/dark/mkdocs_theme.yml deleted file mode 100644 index 6fae0a2..0000000 --- a/themes/dark/mkdocs_theme.yml +++ /dev/null @@ -1,13 +0,0 @@ -dark_theme: true - -static_templates: - - 404.html - -include_search_page: false -search_index_only: false - -shortcuts: - help: 191 # ? - next: 78 # n - previous: 80 # p - search: 83 # s diff --git a/themes/dark/nav-sub.html b/themes/dark/nav-sub.html deleted file mode 100644 index 3578b05..0000000 --- a/themes/dark/nav-sub.html +++ /dev/null @@ -1,14 +0,0 @@ -{% if not nav_item.children %} -
  • - {{ nav_item.title }} -
  • -{% else %} - -{% endif %} diff --git a/themes/dark/nav.html b/themes/dark/nav.html deleted file mode 100644 index 77a7aae..0000000 --- a/themes/dark/nav.html +++ /dev/null @@ -1,109 +0,0 @@ - diff --git a/themes/dark/search-modal.html b/themes/dark/search-modal.html deleted file mode 100644 index b1eddb7..0000000 --- a/themes/dark/search-modal.html +++ /dev/null @@ -1,27 +0,0 @@ - diff --git a/themes/dark/toc.html b/themes/dark/toc.html deleted file mode 100644 index 26519c5..0000000 --- a/themes/dark/toc.html +++ /dev/null @@ -1,13 +0,0 @@ - \ No newline at end of file