jekyll-theme-clean-portfolio 1.0.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.
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,11 @@
1
+ //
2
+ // Screenreaders
3
+ //
4
+
5
+ .sr-only {
6
+ @include sr-only();
7
+ }
8
+
9
+ .sr-only-focusable {
10
+ @include sr-only-focusable();
11
+ }
@@ -0,0 +1,12 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Width and height
4
+
5
+ @each $prop, $abbrev in (width: w, height: h) {
6
+ @each $size, $length in $sizes {
7
+ .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
8
+ }
9
+ }
10
+
11
+ .mw-100 { max-width: 100% !important; }
12
+ .mh-100 { max-height: 100% !important; }
@@ -0,0 +1,51 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Margin and Padding
4
+
5
+ @each $breakpoint in map-keys($grid-breakpoints) {
6
+ @include media-breakpoint-up($breakpoint) {
7
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
8
+
9
+ @each $prop, $abbrev in (margin: m, padding: p) {
10
+ @each $size, $length in $spacers {
11
+
12
+ .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
13
+ .#{$abbrev}t#{$infix}-#{$size},
14
+ .#{$abbrev}y#{$infix}-#{$size} {
15
+ #{$prop}-top: $length !important;
16
+ }
17
+ .#{$abbrev}r#{$infix}-#{$size},
18
+ .#{$abbrev}x#{$infix}-#{$size} {
19
+ #{$prop}-right: $length !important;
20
+ }
21
+ .#{$abbrev}b#{$infix}-#{$size},
22
+ .#{$abbrev}y#{$infix}-#{$size} {
23
+ #{$prop}-bottom: $length !important;
24
+ }
25
+ .#{$abbrev}l#{$infix}-#{$size},
26
+ .#{$abbrev}x#{$infix}-#{$size} {
27
+ #{$prop}-left: $length !important;
28
+ }
29
+ }
30
+ }
31
+
32
+ // Some special margin utils
33
+ .m#{$infix}-auto { margin: auto !important; }
34
+ .mt#{$infix}-auto,
35
+ .my#{$infix}-auto {
36
+ margin-top: auto !important;
37
+ }
38
+ .mr#{$infix}-auto,
39
+ .mx#{$infix}-auto {
40
+ margin-right: auto !important;
41
+ }
42
+ .mb#{$infix}-auto,
43
+ .my#{$infix}-auto {
44
+ margin-bottom: auto !important;
45
+ }
46
+ .ml#{$infix}-auto,
47
+ .mx#{$infix}-auto {
48
+ margin-left: auto !important;
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,52 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ //
4
+ // Text
5
+ //
6
+
7
+ // Alignment
8
+
9
+ .text-justify { text-align: justify !important; }
10
+ .text-nowrap { white-space: nowrap !important; }
11
+ .text-truncate { @include text-truncate; }
12
+
13
+ // Responsive alignment
14
+
15
+ @each $breakpoint in map-keys($grid-breakpoints) {
16
+ @include media-breakpoint-up($breakpoint) {
17
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
18
+
19
+ .text#{$infix}-left { text-align: left !important; }
20
+ .text#{$infix}-right { text-align: right !important; }
21
+ .text#{$infix}-center { text-align: center !important; }
22
+ }
23
+ }
24
+
25
+ // Transformation
26
+
27
+ .text-lowercase { text-transform: lowercase !important; }
28
+ .text-uppercase { text-transform: uppercase !important; }
29
+ .text-capitalize { text-transform: capitalize !important; }
30
+
31
+ // Weight and italics
32
+
33
+ .font-weight-light { font-weight: $font-weight-light !important; }
34
+ .font-weight-normal { font-weight: $font-weight-normal !important; }
35
+ .font-weight-bold { font-weight: $font-weight-bold !important; }
36
+ .font-italic { font-style: italic !important; }
37
+
38
+ // Contextual colors
39
+
40
+ .text-white { color: #fff !important; }
41
+
42
+ @each $color, $value in $theme-colors {
43
+ @include text-emphasis-variant(".text-#{$color}", $value);
44
+ }
45
+
46
+ .text-muted { color: $text-muted !important; }
47
+
48
+ // Misc
49
+
50
+ .text-hide {
51
+ @include text-hide();
52
+ }
@@ -0,0 +1,11 @@
1
+ //
2
+ // Visibility utilities
3
+ //
4
+
5
+ .visible {
6
+ @include invisible(visible);
7
+ }
8
+
9
+ .invisible {
10
+ @include invisible(hidden);
11
+ }
@@ -0,0 +1,240 @@
1
+ // Basic Styling
2
+
3
+ body {
4
+ overflow-y: scroll;
5
+ overflow-x: hidden;
6
+ font-family: $base-font-family;
7
+ font-size: $base-font-size;
8
+ color: #000;
9
+ background-color: $background-color;
10
+ -webkit-text-size-adjust: 100%;
11
+ }
12
+
13
+ .updates {
14
+ margin-bottom: 15px;
15
+ overflow-y: auto;
16
+ border: 0.5px solid grey;
17
+ border-radius: 5px;
18
+ }
19
+
20
+ // Images
21
+
22
+ img {
23
+ max-width: 100%;
24
+ vertical-align: middle;
25
+ }
26
+
27
+ // Lists
28
+
29
+ ul,
30
+ ol {
31
+ list-style-type: none;
32
+ }
33
+
34
+ li {
35
+ > ul,
36
+ > ol {
37
+ margin-bottom: 0;
38
+ }
39
+ }
40
+
41
+ // Blockquotes
42
+
43
+ blockquote {
44
+ color: $grey-color;
45
+ border-left: 4px solid $grey-color-light;
46
+ padding-left: $spacing-unit / 2;
47
+ font-size: 18px;
48
+ letter-spacing: -1px;
49
+ font-style: italic;
50
+
51
+ > :last-child {
52
+ margin-bottom: 0;
53
+ }
54
+ }
55
+
56
+ /**
57
+ * Code formatting
58
+ */
59
+ pre,
60
+ code {
61
+ font-size: $base-font-size;
62
+ background-color: $code-background-color;
63
+ }
64
+
65
+ code {
66
+ margin: 0em;
67
+ }
68
+
69
+ pre {
70
+ margin: 0em;
71
+ padding : 1em;
72
+ overflow-x: auto;
73
+
74
+ > code {
75
+ border: 0;
76
+ padding-right: 0;
77
+ padding-left: 0;
78
+ }
79
+ }
80
+
81
+ .highlight {
82
+ border: 0px solid $grey-color-light;
83
+ border-radius: .25em;
84
+
85
+ }
86
+ .highlighter-rouge {
87
+ margin-bottom: 1em;
88
+
89
+ }
90
+ // Clearfix
91
+
92
+ %clearfix {
93
+ &:after {
94
+ content: "";
95
+ display: table;
96
+ clear: both;
97
+ }
98
+ }
99
+
100
+ // Icons
101
+
102
+ .icon {
103
+ > svg {
104
+ display: inline-block;
105
+ width: 16px;
106
+ height: 16px;
107
+ vertical-align: middle;
108
+
109
+ path {
110
+ fill: $grey-color;
111
+ }
112
+ }
113
+ }
114
+
115
+ .my-name {
116
+ font-family: $title-font-family;
117
+ text-align: center;
118
+ font-size: 30px;
119
+ }
120
+
121
+ // Style the Image Used to Trigger the Modal
122
+
123
+ #myImg {
124
+ border-radius: 5px;
125
+ cursor: pointer;
126
+ transition: 0.3s;
127
+ z-index: 9999;
128
+ }
129
+
130
+ #myImg:hover {
131
+ opacity: 0.7;
132
+ }
133
+
134
+ // The Modal (background)
135
+
136
+ .modal {
137
+ display: none;
138
+ // Hidden by default
139
+
140
+ position: fixed;
141
+ // Stay in place
142
+
143
+ z-index: 1;
144
+ // Sit on top
145
+
146
+ padding-top: 100px;
147
+ // Location of the box
148
+
149
+ left: 0;
150
+ top: 0;
151
+ width: 100%;
152
+ // Full width
153
+
154
+ height: 100%;
155
+ // Full height
156
+
157
+ overflow: auto;
158
+ // Enable scroll if needed
159
+
160
+ background-color: rgb(0, 0, 0);
161
+ // Fallback color
162
+
163
+ background-color: rgba(0, 0, 0, 0.9);
164
+ // Black w/ opacity
165
+
166
+ z-index: 9999;
167
+ }
168
+
169
+ // Modal Content (Image)
170
+
171
+ .modal-content {
172
+ margin: auto;
173
+ display: block;
174
+ width: 80%;
175
+ max-width: 700px;
176
+ z-index: 9999;
177
+ }
178
+
179
+ // Caption of Modal Image (Image Text) - Same Width as the Image
180
+
181
+ #caption {
182
+ margin: auto;
183
+ display: block;
184
+ width: 80%;
185
+ max-width: 700px;
186
+ text-align: center;
187
+ color: #ccc;
188
+ padding: 10px 0;
189
+ height: 150px;
190
+ z-index: 9999;
191
+ }
192
+
193
+ // Add Animation - Zoom in the Modal
194
+
195
+ .modal-content,
196
+ #caption {
197
+ animation-name: zoom;
198
+ animation-duration: 0.6s;
199
+ z-index: 9999;
200
+ }
201
+
202
+ @keyframes zoom {
203
+ from {
204
+ transform: scale(0);
205
+ }
206
+
207
+ to {
208
+ transform: scale(1);
209
+ }
210
+ }
211
+
212
+ // The Close Button
213
+
214
+ .close {
215
+ position: absolute;
216
+ top: 15px;
217
+ right: 35px;
218
+ color: #f1f1f1;
219
+ font-size: 40px;
220
+ font-weight: bold;
221
+ transition: 0.3s;
222
+ z-index: 9999;
223
+ }
224
+
225
+ .close:hover,
226
+ .close:focus {
227
+ color: #bbb;
228
+ text-decoration: none;
229
+ cursor: pointer;
230
+ z-index: 9999;
231
+ }
232
+
233
+ // 100% Image Width on Smaller Screens
234
+
235
+ @media only screen and (max-width: 700px) {
236
+ .modal-content {
237
+ width: 100%;
238
+ }
239
+ }
240
+
@@ -0,0 +1,27 @@
1
+ h1,
2
+ h2,
3
+ h3,
4
+ h4,
5
+ h5,
6
+ h6 {
7
+ margin: 0em;
8
+ margin-bottom: 0.5em;
9
+ margin-top: 0.5em;
10
+ font-family: $title-font-family;
11
+ }
12
+
13
+ ul {
14
+ padding: 0em;
15
+ margin: 0em 0em 1em 0em;
16
+ list-style-type: none;
17
+ }
18
+
19
+ p {
20
+ margin: 0em;
21
+ padding-bottom: 1em;
22
+ font-family: $base-font-family;
23
+ }
24
+
25
+ hr {
26
+ margin: 0em;
27
+ }
@@ -0,0 +1,67 @@
1
+ .highlight {
2
+ .c { color: #998; font-style: italic } // Comment
3
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
4
+ .k { font-weight: bold } // Keyword
5
+ .o { font-weight: bold } // Operator
6
+ .cm { color: #998; font-style: italic } // Comment.Multiline
7
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
8
+ .c1 { color: #998; font-style: italic } // Comment.Single
9
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
10
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
11
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
12
+ .ge { font-style: italic } // Generic.Emph
13
+ .gr { color: #a00 } // Generic.Error
14
+ .gh { color: #999 } // Generic.Heading
15
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
16
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
17
+ .go { color: #888 } // Generic.Output
18
+ .gp { color: #555 } // Generic.Prompt
19
+ .gs { font-weight: bold } // Generic.Strong
20
+ .gu { color: #aaa } // Generic.Subheading
21
+ .gt { color: #a00 } // Generic.Traceback
22
+ .kc { font-weight: bold } // Keyword.Constant
23
+ .kd { font-weight: bold } // Keyword.Declaration
24
+ .kp { font-weight: bold } // Keyword.Pseudo
25
+ .kr { font-weight: bold } // Keyword.Reserved
26
+ .kt { color: #458; font-weight: bold } // Keyword.Type
27
+ .m { color: #099 } // Literal.Number
28
+ .s { color: #d14 } // Literal.String
29
+ .na { color: #008080 } // Name.Attribute
30
+ .nb { color: #0086B3 } // Name.Builtin
31
+ .nc { color: #458; font-weight: bold } // Name.Class
32
+ .no { color: #008080 } // Name.Constant
33
+ .ni { color: #800080 } // Name.Entity
34
+ .ne { color: #900; font-weight: bold } // Name.Exception
35
+ .nf { color: #900; font-weight: bold } // Name.Function
36
+ .nn { color: #555 } // Name.Namespace
37
+ .nt { color: #000080 } // Name.Tag
38
+ .nv { color: #008080 } // Name.Variable
39
+ .ow { font-weight: bold } // Operator.Word
40
+ .w { color: #bbb } // Text.Whitespace
41
+ .mf { color: #099 } // Literal.Number.Float
42
+ .mh { color: #099 } // Literal.Number.Hex
43
+ .mi { color: #099 } // Literal.Number.Integer
44
+ .mo { color: #099 } // Literal.Number.Oct
45
+ .sb { color: #d14 } // Literal.String.Backtick
46
+ .sc { color: #d14 } // Literal.String.Char
47
+ .sd { color: #d14 } // Literal.String.Doc
48
+ .s2 { color: #d14 } // Literal.String.Double
49
+ .se { color: #d14 } // Literal.String.Escape
50
+ .sh { color: #d14 } // Literal.String.Heredoc
51
+ .si { color: #d14 } // Literal.String.Interpol
52
+ .sx { color: #d14 } // Literal.String.Other
53
+ .sr { color: #009926 } // Literal.String.Regex
54
+ .s1 { color: #d14 } // Literal.String.Single
55
+ .ss { color: #990073 } // Literal.String.Symbol
56
+ .bp { color: #999 } // Name.Builtin.Pseudo
57
+ .vc { color: #008080 } // Name.Variable.Class
58
+ .vg { color: #008080 } // Name.Variable.Global
59
+ .vi { color: #008080 } // Name.Variable.Instance
60
+ .il { color: #099 } // Literal.Number.Integer.Long
61
+ }
62
+ .highlight {
63
+ overflow: auto;
64
+ pre code {
65
+ white-space: pre;
66
+ }
67
+ }