devterm 0.1.8
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 +201 -0
- data/README.md +28 -0
- data/_includes/body-scripts.html +11 -0
- data/_includes/copyright.html +1 -0
- data/_includes/h1-div.html +1 -0
- data/_includes/h2-div.html +1 -0
- data/_includes/head.html +22 -0
- data/_includes/menu-contact.html +4 -0
- data/_includes/menu-index.html +3 -0
- data/_includes/menu-license.html +3 -0
- data/_includes/menu-tips.html +3 -0
- data/_includes/menu-work.html +3 -0
- data/_includes/nav-content-license.html +1 -0
- data/_includes/social.html +12 -0
- data/_includes/svg-alert.html +3 -0
- data/_includes/svg-arrow-up.html +3 -0
- data/_includes/svg-chevron.html +3 -0
- data/_includes/svg-code.html +3 -0
- data/_includes/svg-file-binary.html +3 -0
- data/_includes/svg-home-big.html +3 -0
- data/_includes/svg-home.html +3 -0
- data/_includes/svg-law-big.html +3 -0
- data/_includes/svg-law.html +3 -0
- data/_includes/svg-light-bulb.html +3 -0
- data/_includes/svg-mail.html +3 -0
- data/_includes/tips-page.html +14 -0
- data/_includes/top-div.html +2 -0
- data/_includes/work-about.html +1 -0
- data/_includes/work-bugs.html +1 -0
- data/_includes/work-code.html +2 -0
- data/_includes/work-found-bug.html +3 -0
- data/_includes/work-head.html +3 -0
- data/_includes/work-license.html +4 -0
- data/_includes/work-modal.html +16 -0
- data/_includes/work-more.html +4 -0
- data/_includes/work-page.html +14 -0
- data/_includes/work-screencaps.html +1 -0
- data/_includes/work-version.html +1 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/contact.html +26 -0
- data/_layouts/default.html +12 -0
- data/_layouts/license.html +29 -0
- data/_layouts/tips.html +29 -0
- data/_layouts/work.html +29 -0
- data/_sass/main.scss +680 -0
- data/_sass/modal.scss +148 -0
- data/_sass/palette.scss +21 -0
- data/assets/css/main-min.scss +4 -0
- data/assets/css/modal-min.scss +4 -0
- data/assets/img/code-icon.png +0 -0
- data/assets/img/facebook-wrap.png +0 -0
- data/assets/img/facebook.png +0 -0
- data/assets/img/github-wrap.png +0 -0
- data/assets/img/kofi-wrap.png +0 -0
- data/assets/img/linkedin-wrap.png +0 -0
- data/assets/img/mail.png +0 -0
- data/assets/img/phone.png +0 -0
- data/assets/img/twitter-wrap.png +0 -0
- data/assets/img/twitter.png +0 -0
- data/assets/js/menu-min.js +1 -0
- data/assets/js/modal-min.js +1 -0
- data/assets/js/nav-bar-min.js +1 -0
- data/assets/js/svg4everybody-min.js +1 -0
- data/assets/js/typed-min.js +5 -0
- metadata +150 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
<ul class="work-list">
|
2
|
+
{% for work in site.works %}
|
3
|
+
<li class="work-list-item">
|
4
|
+
<a class="work-tile" title="{{ work.title }}" href="{{ work.permalink }}">
|
5
|
+
<img class="work-tile-logo" alt="{{ work.title }}" src="{{ site.baseurl }}/{{ work.cdn }}/img/logo-promotion.png">
|
6
|
+
<span class="text-content text-content-{{ work.background }}">
|
7
|
+
<span>
|
8
|
+
{{ work.description }}
|
9
|
+
</span>
|
10
|
+
</span>
|
11
|
+
</a>
|
12
|
+
</li>
|
13
|
+
{% endfor %}
|
14
|
+
</ul>
|
@@ -0,0 +1 @@
|
|
1
|
+
<h3 class="p-title">Screencaps:</h3>
|
@@ -0,0 +1 @@
|
|
1
|
+
<h3 class="p-title">Version:</h3>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
# Jekyll layout that compresses HTML
|
3
|
+
# v3.0.2
|
4
|
+
# http://jch.penibelst.de/
|
5
|
+
# © 2014–2015 Anatol Broder
|
6
|
+
# MIT License
|
7
|
+
---
|
8
|
+
|
9
|
+
{% capture _LINE_FEED %}
|
10
|
+
{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
layout: compress
|
3
|
+
---
|
4
|
+
|
5
|
+
<!DOCTYPE html>
|
6
|
+
<html lang="en">
|
7
|
+
{% include head.html %}
|
8
|
+
<body>
|
9
|
+
<div class="top-div purple-div">
|
10
|
+
{% include top-div.html %}
|
11
|
+
</div>
|
12
|
+
<div class="left-div fixed-div purple-div page-div">
|
13
|
+
{% include h2-div.html %}
|
14
|
+
{% include svg-mail.html %}
|
15
|
+
{% include h1-div.html %}
|
16
|
+
</div>
|
17
|
+
<div>
|
18
|
+
{% include menu-contact.html %}
|
19
|
+
</div>
|
20
|
+
<div class="right-div right-div-contact purple">
|
21
|
+
{{ content }}
|
22
|
+
</div>
|
23
|
+
{% include svg-law.html %}
|
24
|
+
{% include body-scripts.html %}
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,29 @@
|
|
1
|
+
---
|
2
|
+
layout: compress
|
3
|
+
---
|
4
|
+
|
5
|
+
<!DOCTYPE html>
|
6
|
+
<html lang="en">
|
7
|
+
{% include head.html %}
|
8
|
+
<body>
|
9
|
+
<div class="top-div green-div">
|
10
|
+
{% include top-div.html %}
|
11
|
+
</div>
|
12
|
+
<div class="left-div fixed-div green-div page-div">
|
13
|
+
{% include h2-div.html %}
|
14
|
+
{% include svg-law-big.html %}
|
15
|
+
{% include h1-div.html %}
|
16
|
+
</div>
|
17
|
+
<div>
|
18
|
+
{% include menu-license.html %}
|
19
|
+
</div>
|
20
|
+
<div class="right-div green">
|
21
|
+
{{ content }}
|
22
|
+
</div>
|
23
|
+
{% if page.require contains 'arrow-up' %}
|
24
|
+
{% include svg-arrow-up.html %}
|
25
|
+
{% endif %}
|
26
|
+
{% include svg-home.html %}
|
27
|
+
{% include body-scripts.html %}
|
28
|
+
</body>
|
29
|
+
</html>
|
data/_layouts/tips.html
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
---
|
2
|
+
layout: compress
|
3
|
+
---
|
4
|
+
|
5
|
+
<!DOCTYPE html>
|
6
|
+
<html lang="en">
|
7
|
+
{% include head.html %}
|
8
|
+
<body>
|
9
|
+
<div class="top-div orange-div">
|
10
|
+
{% include top-div.html %}
|
11
|
+
</div>
|
12
|
+
<div class="left-div fixed-div orange-div page-div">
|
13
|
+
{% include h2-div.html %}
|
14
|
+
{% include svg-light-bulb.html %}
|
15
|
+
{% include h1-div.html %}
|
16
|
+
</div>
|
17
|
+
<div>
|
18
|
+
{% include menu-tips.html %}
|
19
|
+
</div>
|
20
|
+
<div class="right-div orange">
|
21
|
+
{{ content }}
|
22
|
+
</div>
|
23
|
+
{% if page.require contains 'arrow-up' %}
|
24
|
+
{% include svg-arrow-up.html %}
|
25
|
+
{% endif %}
|
26
|
+
{% include svg-law.html %}
|
27
|
+
{% include body-scripts.html %}
|
28
|
+
</body>
|
29
|
+
</html>
|
data/_layouts/work.html
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
---
|
2
|
+
layout: compress
|
3
|
+
---
|
4
|
+
|
5
|
+
<!DOCTYPE html>
|
6
|
+
<html lang="en">
|
7
|
+
{% include head.html %}
|
8
|
+
<body>
|
9
|
+
<div class="top-div blue-div">
|
10
|
+
{% include top-div.html %}
|
11
|
+
</div>
|
12
|
+
<div class="left-div fixed-div blue-div page-div">
|
13
|
+
{% include h2-div.html %}
|
14
|
+
{% include svg-file-binary.html %}
|
15
|
+
{% include h1-div.html %}
|
16
|
+
</div>
|
17
|
+
<div>
|
18
|
+
{% include menu-work.html %}
|
19
|
+
</div>
|
20
|
+
<div class="right-div blue">
|
21
|
+
{{ content }}
|
22
|
+
</div>
|
23
|
+
{% if page.require contains 'arrow-up' %}
|
24
|
+
{% include svg-arrow-up.html %}
|
25
|
+
{% endif %}
|
26
|
+
{% include svg-law.html %}
|
27
|
+
{% include body-scripts.html %}
|
28
|
+
</body>
|
29
|
+
</html>
|
data/_sass/main.scss
ADDED
@@ -0,0 +1,680 @@
|
|
1
|
+
@import 'palette';
|
2
|
+
|
3
|
+
body {
|
4
|
+
background-color: $smoke;
|
5
|
+
color: $smoke;
|
6
|
+
font-family: $font-stack;
|
7
|
+
margin: 0;
|
8
|
+
padding: 0;
|
9
|
+
}
|
10
|
+
|
11
|
+
.window-div {
|
12
|
+
background-color: $black;
|
13
|
+
height: 100vh;
|
14
|
+
width: 100vw;
|
15
|
+
}
|
16
|
+
|
17
|
+
.hidden {
|
18
|
+
display: none;
|
19
|
+
}
|
20
|
+
|
21
|
+
.left-div {
|
22
|
+
background-color: $black;
|
23
|
+
height: 100vh;
|
24
|
+
}
|
25
|
+
|
26
|
+
.page-div {
|
27
|
+
display: none;
|
28
|
+
}
|
29
|
+
|
30
|
+
.top-div {
|
31
|
+
height: 15vh;
|
32
|
+
}
|
33
|
+
|
34
|
+
.right-div {
|
35
|
+
margin-left: 10vw;
|
36
|
+
padding: 5vh 0 7vh 0;
|
37
|
+
width: 80vw;
|
38
|
+
}
|
39
|
+
|
40
|
+
.nav-up {
|
41
|
+
top: -40px;
|
42
|
+
}
|
43
|
+
|
44
|
+
.h2-div {
|
45
|
+
font-size: 6vw;
|
46
|
+
font-weight: 400;
|
47
|
+
height: 6vh;
|
48
|
+
margin: 0;
|
49
|
+
padding: 15vh 0 0 0;
|
50
|
+
text-align: center;
|
51
|
+
}
|
52
|
+
|
53
|
+
.h2-page {
|
54
|
+
font-size: 12vw;
|
55
|
+
}
|
56
|
+
|
57
|
+
.h2-top {
|
58
|
+
height: 4vh;
|
59
|
+
padding: 2vh 0 0 0;
|
60
|
+
}
|
61
|
+
|
62
|
+
.p-center {
|
63
|
+
line-height: 32px;
|
64
|
+
margin: 0;
|
65
|
+
padding: 0;
|
66
|
+
text-align: center;
|
67
|
+
}
|
68
|
+
|
69
|
+
.p-title {
|
70
|
+
font-size: 7vw;
|
71
|
+
font-weight: 600;
|
72
|
+
margin-top: 7vh;
|
73
|
+
text-align: center;
|
74
|
+
}
|
75
|
+
|
76
|
+
.p-title-first {
|
77
|
+
margin-top: 0;
|
78
|
+
}
|
79
|
+
|
80
|
+
.main-title {
|
81
|
+
font-size: 8vw;
|
82
|
+
font-weight: 600;
|
83
|
+
margin-top: 0;
|
84
|
+
text-align: center;
|
85
|
+
}
|
86
|
+
|
87
|
+
.text-indent {
|
88
|
+
text-indent: 30px;
|
89
|
+
}
|
90
|
+
|
91
|
+
ul {
|
92
|
+
padding-left: 25px;
|
93
|
+
line-height: 30px;
|
94
|
+
text-align: justify;
|
95
|
+
text-justify: inter-word;
|
96
|
+
}
|
97
|
+
|
98
|
+
.p-justify {
|
99
|
+
line-height: 30px;
|
100
|
+
text-align: justify;
|
101
|
+
text-justify: inter-word;
|
102
|
+
}
|
103
|
+
|
104
|
+
.right-div a {
|
105
|
+
color: inherit;
|
106
|
+
}
|
107
|
+
|
108
|
+
.svg-div {
|
109
|
+
height: 40vh;
|
110
|
+
margin: 9vh 30vw 0 30vw;
|
111
|
+
width: 40vw;
|
112
|
+
}
|
113
|
+
|
114
|
+
.h1-div {
|
115
|
+
font-family: $font-stack;
|
116
|
+
font-size: 12vw;
|
117
|
+
height: 12vh;
|
118
|
+
margin: 0;
|
119
|
+
padding: 0;
|
120
|
+
text-align: center;
|
121
|
+
}
|
122
|
+
|
123
|
+
.h1-window {
|
124
|
+
padding: 6vh 0 0 0;
|
125
|
+
a {
|
126
|
+
text-decoration: none;
|
127
|
+
&:hover {
|
128
|
+
text-decoration: none;
|
129
|
+
}
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
133
|
+
.h1-window-top {
|
134
|
+
padding: 10vh 0 0 0;
|
135
|
+
}
|
136
|
+
|
137
|
+
.h1-window-bottom {
|
138
|
+
padding: 0;
|
139
|
+
}
|
140
|
+
|
141
|
+
.h1-page {
|
142
|
+
font-size: 17vw;
|
143
|
+
}
|
144
|
+
|
145
|
+
.h1-top {
|
146
|
+
font-size: 9vw;
|
147
|
+
height: 5vh;
|
148
|
+
margin: 2vh 0 0 10px;
|
149
|
+
}
|
150
|
+
|
151
|
+
.h1-page a,
|
152
|
+
.h1-top a {
|
153
|
+
color: $smoke;
|
154
|
+
text-decoration: none;
|
155
|
+
}
|
156
|
+
|
157
|
+
.h1-page a:hover,
|
158
|
+
.h1-top a:hover {
|
159
|
+
color: $smoke;
|
160
|
+
text-decoration: underline;
|
161
|
+
}
|
162
|
+
|
163
|
+
.typed-cursor {
|
164
|
+
animation: blink 1s infinite;
|
165
|
+
color: $green-lime;
|
166
|
+
margin-left: -7px;
|
167
|
+
margin-right: -5px;
|
168
|
+
}
|
169
|
+
|
170
|
+
@keyframes blink {
|
171
|
+
to {
|
172
|
+
opacity: .0;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
|
177
|
+
.svg-window {
|
178
|
+
margin: 0 30vw 0 30vw;
|
179
|
+
}
|
180
|
+
|
181
|
+
.bottom-svg {
|
182
|
+
border-radius: 50px;
|
183
|
+
bottom: 3vh;
|
184
|
+
height: 4vh;
|
185
|
+
max-height: 30px;
|
186
|
+
max-width: 30px;
|
187
|
+
padding: 7px;
|
188
|
+
position: fixed;
|
189
|
+
width: 4vh;
|
190
|
+
}
|
191
|
+
|
192
|
+
.bottom-left-svg {
|
193
|
+
left: 3vw;
|
194
|
+
}
|
195
|
+
|
196
|
+
.bottom-right-svg {
|
197
|
+
right: 3vw;
|
198
|
+
}
|
199
|
+
|
200
|
+
.bottom-svg {
|
201
|
+
&:hover,
|
202
|
+
&:focus,
|
203
|
+
&:active {
|
204
|
+
cursor: pointer;
|
205
|
+
opacity: 0.7;
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
.main-menu {
|
210
|
+
font-size: 5vw;
|
211
|
+
height: 5vh;
|
212
|
+
margin: -17vh 0 0 0;
|
213
|
+
padding: 0 0 2vh 0;
|
214
|
+
text-align: center;
|
215
|
+
width: 100vw;
|
216
|
+
z-index: 1000;
|
217
|
+
a {
|
218
|
+
color: $smoke;
|
219
|
+
padding: 20px 0;
|
220
|
+
text-decoration: none;
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
.menu-page {
|
225
|
+
border-bottom: 2px solid $gray;
|
226
|
+
height: inherit;
|
227
|
+
margin: 0;
|
228
|
+
padding: 2vh 0;
|
229
|
+
a {
|
230
|
+
padding: 0;
|
231
|
+
}
|
232
|
+
}
|
233
|
+
|
234
|
+
.slash {
|
235
|
+
color: $gray;
|
236
|
+
}
|
237
|
+
|
238
|
+
.top-menu {
|
239
|
+
border: 0;
|
240
|
+
position: fixed;
|
241
|
+
top: 0;
|
242
|
+
}
|
243
|
+
|
244
|
+
.work {
|
245
|
+
padding: 2vw;
|
246
|
+
}
|
247
|
+
|
248
|
+
.black {
|
249
|
+
color: $black;
|
250
|
+
}
|
251
|
+
|
252
|
+
a .black:hover {
|
253
|
+
text-decoration: underline;
|
254
|
+
}
|
255
|
+
|
256
|
+
.green {
|
257
|
+
color: $green;
|
258
|
+
}
|
259
|
+
|
260
|
+
.green-div {
|
261
|
+
background-color: $green;
|
262
|
+
}
|
263
|
+
|
264
|
+
.blue {
|
265
|
+
color: $blue;
|
266
|
+
}
|
267
|
+
|
268
|
+
a .blue:hover {
|
269
|
+
text-decoration: underline;
|
270
|
+
}
|
271
|
+
|
272
|
+
.blue-div {
|
273
|
+
background-color: $blue;
|
274
|
+
}
|
275
|
+
|
276
|
+
.red {
|
277
|
+
color: $red;
|
278
|
+
}
|
279
|
+
|
280
|
+
a .red:hover {
|
281
|
+
text-decoration: underline;
|
282
|
+
}
|
283
|
+
|
284
|
+
.purple {
|
285
|
+
color: $purple;
|
286
|
+
}
|
287
|
+
|
288
|
+
a .purple:hover {
|
289
|
+
text-decoration: underline;
|
290
|
+
}
|
291
|
+
|
292
|
+
.purple-div {
|
293
|
+
background-color: $purple;
|
294
|
+
}
|
295
|
+
|
296
|
+
.orange {
|
297
|
+
color: $orange;
|
298
|
+
}
|
299
|
+
|
300
|
+
a .orange:hover {
|
301
|
+
text-decoration: underline;
|
302
|
+
}
|
303
|
+
|
304
|
+
.orange-div {
|
305
|
+
background-color: $orange;
|
306
|
+
}
|
307
|
+
|
308
|
+
.white {
|
309
|
+
color: $smoke;
|
310
|
+
}
|
311
|
+
|
312
|
+
.nav-content {
|
313
|
+
margin-left: -5vw;
|
314
|
+
margin-top: 5vh;
|
315
|
+
width: 90vw;
|
316
|
+
ul {
|
317
|
+
line-height: inherit;
|
318
|
+
list-style: none;
|
319
|
+
padding: 0;
|
320
|
+
text-align: center;
|
321
|
+
}
|
322
|
+
}
|
323
|
+
|
324
|
+
.nav-li {
|
325
|
+
display: inline-block;
|
326
|
+
font-size: 4.3vw;
|
327
|
+
padding: 5px 10px;
|
328
|
+
text-decoration: none;
|
329
|
+
}
|
330
|
+
|
331
|
+
.nav-content a {
|
332
|
+
color: $smoke;
|
333
|
+
text-decoration: none;
|
334
|
+
&:hover {
|
335
|
+
color: $smoke;
|
336
|
+
text-decoration: none;
|
337
|
+
}
|
338
|
+
}
|
339
|
+
|
340
|
+
.work-list {
|
341
|
+
list-style-type: none;
|
342
|
+
margin: 0;
|
343
|
+
padding: 0;
|
344
|
+
text-align: center;
|
345
|
+
}
|
346
|
+
|
347
|
+
.work-list-item {
|
348
|
+
display: inline-block;
|
349
|
+
position: relative;
|
350
|
+
}
|
351
|
+
|
352
|
+
.work-tile {
|
353
|
+
text-decoration: none;
|
354
|
+
}
|
355
|
+
|
356
|
+
.work-list-item,
|
357
|
+
.img-screenshot {
|
358
|
+
border-radius: 3px;
|
359
|
+
border: 2px solid $gray-light;
|
360
|
+
cursor: pointer;
|
361
|
+
margin: 0 0 1vh 0;
|
362
|
+
transition: 0.3s;
|
363
|
+
width: 80vw;
|
364
|
+
}
|
365
|
+
|
366
|
+
.work-list-item {
|
367
|
+
background-color: $smoke;
|
368
|
+
height: 30vw;
|
369
|
+
}
|
370
|
+
|
371
|
+
.text-content {
|
372
|
+
-moz-transition: opacity 300ms;
|
373
|
+
-o-transition: opacity 300ms;
|
374
|
+
-webkit-transition: opacity 300ms;
|
375
|
+
cursor: pointer;
|
376
|
+
display: table;
|
377
|
+
height: 100%;
|
378
|
+
left: 0;
|
379
|
+
opacity: 0;
|
380
|
+
position: absolute;
|
381
|
+
top: 0;
|
382
|
+
transition: opacity 300ms;
|
383
|
+
width: 100%;
|
384
|
+
}
|
385
|
+
|
386
|
+
.text-content-white {
|
387
|
+
background-color: $white;
|
388
|
+
color: $black;
|
389
|
+
}
|
390
|
+
|
391
|
+
.text-content-green {
|
392
|
+
background-color: $green-zendesk;
|
393
|
+
color: $white;
|
394
|
+
}
|
395
|
+
|
396
|
+
.text-content-algae {
|
397
|
+
background-color: $algae;
|
398
|
+
color: $white;
|
399
|
+
}
|
400
|
+
|
401
|
+
.text-content-black {
|
402
|
+
background-color: $black;
|
403
|
+
color: $gray-light;
|
404
|
+
}
|
405
|
+
|
406
|
+
.text-content-ruby {
|
407
|
+
background-color: $ruby;
|
408
|
+
color: $white;
|
409
|
+
}
|
410
|
+
|
411
|
+
.work-list .work-list-item:hover span.text-content {
|
412
|
+
opacity: 1;
|
413
|
+
}
|
414
|
+
|
415
|
+
.tip-title,
|
416
|
+
.text-content span {
|
417
|
+
display: table-cell;
|
418
|
+
font-size: 4vw;
|
419
|
+
line-height: 8vw;
|
420
|
+
text-align: center;
|
421
|
+
vertical-align: middle;
|
422
|
+
}
|
423
|
+
|
424
|
+
.tip-title {
|
425
|
+
font-size: 6vw;
|
426
|
+
padding: 11vw 5px;
|
427
|
+
vertical-align: initial;
|
428
|
+
}
|
429
|
+
|
430
|
+
.img-screenshot {
|
431
|
+
padding: 2px 0;
|
432
|
+
}
|
433
|
+
|
434
|
+
.work-tile-logo {
|
435
|
+
border-radius: 1px;
|
436
|
+
height: 100%;
|
437
|
+
padding: 0;
|
438
|
+
width: 100%;
|
439
|
+
}
|
440
|
+
|
441
|
+
.img-screenshot:hover {
|
442
|
+
opacity: 0.5;
|
443
|
+
}
|
444
|
+
|
445
|
+
.img-screenshot-gif {
|
446
|
+
background-color: $smoke;
|
447
|
+
}
|
448
|
+
|
449
|
+
.no-top-margin {
|
450
|
+
margin-top: 0;
|
451
|
+
}
|
452
|
+
|
453
|
+
.emoji {
|
454
|
+
height: 16px;
|
455
|
+
vertical-align: text-top;
|
456
|
+
width: 16px;
|
457
|
+
}
|
458
|
+
|
459
|
+
.social-image {
|
460
|
+
background-color: $gray-dark;
|
461
|
+
border-radius: 1vh;
|
462
|
+
color: $smoke;
|
463
|
+
height: 5vh;
|
464
|
+
max-height: 50px;
|
465
|
+
max-width: 50px;
|
466
|
+
padding: 1vh;
|
467
|
+
width: 5vh;
|
468
|
+
&:hover {
|
469
|
+
opacity: 0.7;
|
470
|
+
}
|
471
|
+
}
|
472
|
+
|
473
|
+
.p-footer {
|
474
|
+
margin-bottom: -3vh;
|
475
|
+
margin-top: 5em;
|
476
|
+
}
|
477
|
+
|
478
|
+
.copy-contact {
|
479
|
+
margin-top: 2em;
|
480
|
+
}
|
481
|
+
|
482
|
+
.footer-contact {
|
483
|
+
background: $smoke;
|
484
|
+
bottom: 3vh;
|
485
|
+
left: 0;
|
486
|
+
position: fixed;
|
487
|
+
width: 100vw;
|
488
|
+
}
|
489
|
+
|
490
|
+
code {
|
491
|
+
background: $black;
|
492
|
+
border: 1px solid $black;
|
493
|
+
color: $smoke;
|
494
|
+
padding: 0 5px;
|
495
|
+
}
|
496
|
+
|
497
|
+
.code-block {
|
498
|
+
display: block;
|
499
|
+
}
|
500
|
+
|
501
|
+
@media screen and (min-width: 568px) {
|
502
|
+
|
503
|
+
.left-div {
|
504
|
+
float: left;
|
505
|
+
width: 50%;
|
506
|
+
}
|
507
|
+
|
508
|
+
.fixed-div {
|
509
|
+
position: fixed;
|
510
|
+
}
|
511
|
+
|
512
|
+
.top-div {
|
513
|
+
display: none;
|
514
|
+
}
|
515
|
+
|
516
|
+
.right-div {
|
517
|
+
float: right;
|
518
|
+
font-size: 2vw;
|
519
|
+
padding: 10vh 0 6vh 0;
|
520
|
+
position: absolute;
|
521
|
+
right: 5vw;
|
522
|
+
top: 9vh;
|
523
|
+
width: 40vw;
|
524
|
+
}
|
525
|
+
|
526
|
+
.right-div-contact {
|
527
|
+
top: 5vh;
|
528
|
+
}
|
529
|
+
|
530
|
+
.page-div {
|
531
|
+
display: block;
|
532
|
+
}
|
533
|
+
|
534
|
+
.h2-div {
|
535
|
+
font-size: 3vw;
|
536
|
+
}
|
537
|
+
|
538
|
+
.h2-page {
|
539
|
+
font-size: 6vw;
|
540
|
+
}
|
541
|
+
|
542
|
+
.h1-page .typed-cursor {
|
543
|
+
margin-left: -20px;
|
544
|
+
}
|
545
|
+
|
546
|
+
.h1-div {
|
547
|
+
font-size: 6vw;
|
548
|
+
}
|
549
|
+
|
550
|
+
.h1-page {
|
551
|
+
font-size: 8vw;
|
552
|
+
}
|
553
|
+
|
554
|
+
.h1-window-top,
|
555
|
+
.h1-window-bottom {
|
556
|
+
padding: 6vh 0 0 0;
|
557
|
+
}
|
558
|
+
|
559
|
+
.svg-div {
|
560
|
+
margin: 9vh 10vw 5vh 10vw;
|
561
|
+
width: 30vw;
|
562
|
+
}
|
563
|
+
|
564
|
+
.svg-window {
|
565
|
+
margin: 0 35vw 0 35vw;
|
566
|
+
}
|
567
|
+
|
568
|
+
.main-menu {
|
569
|
+
float: right;
|
570
|
+
font-size: 5vw;
|
571
|
+
height: 45vh;
|
572
|
+
margin: 0;
|
573
|
+
padding: 27.5vh 12.5vw 0 0;
|
574
|
+
text-align: center;
|
575
|
+
width: 25vw;
|
576
|
+
a {
|
577
|
+
display: inline-block;
|
578
|
+
line-height: 15vh;
|
579
|
+
padding: 0;
|
580
|
+
}
|
581
|
+
}
|
582
|
+
|
583
|
+
.menu-page {
|
584
|
+
background-color: $smoke;
|
585
|
+
border-bottom: 2px $gray solid;
|
586
|
+
font-size: 3vw;
|
587
|
+
height: inherit;
|
588
|
+
left: 50vw;
|
589
|
+
padding: 2vh 0;
|
590
|
+
position: fixed;
|
591
|
+
width: 50vw;
|
592
|
+
a {
|
593
|
+
line-height: 5vh;
|
594
|
+
padding: 0 1vw;
|
595
|
+
}
|
596
|
+
}
|
597
|
+
|
598
|
+
.slash {
|
599
|
+
display: none;
|
600
|
+
}
|
601
|
+
|
602
|
+
.menu-page .slash {
|
603
|
+
display: inline-block;
|
604
|
+
}
|
605
|
+
|
606
|
+
.bottom-left-svg {
|
607
|
+
left: 51vw;
|
608
|
+
}
|
609
|
+
|
610
|
+
.bottom-right-svg {
|
611
|
+
right: 1vw;
|
612
|
+
}
|
613
|
+
|
614
|
+
.p-justify,
|
615
|
+
ul {
|
616
|
+
line-height: 4vw;
|
617
|
+
}
|
618
|
+
|
619
|
+
.nav-content {
|
620
|
+
margin-left: -2.5vw;
|
621
|
+
margin-top: 10vh;
|
622
|
+
width: 45vw;
|
623
|
+
}
|
624
|
+
|
625
|
+
.nav-li {
|
626
|
+
font-size: 2vw;
|
627
|
+
}
|
628
|
+
|
629
|
+
.p-title {
|
630
|
+
font-size: 4vw;
|
631
|
+
margin-top: 10vh;
|
632
|
+
}
|
633
|
+
|
634
|
+
.p-title-first {
|
635
|
+
margin-top: 0;
|
636
|
+
}
|
637
|
+
|
638
|
+
.p-center {
|
639
|
+
line-height: 4vw;
|
640
|
+
}
|
641
|
+
|
642
|
+
.main-title {
|
643
|
+
font-size: 5vw;
|
644
|
+
}
|
645
|
+
|
646
|
+
.work-list-item,
|
647
|
+
.img-screenshot {
|
648
|
+
width: 18vw;
|
649
|
+
}
|
650
|
+
|
651
|
+
.work-list-item {
|
652
|
+
height: 7vw;
|
653
|
+
}
|
654
|
+
|
655
|
+
.text-content span {
|
656
|
+
font-size: 1vw;
|
657
|
+
line-height: 1.4vw;
|
658
|
+
}
|
659
|
+
|
660
|
+
.tip-title {
|
661
|
+
font-size: 1.4vw;
|
662
|
+
line-height: 1.4vw;
|
663
|
+
padding: 2.8vw 10px;
|
664
|
+
}
|
665
|
+
|
666
|
+
.emoji {
|
667
|
+
height: 2vw;
|
668
|
+
margin-bottom: 0.5vw;
|
669
|
+
width: 2vw;
|
670
|
+
}
|
671
|
+
|
672
|
+
.no-top-margin {
|
673
|
+
margin-top: 0;
|
674
|
+
}
|
675
|
+
|
676
|
+
.footer-contact {
|
677
|
+
left: 50vw;
|
678
|
+
width: 50vw;
|
679
|
+
}
|
680
|
+
}
|