dream-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/head.html +17 -0
- data/_includes/navigation.html +17 -0
- data/_layouts/home.html +29 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +16 -0
- data/_sass/base/_base.scss +14 -0
- data/_sass/base/_buttons.scss +43 -0
- data/_sass/base/_forms.scss +95 -0
- data/_sass/base/_layout.scss +18 -0
- data/_sass/base/_lists.scss +19 -0
- data/_sass/base/_media.scss +9 -0
- data/_sass/base/_tables.scss +29 -0
- data/_sass/base/_typography.scss +45 -0
- data/_sass/base/_variables.scss +41 -0
- data/_sass/bourbon/_bourbon.scss +54 -0
- data/_sass/bourbon/bourbon/helpers/_buttons-list.scss +14 -0
- data/_sass/bourbon/bourbon/helpers/_scales.scss +27 -0
- data/_sass/bourbon/bourbon/helpers/_text-inputs-list.scss +26 -0
- data/_sass/bourbon/bourbon/library/_border-color.scss +26 -0
- data/_sass/bourbon/bourbon/library/_border-radius.scss +85 -0
- data/_sass/bourbon/bourbon/library/_border-style.scss +25 -0
- data/_sass/bourbon/bourbon/library/_border-width.scss +25 -0
- data/_sass/bourbon/bourbon/library/_buttons.scss +84 -0
- data/_sass/bourbon/bourbon/library/_clearfix.scss +25 -0
- data/_sass/bourbon/bourbon/library/_contrast-switch.scss +81 -0
- data/_sass/bourbon/bourbon/library/_ellipsis.scss +36 -0
- data/_sass/bourbon/bourbon/library/_font-face.scss +65 -0
- data/_sass/bourbon/bourbon/library/_font-stacks.scss +249 -0
- data/_sass/bourbon/bourbon/library/_hide-text.scss +24 -0
- data/_sass/bourbon/bourbon/library/_hide-visually.scss +70 -0
- data/_sass/bourbon/bourbon/library/_margin.scss +37 -0
- data/_sass/bourbon/bourbon/library/_modular-scale.scss +120 -0
- data/_sass/bourbon/bourbon/library/_overflow-wrap.scss +24 -0
- data/_sass/bourbon/bourbon/library/_padding.scss +36 -0
- data/_sass/bourbon/bourbon/library/_position.scss +62 -0
- data/_sass/bourbon/bourbon/library/_prefixer.scss +37 -0
- data/_sass/bourbon/bourbon/library/_shade.scss +32 -0
- data/_sass/bourbon/bourbon/library/_size.scss +50 -0
- data/_sass/bourbon/bourbon/library/_strip-unit.scss +17 -0
- data/_sass/bourbon/bourbon/library/_text-inputs.scss +163 -0
- data/_sass/bourbon/bourbon/library/_timing-functions.scss +38 -0
- data/_sass/bourbon/bourbon/library/_tint.scss +32 -0
- data/_sass/bourbon/bourbon/library/_triangle.scss +82 -0
- data/_sass/bourbon/bourbon/library/_value-prefixer.scss +37 -0
- data/_sass/bourbon/bourbon/settings/_settings.scss +75 -0
- data/_sass/bourbon/bourbon/utilities/_assign-inputs.scss +28 -0
- data/_sass/bourbon/bourbon/utilities/_compact-shorthand.scss +39 -0
- data/_sass/bourbon/bourbon/utilities/_contrast-ratio.scss +31 -0
- data/_sass/bourbon/bourbon/utilities/_directional-property.scss +70 -0
- data/_sass/bourbon/bourbon/utilities/_fetch-bourbon-setting.scss +16 -0
- data/_sass/bourbon/bourbon/utilities/_font-source-declaration.scss +51 -0
- data/_sass/bourbon/bourbon/utilities/_gamma.scss +21 -0
- data/_sass/bourbon/bourbon/utilities/_lightness.scss +24 -0
- data/_sass/bourbon/bourbon/utilities/_unpack-shorthand.scss +29 -0
- data/_sass/bourbon/bourbon/validators/_contains-falsy.scss +20 -0
- data/_sass/bourbon/bourbon/validators/_contains.scss +26 -0
- data/_sass/bourbon/bourbon/validators/_is-color.scss +13 -0
- data/_sass/bourbon/bourbon/validators/_is-length.scss +15 -0
- data/_sass/bourbon/bourbon/validators/_is-number.scss +15 -0
- data/_sass/bourbon/bourbon/validators/_is-size.scss +18 -0
- data/_sass/home.scss +55 -0
- data/_sass/main.scss +73 -0
- data/_sass/navigation.scss +45 -0
- data/_sass/neat/_neat.scss +26 -0
- data/_sass/neat/neat/functions/_neat-append-grid-visual.scss +21 -0
- data/_sass/neat/neat/functions/_neat-column-default.scss +23 -0
- data/_sass/neat/neat/functions/_neat-column-ratio.scss +24 -0
- data/_sass/neat/neat/functions/_neat-column-width.scss +25 -0
- data/_sass/neat/neat/functions/_neat-float-direction.scss +22 -0
- data/_sass/neat/neat/functions/_neat-merge-defaults.scss +23 -0
- data/_sass/neat/neat/functions/_neat-opposite-direction.scss +22 -0
- data/_sass/neat/neat/functions/_neat-parse-columns.scss +22 -0
- data/_sass/neat/neat/functions/_neat-parse-media.scss +20 -0
- data/_sass/neat/neat/functions/_retrieve-neat-settings.scss +19 -0
- data/_sass/neat/neat/mixins/_grid-collapse.scss +35 -0
- data/_sass/neat/neat/mixins/_grid-column.scss +39 -0
- data/_sass/neat/neat/mixins/_grid-container.scss +31 -0
- data/_sass/neat/neat/mixins/_grid-media.scss +67 -0
- data/_sass/neat/neat/mixins/_grid-push.scss +37 -0
- data/_sass/neat/neat/mixins/_grid-shift.scss +36 -0
- data/_sass/neat/neat/mixins/_grid-visual.scss +41 -0
- data/_sass/neat/neat/settings/_settings.scss +74 -0
- data/_sass/post.scss +24 -0
- data/assets/Linkedin.svg +17 -0
- data/assets/Twitter.svg +18 -0
- data/assets/github.png +0 -0
- data/assets/gitlab.svg +53 -0
- data/assets/icon.jpg +0 -0
- data/assets/icon.svg +95 -0
- data/assets/linkedin.png +0 -0
- data/assets/styles.scss +4 -0
- metadata +179 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/// Creates a grid container with clearfix.
|
3
|
+
///
|
4
|
+
/// @group features
|
5
|
+
///
|
6
|
+
/// @name Grid container
|
7
|
+
///
|
8
|
+
/// @example scss
|
9
|
+
/// .element {
|
10
|
+
/// @include grid-container;
|
11
|
+
/// }
|
12
|
+
///
|
13
|
+
/// @example css
|
14
|
+
/// .element::after {
|
15
|
+
/// clear: both;
|
16
|
+
/// content: "";
|
17
|
+
/// display: block;
|
18
|
+
/// }
|
19
|
+
|
20
|
+
@mixin grid-container($grid: $neat-grid) {
|
21
|
+
@if $grid != $neat-grid {
|
22
|
+
@warn "`grid-container` does not use grid propertes.
|
23
|
+
Custom grids do not need to be passed in to this mixin.";
|
24
|
+
}
|
25
|
+
|
26
|
+
&::after {
|
27
|
+
clear: both;
|
28
|
+
content: "";
|
29
|
+
display: block;
|
30
|
+
}
|
31
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/// `grid-media` allows you to change your layout based on a media query.
|
3
|
+
/// For example, an object can span 3 columns on small screens and 6 columns
|
4
|
+
/// on large screens.
|
5
|
+
///
|
6
|
+
/// You can take this a step further and set different grid attributes like
|
7
|
+
/// gutter size and total column count for each media query. So, for example,
|
8
|
+
/// you can have a `1rem` gutter on small screens, and a `2rem` gutter on large
|
9
|
+
/// screens.
|
10
|
+
///
|
11
|
+
/// @group features
|
12
|
+
///
|
13
|
+
/// @name Grid media
|
14
|
+
///
|
15
|
+
/// @argument {map} $grid
|
16
|
+
/// The grid to be used within the scope of the block.
|
17
|
+
/// This grid should include the `media` property to determine the expression
|
18
|
+
/// for the media query.
|
19
|
+
///
|
20
|
+
/// @content
|
21
|
+
/// Grid media will temporarily the override the default grid with the
|
22
|
+
/// attributes of the custom grid. This change is scoped to within the mixin
|
23
|
+
/// block, and once the mixin has ended the default grid will revert to its
|
24
|
+
/// original state as defined by `$neat-grid`. This allows for different
|
25
|
+
/// gutter width and column count based on screen size or other properties.
|
26
|
+
///
|
27
|
+
/// @example scss
|
28
|
+
/// $custom-neat-grid: (
|
29
|
+
/// columns: 12,
|
30
|
+
/// gutter: 50px,
|
31
|
+
/// media: 1000px,
|
32
|
+
/// );
|
33
|
+
///
|
34
|
+
/// .element {
|
35
|
+
/// @include grid-column(3);
|
36
|
+
///
|
37
|
+
/// @include grid-media($custom-neat-grid){
|
38
|
+
/// @include grid-column(6);
|
39
|
+
/// }
|
40
|
+
/// }
|
41
|
+
///
|
42
|
+
/// @example css
|
43
|
+
/// .element {
|
44
|
+
/// width: calc(25% - 25px);
|
45
|
+
/// float: left;
|
46
|
+
/// margin-left: 20px;
|
47
|
+
/// }
|
48
|
+
///
|
49
|
+
/// @media only screen and (min-width: 1000px) {
|
50
|
+
/// .element {
|
51
|
+
/// width: calc(50% - 75px);
|
52
|
+
/// float: left;
|
53
|
+
/// margin-left: 50px;
|
54
|
+
/// }
|
55
|
+
/// }
|
56
|
+
|
57
|
+
@mixin grid-media($grid) {
|
58
|
+
$_media: _retrieve-neat-setting($grid, media);
|
59
|
+
$_query: _neat-parse-media($_media);
|
60
|
+
|
61
|
+
@media #{$_query} {
|
62
|
+
$_default-neat-grid: $neat-grid;
|
63
|
+
$neat-grid: map-merge($neat-grid, $grid) !global;
|
64
|
+
@content;
|
65
|
+
$neat-grid: $_default-neat-grid !global;
|
66
|
+
}
|
67
|
+
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/// Push or pull a grid column by manipulating its left margin.
|
3
|
+
///
|
4
|
+
/// @group features
|
5
|
+
///
|
6
|
+
/// @name Grid push
|
7
|
+
///
|
8
|
+
/// @argument {number (unitless)} $push [false]
|
9
|
+
/// The number of columns to push the column.
|
10
|
+
///
|
11
|
+
/// @argument {map} $grid [$neat-grid]
|
12
|
+
/// The grid to be used to determine how far to push the column.
|
13
|
+
/// By default, the global `$neat-grid` will be used.
|
14
|
+
///
|
15
|
+
/// @example scss
|
16
|
+
/// .element {
|
17
|
+
/// @include grid-push(3);
|
18
|
+
/// }
|
19
|
+
///
|
20
|
+
/// @example css
|
21
|
+
/// .element {
|
22
|
+
/// margin-left: calc(25% - 25px + 40px);
|
23
|
+
/// }
|
24
|
+
|
25
|
+
@mixin grid-push($push: false, $grid: $neat-grid) {
|
26
|
+
$_grid-columns: _retrieve-neat-setting($grid, columns);
|
27
|
+
$_grid-gutter: _retrieve-neat-setting($grid, gutter);
|
28
|
+
|
29
|
+
@if $push {
|
30
|
+
$_gutter-affordance: $_grid-gutter * 2;
|
31
|
+
$_margin-value: calc(#{_neat-column-width($grid, $push)} + #{$_gutter-affordance});
|
32
|
+
margin-#{_neat-float-direction($grid)}: $_margin-value;
|
33
|
+
} @else {
|
34
|
+
$_margin-value: _retrieve-neat-setting($grid, gutter);
|
35
|
+
margin-#{_neat-float-direction($grid)}: $_margin-value;
|
36
|
+
}
|
37
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/// Shift columns and reorder them within their container using relative
|
3
|
+
/// positioning.
|
4
|
+
///
|
5
|
+
/// @group features
|
6
|
+
///
|
7
|
+
/// @name Grid shift
|
8
|
+
///
|
9
|
+
/// @argument {number (unitless)} $shift [false]
|
10
|
+
/// The number of columns to shift the column.
|
11
|
+
///
|
12
|
+
/// @argument {map} $grid [$neat-grid]
|
13
|
+
/// The grid to be used to determine how far to shift the column.
|
14
|
+
/// By default, the global `$neat-grid` will be used.
|
15
|
+
///
|
16
|
+
/// @example scss
|
17
|
+
/// .element {
|
18
|
+
/// @include grid-shift(3);
|
19
|
+
/// }
|
20
|
+
///
|
21
|
+
/// @example css
|
22
|
+
/// .element {
|
23
|
+
/// left: calc(25% - 25px + 20px);
|
24
|
+
/// position: relative;
|
25
|
+
/// }
|
26
|
+
|
27
|
+
@mixin grid-shift($shift: false, $grid: $neat-grid) {
|
28
|
+
@if $shift {
|
29
|
+
$_shift-value: calc(#{_neat-column-width($grid, $shift)} + #{_retrieve-neat-setting($grid, gutter)});
|
30
|
+
#{_neat-float-direction($grid)}: $_shift-value;
|
31
|
+
} @else {
|
32
|
+
#{_neat-float-direction($grid)}: auto;
|
33
|
+
}
|
34
|
+
|
35
|
+
position: relative;
|
36
|
+
}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/// Creates a series of guide lines using the `background-image` property on a
|
3
|
+
/// grid container to visualise the columns and gutters of the grid.
|
4
|
+
///
|
5
|
+
/// @group features
|
6
|
+
///
|
7
|
+
/// @name Grid visual
|
8
|
+
///
|
9
|
+
/// @argument {color} $color
|
10
|
+
/// The color of the guide lines created.
|
11
|
+
///
|
12
|
+
/// @argument {map} $grid [$neat-grid]
|
13
|
+
/// The grid used to determine the guides
|
14
|
+
///
|
15
|
+
/// @example scss
|
16
|
+
/// .element {
|
17
|
+
/// @include grid-visual;
|
18
|
+
/// }
|
19
|
+
///
|
20
|
+
/// @example css
|
21
|
+
/// .element {
|
22
|
+
/// background-image: repeating-linear-gradient( … ) ;
|
23
|
+
/// }
|
24
|
+
|
25
|
+
@mixin grid-visual($color: null, $grid: $neat-grid) {
|
26
|
+
@if not $color {
|
27
|
+
$color: _retrieve-neat-setting($grid, color);
|
28
|
+
}
|
29
|
+
|
30
|
+
$_grid-columns: _retrieve-neat-setting($grid, columns);
|
31
|
+
$_grid-gutter: _retrieve-neat-setting($grid, gutter);
|
32
|
+
$_grid-visual-column: "#{_neat-column-width($grid, 1)} + #{$_grid-gutter}";
|
33
|
+
$_grid-visual:
|
34
|
+
transparent,
|
35
|
+
transparent $_grid-gutter,
|
36
|
+
$color $_grid-gutter,
|
37
|
+
$color calc(#{$_grid-visual-column}),
|
38
|
+
;
|
39
|
+
|
40
|
+
background-image: repeating-linear-gradient(to right, $_grid-visual);
|
41
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/// This variable is a sass map that overrides Neat's default grid settings.
|
3
|
+
/// Use this to define your project's grid properties including gutters and
|
4
|
+
/// total column count.
|
5
|
+
///
|
6
|
+
/// @type map
|
7
|
+
///
|
8
|
+
/// @group settings
|
9
|
+
///
|
10
|
+
/// @name Neat grid
|
11
|
+
///
|
12
|
+
/// @property {number (unitless)} columns [12]
|
13
|
+
/// Default number of the total grid columns.
|
14
|
+
///
|
15
|
+
/// @property {number (with unit)} gutter [20px]
|
16
|
+
/// Default grid gutter width between columns.
|
17
|
+
///
|
18
|
+
/// @example scss
|
19
|
+
/// $neat-grid: (
|
20
|
+
/// columns: 12,
|
21
|
+
/// gutter: 20px,
|
22
|
+
/// );
|
23
|
+
|
24
|
+
$neat-grid: () !default;
|
25
|
+
|
26
|
+
/// If you need multiple grids in a single project, you can do
|
27
|
+
/// this by defining a new map stored within a variable of your choosing. This
|
28
|
+
/// variable can then be passed directly in to any of Neat's mixins like
|
29
|
+
/// [`grid-column(12, $my-custom-grid)`](#grid-column).
|
30
|
+
///
|
31
|
+
/// Custom grids are especially useful with [`grid-media`](#grid-media). By
|
32
|
+
/// defining a `media` attribute within your custom grid, you are able to easily
|
33
|
+
/// define gutter width and total column count as well the breakpoint at which
|
34
|
+
/// they should activate.
|
35
|
+
///
|
36
|
+
/// @type map
|
37
|
+
///
|
38
|
+
/// @group settings
|
39
|
+
///
|
40
|
+
/// @name Custom grids
|
41
|
+
///
|
42
|
+
/// @property {number (unitless)} columns [12]
|
43
|
+
/// Number of the total grid columns.
|
44
|
+
///
|
45
|
+
/// @property {number (with unit)} gutter [20px]
|
46
|
+
/// Grid gutter width between columns.
|
47
|
+
///
|
48
|
+
/// @property {number (with unit) | string | null} media [null]
|
49
|
+
/// The `@media` definition that is used by the [`grid-media`](#grid-media)
|
50
|
+
/// mixin to determine the media properties.
|
51
|
+
///
|
52
|
+
/// @property {color} color [null]
|
53
|
+
/// The color used by [`grid-visual`](#grid-visual) to create the guides.
|
54
|
+
///
|
55
|
+
/// @property {string} direction [ltr]
|
56
|
+
/// The float direction used throughout the grid.
|
57
|
+
///
|
58
|
+
/// @example scss
|
59
|
+
/// $my-custom-grid: (
|
60
|
+
/// columns: 12,
|
61
|
+
/// gutter: 20px,
|
62
|
+
/// media: 1200px,
|
63
|
+
/// color: rgba(#00d4ff, 0.25),
|
64
|
+
/// direction: ltr,
|
65
|
+
/// );
|
66
|
+
///
|
67
|
+
/// $other-custom-grid-for-print: (
|
68
|
+
/// columns: 14,
|
69
|
+
/// gutter: 1.5rem,
|
70
|
+
/// media: print,
|
71
|
+
/// );
|
72
|
+
///
|
73
|
+
|
74
|
+
$neat-custom-grid: () !default;
|
data/_sass/post.scss
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
.post-container{
|
4
|
+
@include grid-container;
|
5
|
+
max-width: 1200px;
|
6
|
+
margin: 0 auto;
|
7
|
+
|
8
|
+
.date {
|
9
|
+
@include grid-column(12);
|
10
|
+
text-align: center;
|
11
|
+
color: $primary-font-color;
|
12
|
+
opacity: 0.7;
|
13
|
+
}
|
14
|
+
|
15
|
+
.title{
|
16
|
+
@include grid-column(12);
|
17
|
+
font-size: 2em;
|
18
|
+
text-align: center;
|
19
|
+
padding: 15px 0px;
|
20
|
+
color: $primary-color;
|
21
|
+
opacity: 0.7;
|
22
|
+
}
|
23
|
+
|
24
|
+
}
|
data/assets/Linkedin.svg
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Linkedin" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<rect id="linkedin-back" fill="#262626" width="128" height="128"/>
|
8
|
+
<g id="linkedin-linkedin">
|
9
|
+
<path fill="#FFFFFF" d="M29.0752,51.7471h14.8686v47.792H29.0752V51.7471z M36.5137,27.9897c4.7514,0,8.6089,3.8589,8.6089,8.6133
|
10
|
+
c0,4.7554-3.8575,8.6143-8.6089,8.6143c-4.7705,0-8.6172-3.8589-8.6172-8.6143C27.8965,31.8486,31.7432,27.9897,36.5137,27.9897"
|
11
|
+
/>
|
12
|
+
<path fill="#FFFFFF" d="M53.2622,51.7471H67.5v6.5337h0.2041c1.9805-3.7574,6.8272-7.7198,14.0537-7.7198
|
13
|
+
c15.0391,0,17.8184,9.896,17.8184,22.7671v26.211H84.7246V76.2979c0-5.542-0.0957-12.6719-7.7187-12.6719
|
14
|
+
c-7.7286,0-8.9082,6.04-8.9082,12.2754v23.6377H53.2622V51.7471z"/>
|
15
|
+
</g>
|
16
|
+
</g>
|
17
|
+
</svg>
|
data/assets/Twitter.svg
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Twitter" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
|
6
|
+
<g>
|
7
|
+
<rect id="twitter-back" fill="#262626" width="128" height="128"/>
|
8
|
+
<path id="twitter-twitter" fill="#FFFFFF" d="M99.8398,41.7695c-2.6367,1.17-5.4707,1.96-8.4462,2.3155
|
9
|
+
c3.0361-1.8204,5.3681-4.7022,6.4658-8.1358c-2.8408,1.6846-5.9883,2.9092-9.3379,3.5684
|
10
|
+
c-2.6826-2.8584-6.5049-4.6436-10.7344-4.6436c-8.1221,0-14.7065,6.584-14.7065,14.7051c0,1.1533,0.1303,2.2754,0.3808,3.3516
|
11
|
+
c-12.2221-0.6133-23.0581-6.4678-30.311-15.3653c-1.2661,2.1719-1.9912,4.6983-1.9912,7.3936c0,5.1015,2.5962,9.6025,6.542,12.2402
|
12
|
+
c-2.4107-0.0762-4.6783-0.7383-6.6607-1.8398c-0.0014,0.0615-0.0014,0.123-0.0014,0.1855c0,7.125,5.0693,13.0684,11.7968,14.4199
|
13
|
+
c-1.2343,0.336-2.5337,0.5157-3.8745,0.5157c-0.9477,0-1.8691-0.0928-2.7671-0.2637c1.8716,5.8418,7.3028,10.0937,13.7378,10.2129
|
14
|
+
c-5.0332,3.9443-11.374,6.2949-18.2641,6.2949c-1.187,0-2.3575-0.0693-3.5078-0.2051c6.5083,4.1729,14.2377,6.6065,22.5429,6.6065
|
15
|
+
c27.0498,0,41.8418-22.4082,41.8418-41.8418c0-0.6377-0.0146-1.2715-0.0429-1.9024C95.375,47.3086,97.8691,44.7188,99.8398,41.7695
|
16
|
+
z"/>
|
17
|
+
</g>
|
18
|
+
</svg>
|
data/assets/github.png
ADDED
Binary file
|
data/assets/gitlab.svg
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg width="500px" height="500px" viewBox="0 0 500 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
3
|
+
<!-- Generator: Sketch 3.2.2 (9983) - http://www.bohemiancoding.com/sketch -->
|
4
|
+
<title>logo-square</title>
|
5
|
+
<desc>Created with Sketch.</desc>
|
6
|
+
<defs></defs>
|
7
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
8
|
+
<g id="logo-square" sketch:type="MSArtboardGroup">
|
9
|
+
<g id="logo-no-bg" sketch:type="MSLayerGroup" transform="translate(2.000000, 19.000000)">
|
10
|
+
<g id="Page-1" sketch:type="MSShapeGroup">
|
11
|
+
<g id="gitlab_logo">
|
12
|
+
<g id="g10" transform="translate(248.000000, 228.833300) scale(1, -1) translate(-248.000000, -228.833300) translate(0.000000, 0.333300)">
|
13
|
+
<g id="g16">
|
14
|
+
<g id="g18-Clipped">
|
15
|
+
<g id="g18">
|
16
|
+
<g>
|
17
|
+
<g id="Group" transform="translate(0.666658, 0.666658)">
|
18
|
+
<g id="g44" transform="translate(0.532000, 0.774933)" fill="#FC6D26">
|
19
|
+
<path d="M491.999988,194.666662 L464.441322,279.481326 L409.82399,447.578655 C407.014656,456.226655 394.778657,456.226655 391.96799,447.578655 L337.349325,279.481326 L155.982663,279.481326 L101.362664,447.578655 C98.5533309,456.226655 86.3173312,456.226655 83.5066646,447.578655 L28.8893326,279.481326 L1.33199997,194.666662 C-1.18266664,186.930662 1.57199996,178.455996 8.1519998,173.674662 L246.665327,0.385333324 L485.179988,173.674662 C491.759988,178.455996 494.513321,186.930662 491.999988,194.666662" id="path46"></path>
|
20
|
+
</g>
|
21
|
+
<g id="g48" transform="translate(156.197863, 1.160267)" fill="#E24329">
|
22
|
+
<path d="M90.9999977,0 L90.9999977,0 L181.683995,279.095993 L0.31599997,279.095993 L90.9999977,0 L90.9999977,0 Z" id="path50"></path>
|
23
|
+
</g>
|
24
|
+
<g id="g56" transform="translate(28.531199, 1.160800)" fill="#FC6D26">
|
25
|
+
<path d="M218.666661,0 L127.982663,279.09466 L0.890666644,279.09466 L218.666661,0 L218.666661,0 Z" id="path58"></path>
|
26
|
+
</g>
|
27
|
+
<g id="g64" transform="translate(0.088533, 0.255867)" fill="#FCA326">
|
28
|
+
<path d="M29.3333326,279.999993 L29.3333326,279.999993 L1.77466662,195.185328 C-0.738666648,187.449329 2.01466662,178.974662 8.59599979,174.194662 L247.109327,0.905333311 L29.3333326,279.999993 L29.3333326,279.999993 Z" id="path66"></path>
|
29
|
+
</g>
|
30
|
+
<g id="g72" transform="translate(29.421866, 280.255593)" fill="#E24329">
|
31
|
+
<path d="M0,0 L127.091997,0 L72.4733315,168.097329 C69.6626649,176.746662 57.4266652,176.746662 54.617332,168.097329 L0,0 L0,0 Z" id="path74"></path>
|
32
|
+
</g>
|
33
|
+
<g id="g76" transform="translate(247.197860, 1.160800)" fill="#FC6D26">
|
34
|
+
<path d="M0,0 L90.6839977,279.09466 L217.775995,279.09466 L0,0 L0,0 Z" id="path78"></path>
|
35
|
+
</g>
|
36
|
+
<g id="g80" transform="translate(246.307061, 0.255867)" fill="#FCA326">
|
37
|
+
<path d="M218.666661,279.999993 L218.666661,279.999993 L246.225327,195.185328 C248.73866,187.449329 245.985327,178.974662 239.403994,174.194662 L0.890666644,0.905333311 L218.666661,279.999993 L218.666661,279.999993 Z" id="path82"></path>
|
38
|
+
</g>
|
39
|
+
<g id="g84" transform="translate(336.973725, 280.255593)" fill="#E24329">
|
40
|
+
<path d="M127.999997,0 L0.907999977,0 L55.5266653,168.097329 C58.3373319,176.746662 70.5733316,176.746662 73.3826648,168.097329 L127.999997,0 L127.999997,0 Z" id="path86"></path>
|
41
|
+
</g>
|
42
|
+
</g>
|
43
|
+
</g>
|
44
|
+
</g>
|
45
|
+
</g>
|
46
|
+
</g>
|
47
|
+
</g>
|
48
|
+
</g>
|
49
|
+
</g>
|
50
|
+
</g>
|
51
|
+
</g>
|
52
|
+
</g>
|
53
|
+
</svg>
|
data/assets/icon.jpg
ADDED
Binary file
|
data/assets/icon.svg
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
width="32px"
|
13
|
+
height="32px"
|
14
|
+
id="svg2985"
|
15
|
+
version="1.1"
|
16
|
+
inkscape:version="0.48.5 r10040"
|
17
|
+
sodipodi:docname="New document 2">
|
18
|
+
<defs
|
19
|
+
id="defs2987" />
|
20
|
+
<sodipodi:namedview
|
21
|
+
id="base"
|
22
|
+
pagecolor="#ffffff"
|
23
|
+
bordercolor="#666666"
|
24
|
+
borderopacity="1.0"
|
25
|
+
inkscape:pageopacity="0.0"
|
26
|
+
inkscape:pageshadow="2"
|
27
|
+
inkscape:zoom="11.197802"
|
28
|
+
inkscape:cx="2.0686946"
|
29
|
+
inkscape:cy="15.670261"
|
30
|
+
inkscape:current-layer="layer1"
|
31
|
+
showgrid="true"
|
32
|
+
inkscape:grid-bbox="true"
|
33
|
+
inkscape:document-units="px"
|
34
|
+
showguides="true"
|
35
|
+
inkscape:guide-bbox="true"
|
36
|
+
inkscape:window-width="1342"
|
37
|
+
inkscape:window-height="543"
|
38
|
+
inkscape:window-x="283"
|
39
|
+
inkscape:window-y="170"
|
40
|
+
inkscape:window-maximized="0">
|
41
|
+
<sodipodi:guide
|
42
|
+
orientation="0,1"
|
43
|
+
position="56.886164,42.686949"
|
44
|
+
id="guide3003" />
|
45
|
+
<sodipodi:guide
|
46
|
+
orientation="0,1"
|
47
|
+
position="56.171738,-9.5554467"
|
48
|
+
id="guide3005" />
|
49
|
+
<sodipodi:guide
|
50
|
+
orientation="0,1"
|
51
|
+
position="38.221787,47.598627"
|
52
|
+
id="guide3007" />
|
53
|
+
<sodipodi:guide
|
54
|
+
orientation="0,1"
|
55
|
+
position="47.866537,-14.824338"
|
56
|
+
id="guide3009" />
|
57
|
+
</sodipodi:namedview>
|
58
|
+
<metadata
|
59
|
+
id="metadata2990">
|
60
|
+
<rdf:RDF>
|
61
|
+
<cc:Work
|
62
|
+
rdf:about="">
|
63
|
+
<dc:format>image/svg+xml</dc:format>
|
64
|
+
<dc:type
|
65
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
66
|
+
<dc:title></dc:title>
|
67
|
+
</cc:Work>
|
68
|
+
</rdf:RDF>
|
69
|
+
</metadata>
|
70
|
+
<g
|
71
|
+
id="layer1"
|
72
|
+
inkscape:label="Layer 1"
|
73
|
+
inkscape:groupmode="layer">
|
74
|
+
<rect
|
75
|
+
style="fill:#3771c8;fill-opacity:1;stroke:#214478;stroke-width:3.17169094;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
76
|
+
id="rect2997"
|
77
|
+
width="29.177027"
|
78
|
+
height="28.793283"
|
79
|
+
x="1.7672503"
|
80
|
+
y="1.7073869" />
|
81
|
+
<text
|
82
|
+
xml:space="preserve"
|
83
|
+
style="font-size:20.30900383px;font-style:oblique;font-weight:normal;line-height:0%;letter-spacing:0px;word-spacing:0px;fill:#d5e5ff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Oblique"
|
84
|
+
x="4.6549511"
|
85
|
+
y="22.282141"
|
86
|
+
id="text2999"
|
87
|
+
sodipodi:linespacing="0%"
|
88
|
+
transform="scale(1.055601,0.94732765)"><tspan
|
89
|
+
sodipodi:role="line"
|
90
|
+
id="tspan3001"
|
91
|
+
x="4.6549511"
|
92
|
+
y="22.282141"
|
93
|
+
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#d5e5ff;font-family:Bell MT;-inkscape-font-specification:Bell MT Italic">tm</tspan></text>
|
94
|
+
</g>
|
95
|
+
</svg>
|