jekyll-theme-clean-portfolio 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +674 -0
  3. data/README.md +54 -0
  4. data/_includes/footer.html +30 -0
  5. data/_includes/head.html +25 -0
  6. data/_includes/header.html +74 -0
  7. data/_includes/modal_img.html +34 -0
  8. data/_layouts/blank.html +7 -0
  9. data/_layouts/default.html +16 -0
  10. data/_layouts/page.html +9 -0
  11. data/_layouts/post.html +21 -0
  12. data/assets/css/bootstrap/_alert.scss +51 -0
  13. data/assets/css/bootstrap/_badge.scss +47 -0
  14. data/assets/css/bootstrap/_breadcrumb.scss +38 -0
  15. data/assets/css/bootstrap/_button-group.scss +166 -0
  16. data/assets/css/bootstrap/_buttons.scss +143 -0
  17. data/assets/css/bootstrap/_card.scss +270 -0
  18. data/assets/css/bootstrap/_carousel.scss +191 -0
  19. data/assets/css/bootstrap/_close.scss +34 -0
  20. data/assets/css/bootstrap/_code.scss +56 -0
  21. data/assets/css/bootstrap/_custom-forms.scss +297 -0
  22. data/assets/css/bootstrap/_dropdown.scss +131 -0
  23. data/assets/css/bootstrap/_forms.scss +333 -0
  24. data/assets/css/bootstrap/_functions.scss +86 -0
  25. data/assets/css/bootstrap/_grid.scss +52 -0
  26. data/assets/css/bootstrap/_images.scss +42 -0
  27. data/assets/css/bootstrap/_input-group.scss +159 -0
  28. data/assets/css/bootstrap/_jumbotron.scss +16 -0
  29. data/assets/css/bootstrap/_list-group.scss +115 -0
  30. data/assets/css/bootstrap/_media.scss +8 -0
  31. data/assets/css/bootstrap/_mixins.scss +42 -0
  32. data/assets/css/bootstrap/_modal.scss +168 -0
  33. data/assets/css/bootstrap/_nav.scss +118 -0
  34. data/assets/css/bootstrap/_navbar.scss +311 -0
  35. data/assets/css/bootstrap/_pagination.scss +77 -0
  36. data/assets/css/bootstrap/_popover.scss +183 -0
  37. data/assets/css/bootstrap/_print.scss +124 -0
  38. data/assets/css/bootstrap/_progress.scss +33 -0
  39. data/assets/css/bootstrap/_reboot.scss +482 -0
  40. data/assets/css/bootstrap/_root.scss +19 -0
  41. data/assets/css/bootstrap/_tables.scss +180 -0
  42. data/assets/css/bootstrap/_tooltip.scss +115 -0
  43. data/assets/css/bootstrap/_transitions.scss +36 -0
  44. data/assets/css/bootstrap/_type.scss +125 -0
  45. data/assets/css/bootstrap/_utilities.scss +14 -0
  46. data/assets/css/bootstrap/_variables.scss +894 -0
  47. data/assets/css/bootstrap/bootstrap-grid.scss +32 -0
  48. data/assets/css/bootstrap/bootstrap-reboot.scss +12 -0
  49. data/assets/css/bootstrap/bootstrap.scss +42 -0
  50. data/assets/css/bootstrap/mixins/_alert.scss +13 -0
  51. data/assets/css/bootstrap/mixins/_background-variant.scss +21 -0
  52. data/assets/css/bootstrap/mixins/_badge.scss +12 -0
  53. data/assets/css/bootstrap/mixins/_border-radius.scss +35 -0
  54. data/assets/css/bootstrap/mixins/_box-shadow.scss +5 -0
  55. data/assets/css/bootstrap/mixins/_breakpoints.scss +123 -0
  56. data/assets/css/bootstrap/mixins/_buttons.scss +109 -0
  57. data/assets/css/bootstrap/mixins/_caret.scss +65 -0
  58. data/assets/css/bootstrap/mixins/_clearfix.scss +7 -0
  59. data/assets/css/bootstrap/mixins/_float.scss +11 -0
  60. data/assets/css/bootstrap/mixins/_forms.scss +137 -0
  61. data/assets/css/bootstrap/mixins/_gradients.scss +45 -0
  62. data/assets/css/bootstrap/mixins/_grid-framework.scss +67 -0
  63. data/assets/css/bootstrap/mixins/_grid.scss +52 -0
  64. data/assets/css/bootstrap/mixins/_hover.scss +39 -0
  65. data/assets/css/bootstrap/mixins/_image.scss +36 -0
  66. data/assets/css/bootstrap/mixins/_list-group.scss +21 -0
  67. data/assets/css/bootstrap/mixins/_lists.scss +7 -0
  68. data/assets/css/bootstrap/mixins/_nav-divider.scss +10 -0
  69. data/assets/css/bootstrap/mixins/_navbar-align.scss +10 -0
  70. data/assets/css/bootstrap/mixins/_pagination.scss +22 -0
  71. data/assets/css/bootstrap/mixins/_reset-text.scss +17 -0
  72. data/assets/css/bootstrap/mixins/_resize.scss +6 -0
  73. data/assets/css/bootstrap/mixins/_screen-reader.scss +35 -0
  74. data/assets/css/bootstrap/mixins/_size.scss +6 -0
  75. data/assets/css/bootstrap/mixins/_table-row.scss +30 -0
  76. data/assets/css/bootstrap/mixins/_text-emphasis.scss +14 -0
  77. data/assets/css/bootstrap/mixins/_text-hide.scss +9 -0
  78. data/assets/css/bootstrap/mixins/_text-truncate.scss +8 -0
  79. data/assets/css/bootstrap/mixins/_transition.scss +9 -0
  80. data/assets/css/bootstrap/mixins/_visibility.scss +7 -0
  81. data/assets/css/bootstrap/utilities/_align.scss +8 -0
  82. data/assets/css/bootstrap/utilities/_background.scss +19 -0
  83. data/assets/css/bootstrap/utilities/_borders.scss +59 -0
  84. data/assets/css/bootstrap/utilities/_clearfix.scss +3 -0
  85. data/assets/css/bootstrap/utilities/_display.scss +38 -0
  86. data/assets/css/bootstrap/utilities/_embed.scss +52 -0
  87. data/assets/css/bootstrap/utilities/_flex.scss +46 -0
  88. data/assets/css/bootstrap/utilities/_float.scss +9 -0
  89. data/assets/css/bootstrap/utilities/_position.scss +36 -0
  90. data/assets/css/bootstrap/utilities/_screenreaders.scss +11 -0
  91. data/assets/css/bootstrap/utilities/_sizing.scss +12 -0
  92. data/assets/css/bootstrap/utilities/_spacing.scss +51 -0
  93. data/assets/css/bootstrap/utilities/_text.scss +52 -0
  94. data/assets/css/bootstrap/utilities/_visibility.scss +11 -0
  95. data/assets/css/custom/includes/_base.scss +240 -0
  96. data/assets/css/custom/includes/_layout.scss +27 -0
  97. data/assets/css/custom/includes/_syntax-highlighting.scss +67 -0
  98. data/assets/css/main.scss +100 -0
  99. data/assets/docs/dummy.pdf +0 -0
  100. data/assets/fonts/Segoe UI Bold Italic.ttf +0 -0
  101. data/assets/fonts/Segoe UI Bold.ttf +0 -0
  102. data/assets/fonts/Segoe UI Italic.ttf +0 -0
  103. data/assets/fonts/Segoe UI.ttf +0 -0
  104. data/assets/fonts/weblysleekuil.eot +0 -0
  105. data/assets/fonts/weblysleekuil.svg +151 -0
  106. data/assets/fonts/weblysleekuil.ttf +0 -0
  107. data/assets/fonts/weblysleekuil.woff +0 -0
  108. data/assets/icons/icon.png +0 -0
  109. data/assets/icons/icon_a.png +0 -0
  110. data/assets/icons/icon_b.png +0 -0
  111. data/assets/icons/icon_c.png +0 -0
  112. data/assets/images/profile.png +0 -0
  113. data/assets/scripts/all.js +4387 -0
  114. data/assets/scripts/yaml.min.js +1269 -0
  115. metadata +395 -0
@@ -0,0 +1,7 @@
1
+ @mixin clearfix() {
2
+ &::after {
3
+ display: block;
4
+ clear: both;
5
+ content: "";
6
+ }
7
+ }
@@ -0,0 +1,11 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ @mixin float-left {
4
+ float: left !important;
5
+ }
6
+ @mixin float-right {
7
+ float: right !important;
8
+ }
9
+ @mixin float-none {
10
+ float: none !important;
11
+ }
@@ -0,0 +1,137 @@
1
+ // Form control focus state
2
+ //
3
+ // Generate a customized focus state and for any input with the specified color,
4
+ // which defaults to the `$input-focus-border-color` variable.
5
+ //
6
+ // We highly encourage you to not customize the default value, but instead use
7
+ // this to tweak colors on an as-needed basis. This aesthetic change is based on
8
+ // WebKit's default styles, but applicable to a wider range of browsers. Its
9
+ // usability and accessibility should be taken into account with any change.
10
+ //
11
+ // Example usage: change the default blue border and shadow to white for better
12
+ // contrast against a dark gray background.
13
+ @mixin form-control-focus() {
14
+ &:focus {
15
+ color: $input-focus-color;
16
+ background-color: $input-focus-bg;
17
+ border-color: $input-focus-border-color;
18
+ outline: 0;
19
+ // Avoid using mixin so we can pass custom focus shadow properly
20
+ @if $enable-shadows {
21
+ box-shadow: $input-box-shadow, $input-focus-box-shadow;
22
+ } @else {
23
+ box-shadow: $input-focus-box-shadow;
24
+ }
25
+ }
26
+ }
27
+
28
+
29
+ @mixin form-validation-state($state, $color) {
30
+ .#{$state}-feedback {
31
+ display: none;
32
+ width: 100%;
33
+ margin-top: $form-feedback-margin-top;
34
+ font-size: $form-feedback-font-size;
35
+ color: $color;
36
+ }
37
+
38
+ .#{$state}-tooltip {
39
+ position: absolute;
40
+ top: 100%;
41
+ z-index: 5;
42
+ display: none;
43
+ max-width: 100%; // Contain to parent when possible
44
+ padding: .5rem;
45
+ margin-top: .1rem;
46
+ font-size: .875rem;
47
+ line-height: 1;
48
+ color: #fff;
49
+ background-color: rgba($color, .8);
50
+ border-radius: .2rem;
51
+ }
52
+
53
+ .form-control,
54
+ .custom-select {
55
+ .was-validated &:#{$state},
56
+ &.is-#{$state} {
57
+ border-color: $color;
58
+
59
+ &:focus {
60
+ border-color: $color;
61
+ box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
62
+ }
63
+
64
+ ~ .#{$state}-feedback,
65
+ ~ .#{$state}-tooltip {
66
+ display: block;
67
+ }
68
+ }
69
+ }
70
+
71
+ .form-check-input {
72
+ .was-validated &:#{$state},
73
+ &.is-#{$state} {
74
+ ~ .form-check-label {
75
+ color: $color;
76
+ }
77
+
78
+ ~ .#{$state}-feedback,
79
+ ~ .#{$state}-tooltip {
80
+ display: block;
81
+ }
82
+ }
83
+ }
84
+
85
+ .custom-control-input {
86
+ .was-validated &:#{$state},
87
+ &.is-#{$state} {
88
+ ~ .custom-control-label {
89
+ color: $color;
90
+
91
+ &::before {
92
+ background-color: lighten($color, 25%);
93
+ }
94
+ }
95
+
96
+ ~ .#{$state}-feedback,
97
+ ~ .#{$state}-tooltip {
98
+ display: block;
99
+ }
100
+
101
+ &:checked {
102
+ ~ .custom-control-label::before {
103
+ @include gradient-bg(lighten($color, 10%));
104
+ }
105
+ }
106
+
107
+ &:focus {
108
+ ~ .custom-control-label::before {
109
+ box-shadow: 0 0 0 1px $body-bg, 0 0 0 $input-focus-width rgba($color, .25);
110
+ }
111
+ }
112
+ }
113
+ }
114
+
115
+ // custom file
116
+ .custom-file-input {
117
+ .was-validated &:#{$state},
118
+ &.is-#{$state} {
119
+ ~ .custom-file-label {
120
+ border-color: $color;
121
+
122
+ &::before { border-color: inherit; }
123
+ }
124
+
125
+ ~ .#{$state}-feedback,
126
+ ~ .#{$state}-tooltip {
127
+ display: block;
128
+ }
129
+
130
+ &:focus {
131
+ ~ .custom-file-label {
132
+ box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
133
+ }
134
+ }
135
+ }
136
+ }
137
+ }
@@ -0,0 +1,45 @@
1
+ // Gradients
2
+
3
+ @mixin gradient-bg($color) {
4
+ @if $enable-gradients {
5
+ background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x;
6
+ } @else {
7
+ background-color: $color;
8
+ }
9
+ }
10
+
11
+ // Horizontal gradient, from left to right
12
+ //
13
+ // Creates two color stops, start and end, by specifying a color and position for each color stop.
14
+ @mixin gradient-x($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
15
+ background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
16
+ background-repeat: repeat-x;
17
+ }
18
+
19
+ // Vertical gradient, from top to bottom
20
+ //
21
+ // Creates two color stops, start and end, by specifying a color and position for each color stop.
22
+ @mixin gradient-y($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
23
+ background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
24
+ background-repeat: repeat-x;
25
+ }
26
+
27
+ @mixin gradient-directional($start-color: #555, $end-color: #333, $deg: 45deg) {
28
+ background-image: linear-gradient($deg, $start-color, $end-color);
29
+ background-repeat: repeat-x;
30
+ }
31
+ @mixin gradient-x-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
32
+ background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
33
+ background-repeat: no-repeat;
34
+ }
35
+ @mixin gradient-y-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
36
+ background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
37
+ background-repeat: no-repeat;
38
+ }
39
+ @mixin gradient-radial($inner-color: #555, $outer-color: #333) {
40
+ background-image: radial-gradient(circle, $inner-color, $outer-color);
41
+ background-repeat: no-repeat;
42
+ }
43
+ @mixin gradient-striped($color: rgba(255,255,255,.15), $angle: 45deg) {
44
+ background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
45
+ }
@@ -0,0 +1,67 @@
1
+ // Framework grid generation
2
+ //
3
+ // Used only by Bootstrap to generate the correct number of grid classes given
4
+ // any value of `$grid-columns`.
5
+
6
+ @mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
7
+ // Common properties for all breakpoints
8
+ %grid-column {
9
+ position: relative;
10
+ width: 100%;
11
+ min-height: 1px; // Prevent columns from collapsing when empty
12
+ padding-right: ($gutter / 2);
13
+ padding-left: ($gutter / 2);
14
+ }
15
+
16
+ @each $breakpoint in map-keys($breakpoints) {
17
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
18
+
19
+ // Allow columns to stretch full width below their breakpoints
20
+ @for $i from 1 through $columns {
21
+ .col#{$infix}-#{$i} {
22
+ @extend %grid-column;
23
+ }
24
+ }
25
+ .col#{$infix},
26
+ .col#{$infix}-auto {
27
+ @extend %grid-column;
28
+ }
29
+
30
+ @include media-breakpoint-up($breakpoint, $breakpoints) {
31
+ // Provide basic `.col-{bp}` classes for equal-width flexbox columns
32
+ .col#{$infix} {
33
+ flex-basis: 0;
34
+ flex-grow: 1;
35
+ max-width: 100%;
36
+ }
37
+ .col#{$infix}-auto {
38
+ flex: 0 0 auto;
39
+ width: auto;
40
+ max-width: none; // Reset earlier grid tiers
41
+ }
42
+
43
+ @for $i from 1 through $columns {
44
+ .col#{$infix}-#{$i} {
45
+ @include make-col($i, $columns);
46
+ }
47
+ }
48
+
49
+ .order#{$infix}-first { order: -1; }
50
+
51
+ .order#{$infix}-last { order: $columns + 1; }
52
+
53
+ @for $i from 0 through $columns {
54
+ .order#{$infix}-#{$i} { order: $i; }
55
+ }
56
+
57
+ // `$columns - 1` because offsetting by the width of an entire row isn't possible
58
+ @for $i from 0 through ($columns - 1) {
59
+ @if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
60
+ .offset#{$infix}-#{$i} {
61
+ @include make-col-offset($i, $columns);
62
+ }
63
+ }
64
+ }
65
+ }
66
+ }
67
+ }
@@ -0,0 +1,52 @@
1
+ /// Grid system
2
+ //
3
+ // Generate semantic grid columns with these mixins.
4
+
5
+ @mixin make-container() {
6
+ width: 100%;
7
+ padding-right: ($grid-gutter-width / 2);
8
+ padding-left: ($grid-gutter-width / 2);
9
+ margin-right: auto;
10
+ margin-left: auto;
11
+ }
12
+
13
+
14
+ // For each breakpoint, define the maximum width of the container in a media query
15
+ @mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
16
+ @each $breakpoint, $container-max-width in $max-widths {
17
+ @include media-breakpoint-up($breakpoint, $breakpoints) {
18
+ max-width: $container-max-width;
19
+ }
20
+ }
21
+ }
22
+
23
+ @mixin make-row() {
24
+ display: flex;
25
+ flex-wrap: wrap;
26
+ margin-right: ($grid-gutter-width / -2);
27
+ margin-left: ($grid-gutter-width / -2);
28
+ }
29
+
30
+ @mixin make-col-ready() {
31
+ position: relative;
32
+ // Prevent columns from becoming too narrow when at smaller grid tiers by
33
+ // always setting `width: 100%;`. This works because we use `flex` values
34
+ // later on to override this initial width.
35
+ width: 100%;
36
+ min-height: 1px; // Prevent collapsing
37
+ padding-right: ($grid-gutter-width / 2);
38
+ padding-left: ($grid-gutter-width / 2);
39
+ }
40
+
41
+ @mixin make-col($size, $columns: $grid-columns) {
42
+ flex: 0 0 percentage($size / $columns);
43
+ // Add a `max-width` to ensure content within each column does not blow out
44
+ // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
45
+ // do not appear to require this.
46
+ max-width: percentage($size / $columns);
47
+ }
48
+
49
+ @mixin make-col-offset($size, $columns: $grid-columns) {
50
+ $num: $size / $columns;
51
+ margin-left: if($num == 0, 0, percentage($num));
52
+ }
@@ -0,0 +1,39 @@
1
+ // stylelint-disable indentation
2
+
3
+ // Hover mixin and `$enable-hover-media-query` are deprecated.
4
+ //
5
+ // Origally added during our alphas and maintained during betas, this mixin was
6
+ // designed to prevent `:hover` stickiness on iOS—an issue where hover styles
7
+ // would persist after initial touch.
8
+ //
9
+ // For backward compatibility, we've kept these mixins and updated them to
10
+ // always return their regular psuedo-classes instead of a shimmed media query.
11
+ //
12
+ // Issue: https://github.com/twbs/bootstrap/issues/25195
13
+
14
+ @mixin hover {
15
+ &:hover { @content; }
16
+ }
17
+
18
+ @mixin hover-focus {
19
+ &:hover,
20
+ &:focus {
21
+ @content;
22
+ }
23
+ }
24
+
25
+ @mixin plain-hover-focus {
26
+ &,
27
+ &:hover,
28
+ &:focus {
29
+ @content;
30
+ }
31
+ }
32
+
33
+ @mixin hover-focus-active {
34
+ &:hover,
35
+ &:focus,
36
+ &:active {
37
+ @content;
38
+ }
39
+ }
@@ -0,0 +1,36 @@
1
+ // Image Mixins
2
+ // - Responsive image
3
+ // - Retina image
4
+
5
+
6
+ // Responsive image
7
+ //
8
+ // Keep images from scaling beyond the width of their parents.
9
+
10
+ @mixin img-fluid {
11
+ // Part 1: Set a maximum relative to the parent
12
+ max-width: 100%;
13
+ // Part 2: Override the height to auto, otherwise images will be stretched
14
+ // when setting a width and height attribute on the img element.
15
+ height: auto;
16
+ }
17
+
18
+
19
+ // Retina image
20
+ //
21
+ // Short retina mixin for setting background-image and -size.
22
+
23
+ // stylelint-disable indentation, media-query-list-comma-newline-after
24
+ @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
25
+ background-image: url($file-1x);
26
+
27
+ // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
28
+ // but doesn't convert dppx=>dpi.
29
+ // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
30
+ // Compatibility info: https://caniuse.com/#feat=css-media-resolution
31
+ @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
32
+ only screen and (min-resolution: 2dppx) { // Standardized
33
+ background-image: url($file-2x);
34
+ background-size: $width-1x $height-1x;
35
+ }
36
+ }
@@ -0,0 +1,21 @@
1
+ // List Groups
2
+
3
+ @mixin list-group-item-variant($state, $background, $color) {
4
+ .list-group-item-#{$state} {
5
+ color: $color;
6
+ background-color: $background;
7
+
8
+ &.list-group-item-action {
9
+ @include hover-focus {
10
+ color: $color;
11
+ background-color: darken($background, 5%);
12
+ }
13
+
14
+ &.active {
15
+ color: #fff;
16
+ background-color: $color;
17
+ border-color: $color;
18
+ }
19
+ }
20
+ }
21
+ }
@@ -0,0 +1,7 @@
1
+ // Lists
2
+
3
+ // Unstyled keeps list items block level, just removes default browser padding and list-style
4
+ @mixin list-unstyled {
5
+ padding-left: 0;
6
+ list-style: none;
7
+ }
@@ -0,0 +1,10 @@
1
+ // Horizontal dividers
2
+ //
3
+ // Dividers (basically an hr) within dropdowns and nav lists
4
+
5
+ @mixin nav-divider($color: #e5e5e5) {
6
+ height: 0;
7
+ margin: ($spacer / 2) 0;
8
+ overflow: hidden;
9
+ border-top: 1px solid $color;
10
+ }