valadocbr-theme 0.1.0
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 +48 -0
- data/_includes/disqus_comments.html +20 -0
- data/_includes/footer.html +4 -0
- data/_includes/google-analytics.html +11 -0
- data/_includes/head.html +27 -0
- data/_includes/header.html +0 -0
- data/_includes/icon-github.html +1 -0
- data/_includes/icon-github.svg +1 -0
- data/_includes/icon-twitter.html +1 -0
- data/_includes/icon-twitter.svg +1 -0
- data/_layouts/default.html +20 -0
- data/_layouts/home.html +18 -0
- data/_layouts/page.html +14 -0
- data/_layouts/post.html +25 -0
- data/_sass/bootstrap/_bootstrap-compass.scss +9 -0
- data/_sass/bootstrap/_bootstrap-mincer.scss +19 -0
- data/_sass/bootstrap/_bootstrap-sprockets.scss +9 -0
- data/_sass/bootstrap/_bootstrap.scss +56 -0
- data/_sass/bootstrap/bootstrap/_alerts.scss +73 -0
- data/_sass/bootstrap/bootstrap/_badges.scss +68 -0
- data/_sass/bootstrap/bootstrap/_breadcrumbs.scss +28 -0
- data/_sass/bootstrap/bootstrap/_button-groups.scss +244 -0
- data/_sass/bootstrap/bootstrap/_buttons.scss +168 -0
- data/_sass/bootstrap/bootstrap/_carousel.scss +270 -0
- data/_sass/bootstrap/bootstrap/_close.scss +36 -0
- data/_sass/bootstrap/bootstrap/_code.scss +69 -0
- data/_sass/bootstrap/bootstrap/_component-animations.scss +37 -0
- data/_sass/bootstrap/bootstrap/_dropdowns.scss +216 -0
- data/_sass/bootstrap/bootstrap/_forms.scss +617 -0
- data/_sass/bootstrap/bootstrap/_glyphicons.scss +307 -0
- data/_sass/bootstrap/bootstrap/_grid.scss +84 -0
- data/_sass/bootstrap/bootstrap/_input-groups.scss +171 -0
- data/_sass/bootstrap/bootstrap/_jumbotron.scss +54 -0
- data/_sass/bootstrap/bootstrap/_labels.scss +66 -0
- data/_sass/bootstrap/bootstrap/_list-group.scss +130 -0
- data/_sass/bootstrap/bootstrap/_media.scss +66 -0
- data/_sass/bootstrap/bootstrap/_mixins.scss +40 -0
- data/_sass/bootstrap/bootstrap/_modals.scss +150 -0
- data/_sass/bootstrap/bootstrap/_navbar.scss +662 -0
- data/_sass/bootstrap/bootstrap/_navs.scss +242 -0
- data/_sass/bootstrap/bootstrap/_normalize.scss +424 -0
- data/_sass/bootstrap/bootstrap/_pager.scss +54 -0
- data/_sass/bootstrap/bootstrap/_pagination.scss +89 -0
- data/_sass/bootstrap/bootstrap/_panels.scss +271 -0
- data/_sass/bootstrap/bootstrap/_popovers.scss +131 -0
- data/_sass/bootstrap/bootstrap/_print.scss +101 -0
- data/_sass/bootstrap/bootstrap/_progress-bars.scss +87 -0
- data/_sass/bootstrap/bootstrap/_responsive-embed.scss +35 -0
- data/_sass/bootstrap/bootstrap/_responsive-utilities.scss +179 -0
- data/_sass/bootstrap/bootstrap/_scaffolding.scss +161 -0
- data/_sass/bootstrap/bootstrap/_tables.scss +234 -0
- data/_sass/bootstrap/bootstrap/_theme.scss +291 -0
- data/_sass/bootstrap/bootstrap/_thumbnails.scss +38 -0
- data/_sass/bootstrap/bootstrap/_tooltip.scss +101 -0
- data/_sass/bootstrap/bootstrap/_type.scss +298 -0
- data/_sass/bootstrap/bootstrap/_utilities.scss +55 -0
- data/_sass/bootstrap/bootstrap/_variables.scss +874 -0
- data/_sass/bootstrap/bootstrap/_wells.scss +29 -0
- data/_sass/bootstrap/bootstrap/mixins/_alerts.scss +14 -0
- data/_sass/bootstrap/bootstrap/mixins/_background-variant.scss +12 -0
- data/_sass/bootstrap/bootstrap/mixins/_border-radius.scss +18 -0
- data/_sass/bootstrap/bootstrap/mixins/_buttons.scss +65 -0
- data/_sass/bootstrap/bootstrap/mixins/_center-block.scss +7 -0
- data/_sass/bootstrap/bootstrap/mixins/_clearfix.scss +22 -0
- data/_sass/bootstrap/bootstrap/mixins/_forms.scss +88 -0
- data/_sass/bootstrap/bootstrap/mixins/_gradients.scss +58 -0
- data/_sass/bootstrap/bootstrap/mixins/_grid-framework.scss +81 -0
- data/_sass/bootstrap/bootstrap/mixins/_grid.scss +122 -0
- data/_sass/bootstrap/bootstrap/mixins/_hide-text.scss +21 -0
- data/_sass/bootstrap/bootstrap/mixins/_image.scss +33 -0
- data/_sass/bootstrap/bootstrap/mixins/_labels.scss +12 -0
- data/_sass/bootstrap/bootstrap/mixins/_list-group.scss +32 -0
- data/_sass/bootstrap/bootstrap/mixins/_nav-divider.scss +10 -0
- data/_sass/bootstrap/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/_sass/bootstrap/bootstrap/mixins/_opacity.scss +8 -0
- data/_sass/bootstrap/bootstrap/mixins/_pagination.scss +24 -0
- data/_sass/bootstrap/bootstrap/mixins/_panels.scss +24 -0
- data/_sass/bootstrap/bootstrap/mixins/_progress-bar.scss +10 -0
- data/_sass/bootstrap/bootstrap/mixins/_reset-filter.scss +8 -0
- data/_sass/bootstrap/bootstrap/mixins/_reset-text.scss +18 -0
- data/_sass/bootstrap/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/_sass/bootstrap/bootstrap/mixins/_size.scss +10 -0
- data/_sass/bootstrap/bootstrap/mixins/_tab-focus.scss +9 -0
- data/_sass/bootstrap/bootstrap/mixins/_table-row.scss +28 -0
- data/_sass/bootstrap/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/_sass/bootstrap/bootstrap/mixins/_text-overflow.scss +8 -0
- data/_sass/bootstrap/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/_sass/elementary.scss +82 -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 +789 -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 +800 -0
- data/_sass/font-awesome/font-awesome.scss +18 -0
- data/assets/css/main.scss +12 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/assets/fonts/font-awesome/FontAwesome.otf +0 -0
- data/assets/fonts/font-awesome/fontawesome-webfont.eot +0 -0
- data/assets/fonts/font-awesome/fontawesome-webfont.svg +2671 -0
- data/assets/fonts/font-awesome/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/font-awesome/fontawesome-webfont.woff +0 -0
- data/assets/fonts/font-awesome/fontawesome-webfont.woff2 +0 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/fontawesome.js +18 -0
- data/assets/js/jquery.min.js +4 -0
- data/assets/js/script.js +13 -0
- metadata +206 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
// Icon Sizes
|
2
|
+
// -------------------------
|
3
|
+
|
4
|
+
/* makes the font 33% larger relative to the icon container */
|
5
|
+
.#{$fa-css-prefix}-lg {
|
6
|
+
font-size: (4em / 3);
|
7
|
+
line-height: (3em / 4);
|
8
|
+
vertical-align: -15%;
|
9
|
+
}
|
10
|
+
.#{$fa-css-prefix}-2x { font-size: 2em; }
|
11
|
+
.#{$fa-css-prefix}-3x { font-size: 3em; }
|
12
|
+
.#{$fa-css-prefix}-4x { font-size: 4em; }
|
13
|
+
.#{$fa-css-prefix}-5x { font-size: 5em; }
|
@@ -0,0 +1,19 @@
|
|
1
|
+
// List Icons
|
2
|
+
// -------------------------
|
3
|
+
|
4
|
+
.#{$fa-css-prefix}-ul {
|
5
|
+
padding-left: 0;
|
6
|
+
margin-left: $fa-li-width;
|
7
|
+
list-style-type: none;
|
8
|
+
> li { position: relative; }
|
9
|
+
}
|
10
|
+
.#{$fa-css-prefix}-li {
|
11
|
+
position: absolute;
|
12
|
+
left: -$fa-li-width;
|
13
|
+
width: $fa-li-width;
|
14
|
+
top: (2em / 14);
|
15
|
+
text-align: center;
|
16
|
+
&.#{$fa-css-prefix}-lg {
|
17
|
+
left: -$fa-li-width + (4em / 14);
|
18
|
+
}
|
19
|
+
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
// Mixins
|
2
|
+
// --------------------------
|
3
|
+
|
4
|
+
@mixin fa-icon() {
|
5
|
+
display: inline-block;
|
6
|
+
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
|
7
|
+
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
8
|
+
text-rendering: auto; // optimizelegibility throws things off #1094
|
9
|
+
-webkit-font-smoothing: antialiased;
|
10
|
+
-moz-osx-font-smoothing: grayscale;
|
11
|
+
|
12
|
+
}
|
13
|
+
|
14
|
+
@mixin fa-icon-rotate($degrees, $rotation) {
|
15
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
|
16
|
+
-webkit-transform: rotate($degrees);
|
17
|
+
-ms-transform: rotate($degrees);
|
18
|
+
transform: rotate($degrees);
|
19
|
+
}
|
20
|
+
|
21
|
+
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
22
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
|
23
|
+
-webkit-transform: scale($horiz, $vert);
|
24
|
+
-ms-transform: scale($horiz, $vert);
|
25
|
+
transform: scale($horiz, $vert);
|
26
|
+
}
|
27
|
+
|
28
|
+
|
29
|
+
// Only display content to screen readers. A la Bootstrap 4.
|
30
|
+
//
|
31
|
+
// See: http://a11yproject.com/posts/how-to-hide-content/
|
32
|
+
|
33
|
+
@mixin sr-only {
|
34
|
+
position: absolute;
|
35
|
+
width: 1px;
|
36
|
+
height: 1px;
|
37
|
+
padding: 0;
|
38
|
+
margin: -1px;
|
39
|
+
overflow: hidden;
|
40
|
+
clip: rect(0,0,0,0);
|
41
|
+
border: 0;
|
42
|
+
}
|
43
|
+
|
44
|
+
// Use in conjunction with .sr-only to only display content when it's focused.
|
45
|
+
//
|
46
|
+
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
47
|
+
//
|
48
|
+
// Credit: HTML5 Boilerplate
|
49
|
+
|
50
|
+
@mixin sr-only-focusable {
|
51
|
+
&:active,
|
52
|
+
&:focus {
|
53
|
+
position: static;
|
54
|
+
width: auto;
|
55
|
+
height: auto;
|
56
|
+
margin: 0;
|
57
|
+
overflow: visible;
|
58
|
+
clip: auto;
|
59
|
+
}
|
60
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/* FONT PATH
|
2
|
+
* -------------------------- */
|
3
|
+
|
4
|
+
@font-face {
|
5
|
+
font-family: 'FontAwesome';
|
6
|
+
src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
|
7
|
+
src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
|
8
|
+
url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
|
9
|
+
url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
|
10
|
+
url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
|
11
|
+
url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
|
12
|
+
// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
|
13
|
+
font-weight: normal;
|
14
|
+
font-style: normal;
|
15
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
// Rotated & Flipped Icons
|
2
|
+
// -------------------------
|
3
|
+
|
4
|
+
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
|
5
|
+
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
|
6
|
+
.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
|
7
|
+
|
8
|
+
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
|
9
|
+
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
|
10
|
+
|
11
|
+
// Hook for IE8-9
|
12
|
+
// -------------------------
|
13
|
+
|
14
|
+
:root .#{$fa-css-prefix}-rotate-90,
|
15
|
+
:root .#{$fa-css-prefix}-rotate-180,
|
16
|
+
:root .#{$fa-css-prefix}-rotate-270,
|
17
|
+
:root .#{$fa-css-prefix}-flip-horizontal,
|
18
|
+
:root .#{$fa-css-prefix}-flip-vertical {
|
19
|
+
filter: none;
|
20
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
// Stacked Icons
|
2
|
+
// -------------------------
|
3
|
+
|
4
|
+
.#{$fa-css-prefix}-stack {
|
5
|
+
position: relative;
|
6
|
+
display: inline-block;
|
7
|
+
width: 2em;
|
8
|
+
height: 2em;
|
9
|
+
line-height: 2em;
|
10
|
+
vertical-align: middle;
|
11
|
+
}
|
12
|
+
.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
|
13
|
+
position: absolute;
|
14
|
+
left: 0;
|
15
|
+
width: 100%;
|
16
|
+
text-align: center;
|
17
|
+
}
|
18
|
+
.#{$fa-css-prefix}-stack-1x { line-height: inherit; }
|
19
|
+
.#{$fa-css-prefix}-stack-2x { font-size: 2em; }
|
20
|
+
.#{$fa-css-prefix}-inverse { color: $fa-inverse; }
|