jekyll-bootflat 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +62 -0
- data/_includes/footer.html +63 -0
- data/_includes/head.html +14 -0
- data/_includes/header.html +37 -0
- data/_layouts/default.html +17 -0
- data/_layouts/page.html +14 -0
- data/_layouts/post.html +5 -0
- data/_sass/_bootflat.scss +41 -0
- data/_sass/_bootstrap.scss +56 -0
- data/_sass/_font-awesome.scss +18 -0
- data/_sass/_overrides.scss +1 -0
- data/_sass/_syntax-highlighting.scss +71 -0
- data/_sass/bootflat/_accordion.scss +76 -0
- data/_sass/bootflat/_alert.scss +75 -0
- data/_sass/bootflat/_breadcrumb.scss +121 -0
- data/_sass/bootflat/_button.scss +205 -0
- data/_sass/bootflat/_button_group.scss +133 -0
- data/_sass/bootflat/_calendar.scss +134 -0
- data/_sass/bootflat/_checkbox_radio.scss +67 -0
- data/_sass/bootflat/_dropdown.scss +122 -0
- data/_sass/bootflat/_footer.scss +82 -0
- data/_sass/bootflat/_form.scss +212 -0
- data/_sass/bootflat/_global.scss +239 -0
- data/_sass/bootflat/_jumbotron.scss +84 -0
- data/_sass/bootflat/_label_badge.scss +65 -0
- data/_sass/bootflat/_list.scss +188 -0
- data/_sass/bootflat/_media_list.scss +26 -0
- data/_sass/bootflat/_modal.scss +39 -0
- data/_sass/bootflat/_navbar.scss +216 -0
- data/_sass/bootflat/_pager.scss +42 -0
- data/_sass/bootflat/_pagination.scss +59 -0
- data/_sass/bootflat/_panel.scss +169 -0
- data/_sass/bootflat/_pill.scss +45 -0
- data/_sass/bootflat/_popover.scss +50 -0
- data/_sass/bootflat/_pricing.scss +139 -0
- data/_sass/bootflat/_progress.scss +42 -0
- data/_sass/bootflat/_selecter.scss +258 -0
- data/_sass/bootflat/_stepper.scss +79 -0
- data/_sass/bootflat/_tab.scss +179 -0
- data/_sass/bootflat/_thumbnail.scss +43 -0
- data/_sass/bootflat/_timeline.scss +189 -0
- data/_sass/bootflat/_toggle.scss +94 -0
- data/_sass/bootflat/_tooltip.scss +42 -0
- data/_sass/bootflat/_typography.scss +127 -0
- data/_sass/bootflat/_well.scss +43 -0
- data/_sass/bootstrap/_alerts.scss +73 -0
- data/_sass/bootstrap/_badges.scss +68 -0
- data/_sass/bootstrap/_breadcrumbs.scss +28 -0
- data/_sass/bootstrap/_button-groups.scss +244 -0
- data/_sass/bootstrap/_buttons.scss +168 -0
- data/_sass/bootstrap/_carousel.scss +270 -0
- data/_sass/bootstrap/_close.scss +36 -0
- data/_sass/bootstrap/_code.scss +69 -0
- data/_sass/bootstrap/_component-animations.scss +37 -0
- data/_sass/bootstrap/_dropdowns.scss +216 -0
- data/_sass/bootstrap/_forms.scss +617 -0
- data/_sass/bootstrap/_glyphicons.scss +307 -0
- data/_sass/bootstrap/_grid.scss +84 -0
- data/_sass/bootstrap/_input-groups.scss +171 -0
- data/_sass/bootstrap/_jumbotron.scss +54 -0
- data/_sass/bootstrap/_labels.scss +66 -0
- data/_sass/bootstrap/_list-group.scss +130 -0
- data/_sass/bootstrap/_media.scss +66 -0
- data/_sass/bootstrap/_mixins.scss +40 -0
- data/_sass/bootstrap/_modals.scss +150 -0
- data/_sass/bootstrap/_navbar.scss +662 -0
- data/_sass/bootstrap/_navs.scss +242 -0
- data/_sass/bootstrap/_normalize.scss +424 -0
- data/_sass/bootstrap/_pager.scss +54 -0
- data/_sass/bootstrap/_pagination.scss +89 -0
- data/_sass/bootstrap/_panels.scss +271 -0
- data/_sass/bootstrap/_popovers.scss +131 -0
- data/_sass/bootstrap/_print.scss +101 -0
- data/_sass/bootstrap/_progress-bars.scss +87 -0
- data/_sass/bootstrap/_responsive-embed.scss +35 -0
- data/_sass/bootstrap/_responsive-utilities.scss +179 -0
- data/_sass/bootstrap/_scaffolding.scss +161 -0
- data/_sass/bootstrap/_tables.scss +234 -0
- data/_sass/bootstrap/_theme.scss +291 -0
- data/_sass/bootstrap/_thumbnails.scss +38 -0
- data/_sass/bootstrap/_tooltip.scss +101 -0
- data/_sass/bootstrap/_type.scss +298 -0
- data/_sass/bootstrap/_utilities.scss +55 -0
- data/_sass/bootstrap/_variables.scss +874 -0
- data/_sass/bootstrap/_wells.scss +29 -0
- data/_sass/bootstrap/mixins/_alerts.scss +14 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +18 -0
- data/_sass/bootstrap/mixins/_buttons.scss +65 -0
- data/_sass/bootstrap/mixins/_center-block.scss +7 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +22 -0
- data/_sass/bootstrap/mixins/_forms.scss +88 -0
- data/_sass/bootstrap/mixins/_gradients.scss +58 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/_sass/bootstrap/mixins/_grid.scss +122 -0
- data/_sass/bootstrap/mixins/_hide-text.scss +21 -0
- data/_sass/bootstrap/mixins/_image.scss +33 -0
- data/_sass/bootstrap/mixins/_labels.scss +12 -0
- data/_sass/bootstrap/mixins/_list-group.scss +32 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
- data/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/_sass/bootstrap/mixins/_opacity.scss +8 -0
- data/_sass/bootstrap/mixins/_pagination.scss +24 -0
- data/_sass/bootstrap/mixins/_panels.scss +24 -0
- data/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/_sass/bootstrap/mixins/_size.scss +10 -0
- data/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
- data/_sass/bootstrap/mixins/_table-row.scss +28 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
- data/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/_sass/font-awesome/_animated.scss +34 -0
- data/_sass/font-awesome/_bordered-pulled.scss +25 -0
- data/_sass/font-awesome/_core.scss +12 -0
- data/_sass/font-awesome/_fixed-width.scss +6 -0
- data/_sass/font-awesome/_icons.scss +733 -0
- data/_sass/font-awesome/_larger.scss +13 -0
- data/_sass/font-awesome/_list.scss +19 -0
- data/_sass/font-awesome/_mixins.scss +60 -0
- data/_sass/font-awesome/_path.scss +15 -0
- data/_sass/font-awesome/_rotated-flipped.scss +20 -0
- data/_sass/font-awesome/_screen-reader.scss +5 -0
- data/_sass/font-awesome/_stacked.scss +20 -0
- data/_sass/font-awesome/_variables.scss +744 -0
- data/_sass/main.scss +28 -0
- data/assets/css/bootflat.css +2557 -0
- data/assets/css/bootstrap.min.css +5 -0
- data/assets/css/custom_styles.css +7 -0
- data/assets/css/font-awesome.min.css +4 -0
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +655 -0
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/img/glyphicons-halflings-white.png +0 -0
- data/assets/img/glyphicons-halflings.png +0 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/custom.js +9 -0
- data/assets/js/icheck.min.js +11 -0
- data/assets/js/jquery.fs.selecter.min.js +9 -0
- data/assets/js/jquery.fs.stepper.min.js +9 -0
- metadata +233 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: f6dadf34963ac41ac8692f112d58f435120cab76
|
|
4
|
+
data.tar.gz: efe1c874e8dbdb923d4ca6dcc50fb601b58ea288
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 6614066b0387f9ba018a3aa1deb57084a7ecd116c6a2f51a9895d1d84689cc607925c7ee851b9972fcd8118a48b8d3083f9b002159e7d0fcb6d7a990a8670186
|
|
7
|
+
data.tar.gz: 73d694656315eb2c81eb8a5f16447c3614c591470939fc1dc8983d0b0647e22234f1da57cf8198a3dfec94dfd06187a46ccc3fe093408146aab07183be3ef857
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 Stefan Haslinger
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# jekyll-bootflat
|
|
2
|
+
|
|
3
|
+
jekyll-bootflat is a gem based theme for Jekyll, and has been extracted out of
|
|
4
|
+
[jekyll octopod](https://jekyll-octopod.github.io/) and will be used there.
|
|
5
|
+
|
|
6
|
+
It is basically a Twitter Bootstrap theme, but extended by [Bootflat](http://bootflat.github.io/)
|
|
7
|
+
and [Font Awesome](http://fontawesome.io/)
|
|
8
|
+
I am a Bootflat fanboy, and I agree to their tagline
|
|
9
|
+
"_Bootflat is built on the foundations of Bootstrap, visioned in a stunning flat design._"
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
Add this line to your Jekyll site's Gemfile:
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
gem "jekyll-bootflat"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
20
|
+
|
|
21
|
+
```yaml
|
|
22
|
+
theme: jekyll-bootflat
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
And then execute:
|
|
26
|
+
|
|
27
|
+
$ bundle
|
|
28
|
+
|
|
29
|
+
Or install it yourself as:
|
|
30
|
+
|
|
31
|
+
$ gem install jekyll-bootflat
|
|
32
|
+
|
|
33
|
+
## Usage
|
|
34
|
+
|
|
35
|
+
* Definitely visit the Bootflat Website, they have an [awesome documentation](http://bootflat.github.io/documentation.html)
|
|
36
|
+
* I also highly recommend [Bootstrap's Documentation site](http://getbootstrap.com/)
|
|
37
|
+
* Finally, also [Fontawesome](http://fontawesome.io/) have an awesome documentation.
|
|
38
|
+
|
|
39
|
+
We stick to their styles, so you won't find any additional documentation here.
|
|
40
|
+
|
|
41
|
+
## Contributing
|
|
42
|
+
|
|
43
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/jekyll-octopod/jekyll-bootflat.
|
|
44
|
+
This project is intended to be a safe, welcoming space for collaboration,
|
|
45
|
+
and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
46
|
+
|
|
47
|
+
## Development
|
|
48
|
+
|
|
49
|
+
To set up your environment to develop this theme, run `bundle install`.
|
|
50
|
+
|
|
51
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve`
|
|
52
|
+
and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme.
|
|
53
|
+
Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications
|
|
54
|
+
to your theme and to your content, your site will regenerate and you should see the changes in the
|
|
55
|
+
browser after a refresh, just like normal.
|
|
56
|
+
|
|
57
|
+
When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with
|
|
58
|
+
Git will be released.
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
|
|
62
|
+
The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<footer class="footer">
|
|
2
|
+
<div class="container">
|
|
3
|
+
<div class="clearfix">
|
|
4
|
+
<dl class="footer-nav">
|
|
5
|
+
<dt class="nav-title">Meta</dt>
|
|
6
|
+
<dd class="nav-item">
|
|
7
|
+
<a href="#">Imprint</a>
|
|
8
|
+
</dd>
|
|
9
|
+
</dl>
|
|
10
|
+
|
|
11
|
+
<dl class="footer-nav">
|
|
12
|
+
<dt class="nav-title">Latest Posts</dt>
|
|
13
|
+
{% for post in site.posts limit:5 %}
|
|
14
|
+
<dd class="nav-item">
|
|
15
|
+
<a href="{{ post.url | prepend: site.baseurl }}">
|
|
16
|
+
{{ post.title | truncate: 35 }}
|
|
17
|
+
</a>
|
|
18
|
+
</dd>
|
|
19
|
+
{% endfor %}
|
|
20
|
+
</dl>
|
|
21
|
+
|
|
22
|
+
<dl class="footer-nav">
|
|
23
|
+
<dt class="nav-title">Title</dt>
|
|
24
|
+
<dd class="nav-item">
|
|
25
|
+
<a href="#">Link</a>
|
|
26
|
+
</dd>
|
|
27
|
+
</dl>
|
|
28
|
+
|
|
29
|
+
<dl class="footer-nav">
|
|
30
|
+
<dt class="nav-title">Title</dt>
|
|
31
|
+
<dd class="nav-item">
|
|
32
|
+
<a href="mailto://mail@example.com">
|
|
33
|
+
<i class="fa fa-envelope" aria-hidden="true"></i>
|
|
34
|
+
mail@example.com
|
|
35
|
+
</a>
|
|
36
|
+
</dd>
|
|
37
|
+
<dd class="nav-item">
|
|
38
|
+
<a href="https://www.twitter.com/twitter-handle">
|
|
39
|
+
<i class="fa fa-twitter" aria-hidden="true"></i>
|
|
40
|
+
@twitter-handle
|
|
41
|
+
</a>
|
|
42
|
+
</dd>
|
|
43
|
+
</dl>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div class="footer-copyright text-center">
|
|
47
|
+
{{ site.title }} |
|
|
48
|
+
<a href="{{ site.url }}">your.awesome.domain</a>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
<script type='text/javascript' src="{{ site.url }}/js/jquery-2.2.4.min.js"></script>
|
|
53
|
+
<script type='text/javascript' src="{{ site.url }}/js/bootstrap-3.3.6.min.js"></script>
|
|
54
|
+
<script type='text/javascript' src="{{ site.url }}/js/icheck-1.0.1.min.js"></script>
|
|
55
|
+
<script type='text/javascript' src="{{ site.url }}/js/jquery.fs.selecter-3.1.2.min.js"></script>
|
|
56
|
+
<script type='text/javascript' src="{{ site.url }}/js/jquery.fs.stepper-3.0.7.min.js"></script>
|
|
57
|
+
|
|
58
|
+
{% if page.custom_js %}
|
|
59
|
+
{% for js_file in page.custom_js %}
|
|
60
|
+
<script src='{{ site.url }}/js/{{ js_file }}.js' type="text/javascript"></script>
|
|
61
|
+
{% endfor %}
|
|
62
|
+
{% endif %}
|
|
63
|
+
</footer>
|
data/_includes/head.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
5
|
+
|
|
6
|
+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
|
7
|
+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
|
8
|
+
|
|
9
|
+
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
|
|
10
|
+
|
|
11
|
+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
|
|
12
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
|
13
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
|
|
14
|
+
</head>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<header class="site-header">
|
|
2
|
+
<nav class="navbar navbar-default light-grey">
|
|
3
|
+
<div class="container-fluid">
|
|
4
|
+
<div class="navbar-header">
|
|
5
|
+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
6
|
+
<span class="sr-only">Navigation</span>
|
|
7
|
+
<span class="icon-bar"></span>
|
|
8
|
+
<span class="icon-bar"></span>
|
|
9
|
+
<span class="icon-bar"></span>
|
|
10
|
+
</button>
|
|
11
|
+
|
|
12
|
+
<a href="/">
|
|
13
|
+
<img src="{{ site.url }}/img/logo.jpeg" height="65">
|
|
14
|
+
</a>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<div id="navbar" class="collapse navbar-collapse">
|
|
18
|
+
<ul class="nav navbar-nav">
|
|
19
|
+
<li class="dropdown">
|
|
20
|
+
<a aria-expanded="false" aria-haspopup="true" class="dropdown-toggle" data-toggle="dropdown" href="#" role="button">
|
|
21
|
+
Welcome <span class="caret"></span>
|
|
22
|
+
</a>
|
|
23
|
+
</li>
|
|
24
|
+
<li><a href="#">A link</a></li>
|
|
25
|
+
<li><a href="#">Another link</a></li>
|
|
26
|
+
</ul>
|
|
27
|
+
<form class="navbar-form navbar-right" action="https://google.com/search" method="get" role="search">
|
|
28
|
+
<div class="form-group">
|
|
29
|
+
<input type="text" class="form-control" placeholder="Search term">
|
|
30
|
+
<input type="hidden" name="q" value="site:{{ site.url | host_from_url }}" />
|
|
31
|
+
</div>
|
|
32
|
+
<button type="submit" class="btn btn-default">Submit</button>
|
|
33
|
+
</form>
|
|
34
|
+
</div><!--/.nav-collapse -->
|
|
35
|
+
</div>
|
|
36
|
+
</nav>
|
|
37
|
+
</header>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
{% include head.html %}
|
|
4
|
+
|
|
5
|
+
<body>
|
|
6
|
+
{% include header.html %}
|
|
7
|
+
|
|
8
|
+
<div class="container-fluid">
|
|
9
|
+
<div class="container content">
|
|
10
|
+
{{ content }}
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<br/><br/>
|
|
14
|
+
|
|
15
|
+
{% include footer.html %}
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
$navbar-background-color: #FC6E51;
|
|
3
|
+
|
|
4
|
+
@import
|
|
5
|
+
|
|
6
|
+
// Variables, Extends, Mixins
|
|
7
|
+
"bootflat/global",
|
|
8
|
+
|
|
9
|
+
// Base
|
|
10
|
+
"bootflat/typography",
|
|
11
|
+
"bootflat/button",
|
|
12
|
+
"bootflat/button_group",
|
|
13
|
+
"bootflat/label_badge",
|
|
14
|
+
"bootflat/tooltip",
|
|
15
|
+
"bootflat/popover",
|
|
16
|
+
"bootflat/progress",
|
|
17
|
+
"bootflat/breadcrumb",
|
|
18
|
+
"bootflat/pagination",
|
|
19
|
+
"bootflat/pager",
|
|
20
|
+
"bootflat/form",
|
|
21
|
+
"bootflat/stepper",
|
|
22
|
+
"bootflat/selecter",
|
|
23
|
+
"bootflat/checkbox_radio",
|
|
24
|
+
"bootflat/toggle",
|
|
25
|
+
"bootflat/calendar",
|
|
26
|
+
"bootflat/pricing",
|
|
27
|
+
"bootflat/alert",
|
|
28
|
+
"bootflat/tab",
|
|
29
|
+
"bootflat/pill",
|
|
30
|
+
"bootflat/navbar",
|
|
31
|
+
"bootflat/list",
|
|
32
|
+
"bootflat/media_list",
|
|
33
|
+
"bootflat/modal",
|
|
34
|
+
"bootflat/well",
|
|
35
|
+
"bootflat/thumbnail",
|
|
36
|
+
"bootflat/jumbotron",
|
|
37
|
+
"bootflat/panel",
|
|
38
|
+
"bootflat/accordion",
|
|
39
|
+
"bootflat/footer",
|
|
40
|
+
"bootflat/timeline",
|
|
41
|
+
"bootflat/dropdown";
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
|
3
|
+
* Copyright 2011-2015 Twitter, Inc.
|
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Core variables and mixins
|
|
8
|
+
@import "bootstrap/variables";
|
|
9
|
+
@import "bootstrap/mixins";
|
|
10
|
+
|
|
11
|
+
// Reset and dependencies
|
|
12
|
+
@import "bootstrap/normalize";
|
|
13
|
+
@import "bootstrap/print";
|
|
14
|
+
@import "bootstrap/glyphicons";
|
|
15
|
+
|
|
16
|
+
// Core CSS
|
|
17
|
+
@import "bootstrap/scaffolding";
|
|
18
|
+
@import "bootstrap/type";
|
|
19
|
+
@import "bootstrap/code";
|
|
20
|
+
@import "bootstrap/grid";
|
|
21
|
+
@import "bootstrap/tables";
|
|
22
|
+
@import "bootstrap/forms";
|
|
23
|
+
@import "bootstrap/buttons";
|
|
24
|
+
|
|
25
|
+
// Components
|
|
26
|
+
@import "bootstrap/component-animations";
|
|
27
|
+
@import "bootstrap/dropdowns";
|
|
28
|
+
@import "bootstrap/button-groups";
|
|
29
|
+
@import "bootstrap/input-groups";
|
|
30
|
+
@import "bootstrap/navs";
|
|
31
|
+
@import "bootstrap/navbar";
|
|
32
|
+
@import "bootstrap/breadcrumbs";
|
|
33
|
+
@import "bootstrap/pagination";
|
|
34
|
+
@import "bootstrap/pager";
|
|
35
|
+
@import "bootstrap/labels";
|
|
36
|
+
@import "bootstrap/badges";
|
|
37
|
+
@import "bootstrap/jumbotron";
|
|
38
|
+
@import "bootstrap/thumbnails";
|
|
39
|
+
@import "bootstrap/alerts";
|
|
40
|
+
@import "bootstrap/progress-bars";
|
|
41
|
+
@import "bootstrap/media";
|
|
42
|
+
@import "bootstrap/list-group";
|
|
43
|
+
@import "bootstrap/panels";
|
|
44
|
+
@import "bootstrap/responsive-embed";
|
|
45
|
+
@import "bootstrap/wells";
|
|
46
|
+
@import "bootstrap/close";
|
|
47
|
+
|
|
48
|
+
// Components w/ JavaScript
|
|
49
|
+
@import "bootstrap/modals";
|
|
50
|
+
@import "bootstrap/tooltip";
|
|
51
|
+
@import "bootstrap/popovers";
|
|
52
|
+
@import "bootstrap/carousel";
|
|
53
|
+
|
|
54
|
+
// Utility classes
|
|
55
|
+
@import "bootstrap/utilities";
|
|
56
|
+
@import "bootstrap/responsive-utilities";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
|
|
3
|
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
@import "font-awesome/variables";
|
|
7
|
+
@import "font-awesome/mixins";
|
|
8
|
+
@import "font-awesome/path";
|
|
9
|
+
@import "font-awesome/core";
|
|
10
|
+
@import "font-awesome/larger";
|
|
11
|
+
@import "font-awesome/fixed-width";
|
|
12
|
+
@import "font-awesome/list";
|
|
13
|
+
@import "font-awesome/bordered-pulled";
|
|
14
|
+
@import "font-awesome/animated";
|
|
15
|
+
@import "font-awesome/rotated-flipped";
|
|
16
|
+
@import "font-awesome/stacked";
|
|
17
|
+
@import "font-awesome/icons";
|
|
18
|
+
@import "font-awesome/screen-reader";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// No overrides so far
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Syntax highlighting styles
|
|
3
|
+
*/
|
|
4
|
+
.highlight {
|
|
5
|
+
background: #fff;
|
|
6
|
+
margin-bottom: $spacing-unit / 2;
|
|
7
|
+
|
|
8
|
+
.highlighter-rouge & {
|
|
9
|
+
background: #eef;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.c { color: #998; font-style: italic } // Comment
|
|
13
|
+
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
|
14
|
+
.k { font-weight: bold } // Keyword
|
|
15
|
+
.o { font-weight: bold } // Operator
|
|
16
|
+
.cm { color: #998; font-style: italic } // Comment.Multiline
|
|
17
|
+
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
|
18
|
+
.c1 { color: #998; font-style: italic } // Comment.Single
|
|
19
|
+
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
|
20
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
|
21
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
|
22
|
+
.ge { font-style: italic } // Generic.Emph
|
|
23
|
+
.gr { color: #a00 } // Generic.Error
|
|
24
|
+
.gh { color: #999 } // Generic.Heading
|
|
25
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
|
26
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
|
27
|
+
.go { color: #888 } // Generic.Output
|
|
28
|
+
.gp { color: #555 } // Generic.Prompt
|
|
29
|
+
.gs { font-weight: bold } // Generic.Strong
|
|
30
|
+
.gu { color: #aaa } // Generic.Subheading
|
|
31
|
+
.gt { color: #a00 } // Generic.Traceback
|
|
32
|
+
.kc { font-weight: bold } // Keyword.Constant
|
|
33
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
|
34
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
|
35
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
|
36
|
+
.kt { color: #458; font-weight: bold } // Keyword.Type
|
|
37
|
+
.m { color: #099 } // Literal.Number
|
|
38
|
+
.s { color: #d14 } // Literal.String
|
|
39
|
+
.na { color: #008080 } // Name.Attribute
|
|
40
|
+
.nb { color: #0086B3 } // Name.Builtin
|
|
41
|
+
.nc { color: #458; font-weight: bold } // Name.Class
|
|
42
|
+
.no { color: #008080 } // Name.Constant
|
|
43
|
+
.ni { color: #800080 } // Name.Entity
|
|
44
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
|
45
|
+
.nf { color: #900; font-weight: bold } // Name.Function
|
|
46
|
+
.nn { color: #555 } // Name.Namespace
|
|
47
|
+
.nt { color: #000080 } // Name.Tag
|
|
48
|
+
.nv { color: #008080 } // Name.Variable
|
|
49
|
+
.ow { font-weight: bold } // Operator.Word
|
|
50
|
+
.w { color: #bbb } // Text.Whitespace
|
|
51
|
+
.mf { color: #099 } // Literal.Number.Float
|
|
52
|
+
.mh { color: #099 } // Literal.Number.Hex
|
|
53
|
+
.mi { color: #099 } // Literal.Number.Integer
|
|
54
|
+
.mo { color: #099 } // Literal.Number.Oct
|
|
55
|
+
.sb { color: #d14 } // Literal.String.Backtick
|
|
56
|
+
.sc { color: #d14 } // Literal.String.Char
|
|
57
|
+
.sd { color: #d14 } // Literal.String.Doc
|
|
58
|
+
.s2 { color: #d14 } // Literal.String.Double
|
|
59
|
+
.se { color: #d14 } // Literal.String.Escape
|
|
60
|
+
.sh { color: #d14 } // Literal.String.Heredoc
|
|
61
|
+
.si { color: #d14 } // Literal.String.Interpol
|
|
62
|
+
.sx { color: #d14 } // Literal.String.Other
|
|
63
|
+
.sr { color: #009926 } // Literal.String.Regex
|
|
64
|
+
.s1 { color: #d14 } // Literal.String.Single
|
|
65
|
+
.ss { color: #990073 } // Literal.String.Symbol
|
|
66
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
|
67
|
+
.vc { color: #008080 } // Name.Variable.Class
|
|
68
|
+
.vg { color: #008080 } // Name.Variable.Global
|
|
69
|
+
.vi { color: #008080 } // Name.Variable.Instance
|
|
70
|
+
.il { color: #099 } // Literal.Number.Integer.Long
|
|
71
|
+
}
|