jekyll-theme-drop 0.1.1 → 0.1.2
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 +4 -4
- data/_includes/bouncing.svg +53 -0
- data/_layouts/default.html +2 -0
- data/_sass/base/_typography.scss +14 -14
- data/_sass/components/_box.scss +106 -10
- data/_sass/components/_button.scss +30 -14
- data/_sass/components/_container.scss +2 -3
- data/_sass/components/_form.scss +7 -7
- data/_sass/components/_table.scss +1 -1
- data/_sass/layout/_banner.scss +6 -6
- data/_sass/layout/_breakpoints.scss +5 -5
- data/_sass/layout/_footer.scss +9 -9
- data/_sass/layout/_header.scss +5 -5
- data/_sass/libs/_vars.scss +12 -0
- data/assets/css/images/arrow.svg +13 -7
- data/assets/css/images/banner.svg +206 -54
- data/assets/css/images/circles.svg +30 -0
- data/assets/css/images/falling.svg +37 -0
- data/assets/images/bg-1.jpg +0 -0
- data/assets/images/bouncing.svg +50 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/logo.svg +21 -0
- data/assets/js/main.js +26 -25
- metadata +9 -5
- data/assets/images/drop.svg +0 -99
- data/assets/images/drop_background.svg +0 -110
- data/assets/images/drop_bouncing.svg +0 -125
data/_sass/layout/_banner.scss
CHANGED
@@ -2,17 +2,17 @@
|
|
2
2
|
|
3
3
|
#banner {
|
4
4
|
position: relative;
|
5
|
-
color:
|
5
|
+
color: _palette(fg);
|
6
6
|
text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
|
7
7
|
text-align: center;
|
8
|
-
background:
|
8
|
+
background: _palette(bg) url('images/banner.svg') bottom center no-repeat;
|
9
9
|
padding: 5em 0 5em 0;
|
10
10
|
margin: 0;
|
11
11
|
background-size: 125% auto;
|
12
12
|
|
13
13
|
.button {
|
14
|
-
color:
|
15
|
-
text-shadow: 0 0 0.5px
|
14
|
+
color: _palette(accent);
|
15
|
+
text-shadow: 0 0 0.5px _palette(bg-light);
|
16
16
|
}
|
17
17
|
|
18
18
|
header {
|
@@ -35,10 +35,10 @@
|
|
35
35
|
|
36
36
|
a {
|
37
37
|
color: inherit;
|
38
|
-
border-bottom-color:
|
38
|
+
border-bottom-color: _palette(border);
|
39
39
|
|
40
40
|
&:hover {
|
41
|
-
border-bottom-color:
|
41
|
+
border-bottom-color: _palette(border-light);
|
42
42
|
}
|
43
43
|
}
|
44
44
|
}
|
@@ -11,7 +11,7 @@
|
|
11
11
|
/* Header */
|
12
12
|
|
13
13
|
#header {
|
14
|
-
padding:
|
14
|
+
padding: 2em 0 12em 0;
|
15
15
|
}
|
16
16
|
|
17
17
|
}
|
@@ -30,7 +30,7 @@
|
|
30
30
|
/* Header */
|
31
31
|
|
32
32
|
#header {
|
33
|
-
padding:
|
33
|
+
padding: 2em 0 10em 0;
|
34
34
|
}
|
35
35
|
|
36
36
|
}
|
@@ -42,7 +42,7 @@
|
|
42
42
|
/* Basic */
|
43
43
|
|
44
44
|
body {
|
45
|
-
background-color:
|
45
|
+
background-color: _palette(bg);
|
46
46
|
background-image: url('images/overlay.png'), url('../images/bg-alt.jpg');
|
47
47
|
background-repeat: repeat, no-repeat;
|
48
48
|
background-size: auto, 100% auto;
|
@@ -110,7 +110,7 @@
|
|
110
110
|
/* Header */
|
111
111
|
|
112
112
|
#header {
|
113
|
-
padding:
|
113
|
+
padding: 2em 0 12em 0;
|
114
114
|
}
|
115
115
|
|
116
116
|
/* Banner */
|
@@ -278,7 +278,7 @@
|
|
278
278
|
|
279
279
|
/* Header */
|
280
280
|
#header {
|
281
|
-
padding:
|
281
|
+
padding: 2em 0 6em 0;
|
282
282
|
|
283
283
|
header {
|
284
284
|
padding-left: 2em;
|
data/_sass/layout/_footer.scss
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
#footer {
|
4
4
|
position: relative;
|
5
|
-
color:
|
5
|
+
color: _palette(fg);
|
6
6
|
text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
|
7
7
|
text-align: center;
|
8
8
|
margin: 4.5em 0 0 0;
|
@@ -14,25 +14,25 @@
|
|
14
14
|
top: -4.5em;
|
15
15
|
left: 50%;
|
16
16
|
height: 4.5em;
|
17
|
-
border-left: solid 1px
|
17
|
+
border-left: solid 1px _palette(accent);
|
18
18
|
}
|
19
19
|
|
20
20
|
a {
|
21
|
-
color:
|
22
|
-
text-shadow: 0 0 0.5px
|
23
|
-
border-bottom-color:
|
21
|
+
color: _palette(accent-light);
|
22
|
+
text-shadow: 0 0 0.5px _palette(accent-light);
|
23
|
+
border-bottom-color: _palette(accent-light);
|
24
24
|
|
25
25
|
&:hover {
|
26
|
-
color:
|
27
|
-
text-shadow: 0 0 0.5px
|
28
|
-
border-bottom-color:
|
26
|
+
color: _palette(accent);
|
27
|
+
text-shadow: 0 0 0.5px _palette(accent);
|
28
|
+
border-bottom-color: _palette(accent);
|
29
29
|
}
|
30
30
|
}
|
31
31
|
|
32
32
|
.icons {
|
33
33
|
padding: 0.75em 2em 0.75em 2em;
|
34
34
|
border-radius: 3em;
|
35
|
-
border: solid 1px
|
35
|
+
border: solid 1px _palette(accent);
|
36
36
|
display: inline-block;
|
37
37
|
margin: 0 0 3em 0;
|
38
38
|
}
|
data/_sass/layout/_header.scss
CHANGED
@@ -3,11 +3,11 @@
|
|
3
3
|
#header {
|
4
4
|
@include vendor('transition', 'opacity 2s ease-in-out');
|
5
5
|
position: relative;
|
6
|
-
color:
|
6
|
+
color: _palette(fg);
|
7
7
|
text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
|
8
8
|
text-align: center;
|
9
9
|
margin: 0;
|
10
|
-
padding:
|
10
|
+
padding: 2em 0 14em 0;
|
11
11
|
cursor: default;
|
12
12
|
|
13
13
|
header {
|
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
p {
|
24
24
|
border-top: solid 1px rgba(255, 255, 255, 0.5);
|
25
|
-
color:
|
25
|
+
color: _palette(fg-light);
|
26
26
|
text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.1875);
|
27
27
|
font-size: 1em;
|
28
28
|
text-transform: uppercase;
|
@@ -57,7 +57,7 @@
|
|
57
57
|
bottom: -9em;
|
58
58
|
left: 50%;
|
59
59
|
height: 9em;
|
60
|
-
border-left: solid 1px
|
60
|
+
border-left: solid 1px _palette(accent);
|
61
61
|
}
|
62
62
|
|
63
63
|
&:before {
|
@@ -70,7 +70,7 @@
|
|
70
70
|
bottom: -4.5em;
|
71
71
|
margin-left: -45px;
|
72
72
|
margin-bottom: -33px;
|
73
|
-
background: url('images/
|
73
|
+
background: url('images/circles.svg') no-repeat;
|
74
74
|
}
|
75
75
|
}
|
76
76
|
|
data/_sass/libs/_vars.scss
CHANGED
@@ -19,4 +19,16 @@
|
|
19
19
|
|
20
20
|
// Palette.
|
21
21
|
$palette: (
|
22
|
+
bg: rgba(25,45,60,1),
|
23
|
+
bg-alt: rgba(245,245,245,1),
|
24
|
+
bg-light: rgba(25,45,60,0.5),
|
25
|
+
bg-dark: rgba(5,20,25,1),
|
26
|
+
fg: rgba(255,255,255,1),
|
27
|
+
fg-bold: rgba(255,255,255,1),
|
28
|
+
fg-light: rgba(255,255,255,1),
|
29
|
+
border: rgba(40,60,70,0.75),
|
30
|
+
border-bg: rgba(40,60,70,1),
|
31
|
+
border-light: rgba(40,60,70,0.5),
|
32
|
+
accent: rgba(0,255,255,1),
|
33
|
+
accent-light: rgba(165,255,255,1)
|
22
34
|
);
|
data/assets/css/images/arrow.svg
CHANGED
@@ -1,11 +1,17 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
2
|
+
width="90px"
|
3
|
+
height="66px"
|
4
|
+
viewBox="0 0 90 66"
|
5
|
+
zoomAndPan="disable"
|
6
|
+
stroke="#00ffff"
|
7
|
+
stroke-width="1">
|
2
8
|
|
3
|
-
<line x1="1" y1="1" x2="90" y2="1"
|
4
|
-
<line x1="1" y1="1" x2="45.5" y2="46"
|
5
|
-
<line x1="90" y1="1" x2="45.5" y2="46"
|
9
|
+
<line x1="1" y1="1" x2="90" y2="1"/>
|
10
|
+
<line x1="1" y1="1" x2="45.5" y2="46"/>
|
11
|
+
<line x1="90" y1="1" x2="45.5" y2="46"/>
|
6
12
|
|
7
|
-
<line x1="1" y1="21" x2="90" y2="21"
|
8
|
-
<line x1="1" y1="21" x2="45.5" y2="66"
|
9
|
-
<line x1="90" y1="21" x2="45.5" y2="66"
|
13
|
+
<line x1="1" y1="21" x2="90" y2="21"/>
|
14
|
+
<line x1="1" y1="21" x2="45.5" y2="66"/>
|
15
|
+
<line x1="90" y1="21" x2="45.5" y2="66"/>
|
10
16
|
|
11
17
|
</svg>
|
@@ -1,54 +1,206 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
+
width="1800px"
|
11
|
+
height="900px"
|
12
|
+
viewBox="0 0 1800 900"
|
13
|
+
zoomAndPan="disable"
|
14
|
+
version="1.1"
|
15
|
+
id="svg4545"
|
16
|
+
sodipodi:docname="banner.svg"
|
17
|
+
inkscape:version="0.92.1 r15371">
|
18
|
+
<metadata
|
19
|
+
id="metadata4551">
|
20
|
+
<rdf:RDF>
|
21
|
+
<cc:Work
|
22
|
+
rdf:about="">
|
23
|
+
<dc:format>image/svg+xml</dc:format>
|
24
|
+
<dc:type
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
26
|
+
<dc:title></dc:title>
|
27
|
+
</cc:Work>
|
28
|
+
</rdf:RDF>
|
29
|
+
</metadata>
|
30
|
+
<defs
|
31
|
+
id="defs4549" />
|
32
|
+
<sodipodi:namedview
|
33
|
+
pagecolor="#ffffff"
|
34
|
+
bordercolor="#666666"
|
35
|
+
borderopacity="1"
|
36
|
+
objecttolerance="10"
|
37
|
+
gridtolerance="10"
|
38
|
+
guidetolerance="10"
|
39
|
+
inkscape:pageopacity="0"
|
40
|
+
inkscape:pageshadow="2"
|
41
|
+
inkscape:window-width="1920"
|
42
|
+
inkscape:window-height="1080"
|
43
|
+
id="namedview4547"
|
44
|
+
showgrid="false"
|
45
|
+
inkscape:pagecheckerboard="true"
|
46
|
+
inkscape:zoom="0.78"
|
47
|
+
inkscape:cx="764.58368"
|
48
|
+
inkscape:cy="193.22501"
|
49
|
+
inkscape:window-x="1366"
|
50
|
+
inkscape:window-y="-16"
|
51
|
+
inkscape:window-maximized="1"
|
52
|
+
inkscape:current-layer="layer1" />
|
53
|
+
<style
|
54
|
+
type="text/css"
|
55
|
+
id="style4485"><![CDATA[
|
56
|
+
line
|
57
|
+
{
|
58
|
+
stroke: rgba(255,255,255,0.125);
|
59
|
+
stroke-width: 0.85px;
|
60
|
+
}
|
61
|
+
|
62
|
+
polygon
|
63
|
+
{
|
64
|
+
fill: rgba(255,255,255,0.075);
|
65
|
+
}
|
66
|
+
]]></style>
|
67
|
+
<!-- Middle line -->
|
68
|
+
<!-- Lines -->
|
69
|
+
<!-- Fills -->
|
70
|
+
<g
|
71
|
+
inkscape:groupmode="layer"
|
72
|
+
id="layer1"
|
73
|
+
inkscape:label="up"
|
74
|
+
style="display:inline">
|
75
|
+
<ellipse
|
76
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.85047138;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1"
|
77
|
+
id="path4553"
|
78
|
+
cx="900"
|
79
|
+
cy="-49.999996"
|
80
|
+
rx="299.57477"
|
81
|
+
ry="149.57477" />
|
82
|
+
<ellipse
|
83
|
+
ry="199.57454"
|
84
|
+
rx="399.57455"
|
85
|
+
cy="1.1622907e-06"
|
86
|
+
cx="900"
|
87
|
+
id="ellipse4555"
|
88
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.85092378;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1" />
|
89
|
+
<ellipse
|
90
|
+
ry="99.575211"
|
91
|
+
rx="199.57521"
|
92
|
+
cy="-99.999992"
|
93
|
+
cx="900"
|
94
|
+
id="ellipse4557"
|
95
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.84956795;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1" />
|
96
|
+
<ellipse
|
97
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.85119545;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1"
|
98
|
+
id="ellipse4559"
|
99
|
+
cx="900"
|
100
|
+
cy="50"
|
101
|
+
rx="499.5744"
|
102
|
+
ry="249.5744" />
|
103
|
+
<ellipse
|
104
|
+
ry="299.57431"
|
105
|
+
rx="599.57428"
|
106
|
+
cy="99.999985"
|
107
|
+
cx="900"
|
108
|
+
id="ellipse4561"
|
109
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.85137665;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1" />
|
110
|
+
<ellipse
|
111
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.85150611;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1"
|
112
|
+
id="ellipse4601"
|
113
|
+
cx="900"
|
114
|
+
cy="150"
|
115
|
+
rx="699.57428"
|
116
|
+
ry="349.57425" />
|
117
|
+
<ellipse
|
118
|
+
ry="399.51343"
|
119
|
+
rx="799.51343"
|
120
|
+
cy="200"
|
121
|
+
cx="900"
|
122
|
+
id="ellipse4603"
|
123
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.97314984;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1" />
|
124
|
+
<ellipse
|
125
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.09479356;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1"
|
126
|
+
id="ellipse4605"
|
127
|
+
cx="900"
|
128
|
+
cy="250"
|
129
|
+
rx="899.45264"
|
130
|
+
ry="449.45261" />
|
131
|
+
<ellipse
|
132
|
+
ry="499.39178"
|
133
|
+
rx="999.39172"
|
134
|
+
cy="300"
|
135
|
+
cx="900"
|
136
|
+
id="ellipse4607"
|
137
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.21643722;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1" />
|
138
|
+
<ellipse
|
139
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.338081;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1"
|
140
|
+
id="ellipse4609"
|
141
|
+
cx="900"
|
142
|
+
cy="350.00003"
|
143
|
+
rx="1099.3309"
|
144
|
+
ry="549.33093" />
|
145
|
+
<ellipse
|
146
|
+
ry="599.27014"
|
147
|
+
rx="1199.2701"
|
148
|
+
cy="400.00003"
|
149
|
+
cx="900"
|
150
|
+
id="ellipse4611"
|
151
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.45972478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1" />
|
152
|
+
<ellipse
|
153
|
+
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.58136857;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.1"
|
154
|
+
id="ellipse4613"
|
155
|
+
cx="900"
|
156
|
+
cy="450"
|
157
|
+
rx="1299.2094"
|
158
|
+
ry="649.20929" />
|
159
|
+
</g>
|
160
|
+
<g
|
161
|
+
inkscape:groupmode="layer"
|
162
|
+
id="layer2"
|
163
|
+
inkscape:label="down"
|
164
|
+
style="display:inline;opacity:1">
|
165
|
+
<ellipse
|
166
|
+
style="opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.85228378;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
167
|
+
id="ellipse4633"
|
168
|
+
cx="900"
|
169
|
+
cy="-1000"
|
170
|
+
rx="200"
|
171
|
+
ry="100"
|
172
|
+
transform="scale(1,-1)" />
|
173
|
+
<ellipse
|
174
|
+
transform="scale(1,-1)"
|
175
|
+
ry="150"
|
176
|
+
rx="300"
|
177
|
+
cy="-950"
|
178
|
+
cx="900"
|
179
|
+
id="ellipse4695"
|
180
|
+
style="opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.27842557;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
181
|
+
<ellipse
|
182
|
+
style="opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.70456743;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
183
|
+
id="ellipse4699"
|
184
|
+
cx="900"
|
185
|
+
cy="-900"
|
186
|
+
rx="400"
|
187
|
+
ry="200"
|
188
|
+
transform="scale(1,-1)" />
|
189
|
+
<ellipse
|
190
|
+
transform="scale(1,-1)"
|
191
|
+
ry="250"
|
192
|
+
rx="500"
|
193
|
+
cy="-850"
|
194
|
+
cx="900"
|
195
|
+
id="ellipse4701"
|
196
|
+
style="opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.13070941;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
197
|
+
<ellipse
|
198
|
+
style="opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.55685139;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
199
|
+
id="ellipse4703"
|
200
|
+
cx="900"
|
201
|
+
cy="-800"
|
202
|
+
rx="600"
|
203
|
+
ry="300"
|
204
|
+
transform="scale(1,-1)" />
|
205
|
+
</g>
|
206
|
+
</svg>
|