├── .gitignore ├── .gitreview ├── LICENSE ├── MANIFEST.in ├── README.txt ├── setup.cfg ├── setup.py ├── tox.ini └── xstatic ├── __init__.py └── pkg ├── __init__.py └── bootswatch ├── __init__.py └── data ├── README.md ├── cerulean ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── cosmo ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── cyborg ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── darkly ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── flatly ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── journal ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── lumen ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── paper ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── readable ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── sandstone ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── simplex ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── slate ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── spacelab ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── superhero ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less ├── united ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less └── yeti ├── _bootswatch.scss ├── _variables.scss ├── bootstrap.css ├── bootstrap.min.css ├── bootswatch.less ├── index.html ├── thumbnail.png └── variables.less /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/.gitreview -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/README.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/tox.ini -------------------------------------------------------------------------------- /xstatic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/__init__.py -------------------------------------------------------------------------------- /xstatic/pkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/__init__.py -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/__init__.py -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/README.md -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cerulean/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cerulean/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cerulean/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cerulean/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cerulean/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cerulean/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cerulean/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cerulean/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cerulean/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cerulean/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cerulean/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cerulean/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cerulean/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cerulean/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cerulean/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cerulean/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cosmo/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cosmo/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cosmo/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cosmo/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cosmo/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cosmo/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cosmo/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cosmo/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cosmo/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cosmo/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cosmo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cosmo/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cosmo/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cosmo/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cosmo/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cosmo/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cyborg/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cyborg/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cyborg/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cyborg/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cyborg/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cyborg/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cyborg/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cyborg/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cyborg/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cyborg/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cyborg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cyborg/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cyborg/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cyborg/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/cyborg/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/cyborg/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/darkly/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/darkly/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/darkly/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/darkly/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/darkly/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/darkly/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/darkly/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/darkly/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/darkly/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/darkly/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/darkly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/darkly/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/darkly/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/darkly/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/darkly/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/darkly/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/flatly/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/flatly/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/flatly/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/flatly/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/flatly/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/flatly/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/flatly/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/flatly/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/flatly/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/flatly/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/flatly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/flatly/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/flatly/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/flatly/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/flatly/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/flatly/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/journal/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/journal/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/journal/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/journal/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/journal/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/journal/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/journal/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/journal/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/journal/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/journal/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/journal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/journal/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/journal/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/journal/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/journal/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/journal/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/lumen/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/lumen/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/lumen/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/lumen/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/lumen/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/lumen/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/lumen/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/lumen/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/lumen/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/lumen/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/lumen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/lumen/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/lumen/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/lumen/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/lumen/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/lumen/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/paper/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/paper/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/paper/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/paper/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/paper/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/paper/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/paper/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/paper/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/paper/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/paper/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/paper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/paper/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/paper/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/paper/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/paper/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/paper/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/readable/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/readable/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/readable/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/readable/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/readable/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/readable/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/readable/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/readable/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/readable/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/readable/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/readable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/readable/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/readable/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/readable/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/readable/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/readable/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/sandstone/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/sandstone/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/sandstone/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/sandstone/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/sandstone/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/sandstone/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/sandstone/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/sandstone/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/sandstone/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/sandstone/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/sandstone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/sandstone/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/sandstone/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/sandstone/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/sandstone/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/sandstone/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/simplex/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/simplex/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/simplex/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/simplex/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/simplex/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/simplex/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/simplex/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/simplex/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/simplex/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/simplex/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/simplex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/simplex/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/simplex/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/simplex/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/simplex/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/simplex/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/slate/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/slate/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/slate/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/slate/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/slate/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/slate/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/slate/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/slate/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/slate/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/slate/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/slate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/slate/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/slate/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/slate/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/slate/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/slate/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/spacelab/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/spacelab/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/spacelab/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/spacelab/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/spacelab/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/spacelab/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/spacelab/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/spacelab/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/spacelab/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/spacelab/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/spacelab/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/spacelab/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/spacelab/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/spacelab/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/spacelab/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/spacelab/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/superhero/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/superhero/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/superhero/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/superhero/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/superhero/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/superhero/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/superhero/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/superhero/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/superhero/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/superhero/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/superhero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/superhero/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/superhero/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/superhero/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/superhero/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/superhero/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/united/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/united/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/united/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/united/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/united/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/united/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/united/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/united/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/united/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/united/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/united/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/united/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/united/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/united/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/united/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/united/variables.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/yeti/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/yeti/_bootswatch.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/yeti/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/yeti/_variables.scss -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/yeti/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/yeti/bootstrap.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/yeti/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/yeti/bootstrap.min.css -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/yeti/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/yeti/bootswatch.less -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/yeti/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/yeti/index.html -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/yeti/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/yeti/thumbnail.png -------------------------------------------------------------------------------- /xstatic/pkg/bootswatch/data/yeti/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-bootswatch/HEAD/xstatic/pkg/bootswatch/data/yeti/variables.less --------------------------------------------------------------------------------