the-plain-portfolio 1.0.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 +21 -0
- data/README.md +71 -0
- data/_includes/footer.html +5 -0
- data/_includes/head.html +23 -0
- data/_includes/header.html +14 -0
- data/_includes/image.html +5 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +25 -0
- data/_layouts/page.html +25 -0
- data/_layouts/post.html +28 -0
- data/_sass/main.scss +522 -0
- data/_sass/syntax.scss +254 -0
- data/assets/blog_posts.svg +1 -0
- data/assets/core.scss +6 -0
- data/assets/current_projects.svg +1 -0
- data/assets/favicon.png +0 -0
- data/assets/logo_wrapper.png +0 -0
- data/assets/open_source.svg +1 -0
- data/assets/touch-icon.png +0 -0
- metadata +106 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 60776bbaf70909da62e4ba37bc966048a24ca474a8d4695d96f2424fefbf432f
|
4
|
+
data.tar.gz: 2d21d8204af3fe8d42ff9d3922ca06d8696e08c03fe1ad06d856617663b596c0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0b5ef3b8612a754b6277a57652438686d5688ae809593026e2dd6bb26558f915c5b3d1722538bc9da8c9ec5463e40063d0a8125371a9ffcfa923a16f3a53eb75
|
7
|
+
data.tar.gz: 4701d72caa7a5dacfdb04262276c03063cab3f5b4662fec71ef1b4b34e495a2c36fc426970340e525ca18e6dbf42fc4d5d6605ebff908f4d7f9d022fa11a9600
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Rosário Pereira Fernandes
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
# The Plain
|
2
|
+
|
3
|
+
> The Plain is a minimalist Jekyll theme, ideally designed for your personal blog use. This Jekyll theme provides a minimum distraction so you can focus on writing that matters to you and your readers. This theme is originally inspired from [Leonard Lamprecht's _leo_ theme](https://github.com/leo/leo.github.io).
|
4
|
+
|
5
|
+
[](LICENSE)   
|
6
|
+
|
7
|
+
## The Plain Portfolio
|
8
|
+
This fork aims to transform the "The Plain" blog theme into a simple portfolio theme.
|
9
|
+
Inspired by [Addy Osmani's Portfolio](https://addyosmani.com), this single-page portfolio
|
10
|
+
can showcase all of your work with less.
|
11
|
+
|
12
|
+
- **Demo:** https://rosariopfernandes.github.io/the-plain/
|
13
|
+
|
14
|
+

|
15
|
+
|
16
|
+
## Usage
|
17
|
+
|
18
|
+
### On an unlimited Jekyll host
|
19
|
+
|
20
|
+
> **NOTE** This does NOT work on GitHub, see the next section.
|
21
|
+
|
22
|
+
Put this in your *Gemfile*:
|
23
|
+
|
24
|
+
gem 'the-plain'
|
25
|
+
|
26
|
+
and run `bundle install` to install the plugin.
|
27
|
+
|
28
|
+
Add this to your sites *_config.yml* file:
|
29
|
+
|
30
|
+
theme: the-plain
|
31
|
+
|
32
|
+
Then copy some of the settings from this repo's *_config.yml* file to your own, and modify them.
|
33
|
+
|
34
|
+
### On GitHub
|
35
|
+
|
36
|
+
GitHub - for your user account pages or repository gh-pages - only supports a limited set of themes.
|
37
|
+
|
38
|
+
Therefore, you need to use the 'remote\_theme:' setting instead of 'theme:', which is supported by [a 3rd party plugin](https://github.com/benbalter/jekyll-remote-theme).
|
39
|
+
|
40
|
+
Put this in your *Gemfile*:
|
41
|
+
|
42
|
+
gem 'jekyll-remote-theme'
|
43
|
+
|
44
|
+
and run `bundle install` to install the plugin.
|
45
|
+
|
46
|
+
Add the following to your site's *_config.yml* to activate the plugin and to select this theme:
|
47
|
+
|
48
|
+
plugins:
|
49
|
+
- jekyll-remote-theme
|
50
|
+
|
51
|
+
remote_theme: heiswayi/the-plain
|
52
|
+
|
53
|
+
This will grab the theme directly from the GitHub repo.
|
54
|
+
|
55
|
+
Now copy some of the settings from this repo's *_config.yml* file to your own, and modify them.
|
56
|
+
|
57
|
+
## Original Authors
|
58
|
+
|
59
|
+
- [**Heiswayi Nrird**](https://heiswayi.nrird.com)
|
60
|
+
|
61
|
+
See also the list of [contributors](https://github.com/heiswayi/the-plain/graphs/contributors) who participated in this project.
|
62
|
+
|
63
|
+
## Acknowledgements
|
64
|
+
- Based on [the-plain](https://github.com/heiswayi/the-plain) blog theme
|
65
|
+
- Inspired by [Addy Osmani's Portfolio](https://addyosmani.com)
|
66
|
+
- Uses illustrations from [undraw.co](https://undraw.co)
|
67
|
+
- Uses [Font Awesome](https://https://fontawesome.com) Icons
|
68
|
+
|
69
|
+
## License
|
70
|
+
|
71
|
+
[MIT LICENSE](LICENSE)
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<div class="footer">
|
2
|
+
<span class="block">© {{ site.time | date: '%Y' }} {{ site.author_name }}</span>
|
3
|
+
<span class="block"><small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> and <a href="https://github.com/rosariopfernandes/the-plain-portolio">The Plain Portfolio theme</a>.</small></span>
|
4
|
+
<span class="block"><small>Inspired by <a href="https://addyosmani.com/">addyosmani.com</a>.</small></span>
|
5
|
+
</div>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
<meta charset="utf-8">
|
2
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
4
|
+
|
5
|
+
{% if page.title %}
|
6
|
+
<title>{{ page.title }} · {{ site.title }}</title>
|
7
|
+
{% else %}
|
8
|
+
<title>{{ site.title }}</title>
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
12
|
+
|
13
|
+
<link rel="icon" href="{{ "/assets/favicon.png" | prepend: site.baseurl | prepend: site.url }}">
|
14
|
+
<link rel="apple-touch-icon" href="{{ "/assets/touch-icon.png" | prepend: site.baseurl | prepend: site.url }}">
|
15
|
+
<link rel="stylesheet" href="{{ "/assets/core.css" | prepend: site.baseurl | prepend: site.url }}">
|
16
|
+
<link rel="canonical" href="{{ page.url | prepend: site.baseurl | prepend: site.url }}">
|
17
|
+
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
|
18
|
+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/brands.css" integrity="sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK" crossorigin="anonymous">
|
19
|
+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/fontawesome.css" integrity="sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+" crossorigin="anonymous">
|
20
|
+
|
21
|
+
{% if site.mathjax %}
|
22
|
+
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
|
23
|
+
{% endif %}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<aside class="logo">
|
2
|
+
|
3
|
+
{% if page.url == '/index.html' or page.url == '/' %}
|
4
|
+
{% assign link = '/about' %}
|
5
|
+
{% assign prompt = 'About the Author' %}
|
6
|
+
{% else %}
|
7
|
+
{% assign link = '/' %}
|
8
|
+
{% assign prompt = 'Back to Index' %}
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
<img src="{{ site.logo_url }}" class="logo-avatar" alt="{{ site.author_name }} Profile Picture">
|
12
|
+
<span class="logo-prompt code">{{ prompt }}</span>
|
13
|
+
|
14
|
+
</aside>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
{% assign url = '/assets/static/' | append: include.file %}
|
2
|
+
|
3
|
+
<a href="{{ url | prepend: site.baseurl | prepend: site.url }}" target="_blank" class="image">
|
4
|
+
<img src="{{ url | prepend: site.baseurl | prepend: site.url }}" alt="{% if include.alt %}{{ include.alt }}{% else %}Image{% endif %}">
|
5
|
+
</a>
|
@@ -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,25 @@
|
|
1
|
+
---
|
2
|
+
layout: compress
|
3
|
+
published: true
|
4
|
+
---
|
5
|
+
|
6
|
+
<!DOCTYPE html>
|
7
|
+
<html lang="en">
|
8
|
+
|
9
|
+
<head>
|
10
|
+
{% include head.html %}
|
11
|
+
</head>
|
12
|
+
|
13
|
+
<body>
|
14
|
+
|
15
|
+
{% include header.html %}
|
16
|
+
|
17
|
+
<div id="content">
|
18
|
+
{{ content }}
|
19
|
+
</div>
|
20
|
+
|
21
|
+
{% include footer.html %}
|
22
|
+
|
23
|
+
</body>
|
24
|
+
|
25
|
+
</html>
|
data/_layouts/page.html
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article>
|
6
|
+
|
7
|
+
<h1 class="title">{{ site.author_name }}</h1>
|
8
|
+
|
9
|
+
{% if site.description %}
|
10
|
+
<h2 class="title">{{ site.description }}</h2>
|
11
|
+
{% endif %}
|
12
|
+
|
13
|
+
{% if site.social_links %}
|
14
|
+
<div class="social-media">
|
15
|
+
{% for item in site.social_links %}
|
16
|
+
<a href="{{ item.link }}" target="_blank"><i class="fab {{item.icon}} fa-2x"></i></a>
|
17
|
+
{% endfor %}
|
18
|
+
</div>
|
19
|
+
{% endif %}
|
20
|
+
|
21
|
+
<div class="divider"></div>
|
22
|
+
|
23
|
+
{{ content }}
|
24
|
+
|
25
|
+
</article>
|
data/_layouts/post.html
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article>
|
6
|
+
|
7
|
+
<div class="center">
|
8
|
+
<h1 class="title">{{ page.title }}</h1>
|
9
|
+
<time class="code">{{ page.date | date: '%B %-d, %Y' }}</time>
|
10
|
+
</div>
|
11
|
+
|
12
|
+
<div class="divider"></div>
|
13
|
+
|
14
|
+
{{ content }}
|
15
|
+
|
16
|
+
</article>
|
17
|
+
|
18
|
+
<div class="page-navigation code">
|
19
|
+
{% if page.next.url %}
|
20
|
+
<a class="next" href="{{ page.next.url | prepend: site.baseurl | prepend: site.url }}" title="NEXT: {{page.next.title}}"><<</a>
|
21
|
+
<span> · </span>
|
22
|
+
{% endif %}
|
23
|
+
<a class="home" href="{{ "/" | prepend: site.baseurl | prepend: site.url }}" title="Back to Index">Index</a>
|
24
|
+
{% if page.previous.url %}
|
25
|
+
<span> · </span>
|
26
|
+
<a class="prev" href="{{ page.previous.url | prepend: site.baseurl | prepend: site.url }}" title="PREV: {{page.previous.title}}">>></a>
|
27
|
+
{% endif %}
|
28
|
+
</div>
|
data/_sass/main.scss
ADDED
@@ -0,0 +1,522 @@
|
|
1
|
+
* {
|
2
|
+
-webkit-box-sizing: border-box;
|
3
|
+
-moz-box-sizing: border-box;
|
4
|
+
box-sizing: border-box;
|
5
|
+
}
|
6
|
+
html {
|
7
|
+
margin: 0;
|
8
|
+
padding: 0;
|
9
|
+
height: 100%;
|
10
|
+
}
|
11
|
+
body {
|
12
|
+
font-size: 14px;
|
13
|
+
line-height: 20px;
|
14
|
+
font-weight: normal;
|
15
|
+
font-style: normal;
|
16
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
17
|
+
color: #333333;
|
18
|
+
padding: 20px;
|
19
|
+
margin: 0;
|
20
|
+
-webkit-font-smoothing: antialiased;
|
21
|
+
-webkit-text-size-adjust: 100%;
|
22
|
+
@media (min-width: 992px) {
|
23
|
+
padding: 35px 50px;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
h1,
|
27
|
+
h2,
|
28
|
+
h3,
|
29
|
+
h4,
|
30
|
+
h5,
|
31
|
+
h6 {
|
32
|
+
margin-bottom: 1rem;
|
33
|
+
line-height: 1.25;
|
34
|
+
color: #313131;
|
35
|
+
}
|
36
|
+
h1 {
|
37
|
+
font-size: 2rem;
|
38
|
+
}
|
39
|
+
|
40
|
+
h2 {
|
41
|
+
margin-top: 1rem;
|
42
|
+
font-size: 1.5rem;
|
43
|
+
}
|
44
|
+
|
45
|
+
h3 {
|
46
|
+
margin-top: 1.5rem;
|
47
|
+
font-size: 1.25rem;
|
48
|
+
}
|
49
|
+
|
50
|
+
h4,
|
51
|
+
h5,
|
52
|
+
h6 {
|
53
|
+
margin-top: 1.1rem;
|
54
|
+
font-size: 1.1rem;
|
55
|
+
}
|
56
|
+
img {
|
57
|
+
max-width: 100%;
|
58
|
+
}
|
59
|
+
a {
|
60
|
+
color: #1565C0;
|
61
|
+
text-decoration: none;
|
62
|
+
border-bottom: 1px solid #555;
|
63
|
+
&.image {
|
64
|
+
display: block;
|
65
|
+
text-align: center;
|
66
|
+
border: 0;
|
67
|
+
border-radius: 5px;
|
68
|
+
margin: 30px 0;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
mark {
|
72
|
+
background: #fffc76;
|
73
|
+
padding: 0 5px;
|
74
|
+
}
|
75
|
+
blockquote {
|
76
|
+
border-left: 5px solid #ccc;
|
77
|
+
margin: 40px 0;
|
78
|
+
padding: 5px 30px;
|
79
|
+
background: #eee;
|
80
|
+
}
|
81
|
+
.logo {
|
82
|
+
position: relative;
|
83
|
+
margin: 0 auto;
|
84
|
+
text-align: center;
|
85
|
+
a {
|
86
|
+
background: #ddd url("logo_wrapper.png");
|
87
|
+
color: #000;
|
88
|
+
text-decoration: none;
|
89
|
+
font-weight: 700;
|
90
|
+
height: 100px;
|
91
|
+
width: 100px;
|
92
|
+
font-size: 1.5em;
|
93
|
+
border-radius: 100%;
|
94
|
+
display: inline-block;
|
95
|
+
text-align: center;
|
96
|
+
line-height: 100px;
|
97
|
+
border: 5px solid #fff;
|
98
|
+
box-sizing: border-box;
|
99
|
+
@media (max-width : 480px) {&:hover + .logo-prompt,
|
100
|
+
&:focus + .logo-prompt {
|
101
|
+
display: none !important;
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
.logo-avatar {
|
107
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
|
108
|
+
-webkit-border-radius: 50%;
|
109
|
+
-moz-border-radius: 50%;
|
110
|
+
border-radius: 50%;
|
111
|
+
color: #000;
|
112
|
+
height: 100px;
|
113
|
+
width: 100px;
|
114
|
+
display: inline-block;
|
115
|
+
box-sizing: border-box;
|
116
|
+
}
|
117
|
+
.logo-prompt {
|
118
|
+
position: absolute;
|
119
|
+
display: none;
|
120
|
+
vertical-align: middle;
|
121
|
+
padding: 5px;
|
122
|
+
border-radius: 3px;
|
123
|
+
background: #666;
|
124
|
+
background: rgba(0,0,0,.5);
|
125
|
+
margin-left: 15px;
|
126
|
+
color: #fff;
|
127
|
+
font-size: 0.8235em;
|
128
|
+
text-align: center;
|
129
|
+
line-height: 1.2;
|
130
|
+
top: 50%;
|
131
|
+
margin-top: -10px;
|
132
|
+
&:before {
|
133
|
+
content: "";
|
134
|
+
border-width: 5px 5px 5px 0;
|
135
|
+
border-style: solid;
|
136
|
+
border-color: transparent #666;
|
137
|
+
border-color: transparent rgba(0,0,0,.5);
|
138
|
+
position: absolute;
|
139
|
+
top: 50%;
|
140
|
+
left: -5px;
|
141
|
+
margin-top: -5px;
|
142
|
+
}
|
143
|
+
}
|
144
|
+
}
|
145
|
+
iframe {
|
146
|
+
margin: 45px 0 !important;
|
147
|
+
}
|
148
|
+
ul,
|
149
|
+
ol {
|
150
|
+
margin: 40px 0;
|
151
|
+
padding-left: 50px;
|
152
|
+
li {
|
153
|
+
word-wrap: break-word;
|
154
|
+
}
|
155
|
+
img {
|
156
|
+
margin: 40px 0;
|
157
|
+
border-radius: 5px;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
sup {
|
161
|
+
vertical-align: top;
|
162
|
+
position: relative;
|
163
|
+
top: -0.5em;
|
164
|
+
margin-left: 1px;
|
165
|
+
}
|
166
|
+
time {
|
167
|
+
color: #555;
|
168
|
+
}
|
169
|
+
code,
|
170
|
+
pre,
|
171
|
+
.code,
|
172
|
+
.footnotes {
|
173
|
+
font-family: Consolas, monaco, monospace;
|
174
|
+
}
|
175
|
+
code {
|
176
|
+
color: #f14e32;
|
177
|
+
background: #eee;
|
178
|
+
padding: 2px 6px;
|
179
|
+
font-size: 13px;
|
180
|
+
}
|
181
|
+
pre {
|
182
|
+
display: block;
|
183
|
+
margin-top: 0;
|
184
|
+
margin-bottom: 1rem;
|
185
|
+
font-size: 0.8rem;
|
186
|
+
line-height: 1.4;
|
187
|
+
white-space: pre;
|
188
|
+
overflow-x: auto;
|
189
|
+
background-color: #f9f9f9;
|
190
|
+
border: 1px solid #ddd;
|
191
|
+
padding: 1rem;
|
192
|
+
code {
|
193
|
+
font-size: 100%;
|
194
|
+
color: inherit;
|
195
|
+
background-color: transparent;
|
196
|
+
padding: 0;
|
197
|
+
}
|
198
|
+
}
|
199
|
+
table {
|
200
|
+
width: 100%;
|
201
|
+
table-layout: fixed;
|
202
|
+
margin: 45px 0;
|
203
|
+
thead {
|
204
|
+
background: #f2f2f2;
|
205
|
+
}
|
206
|
+
th {
|
207
|
+
text-align: left;
|
208
|
+
padding: 8px 10px;
|
209
|
+
border-bottom: 15px solid #fff;
|
210
|
+
}
|
211
|
+
td {
|
212
|
+
padding: 4px 0;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
iframe {
|
216
|
+
width: 100%;
|
217
|
+
}
|
218
|
+
article {
|
219
|
+
max-width: 500px;
|
220
|
+
margin: 0 auto;
|
221
|
+
h1.title {
|
222
|
+
line-height: 1.4em;
|
223
|
+
text-align: center;
|
224
|
+
font-size: 2.0em;
|
225
|
+
color: #000000;
|
226
|
+
margin-top: 0;
|
227
|
+
margin-bottom: 0;
|
228
|
+
}
|
229
|
+
h2.title {
|
230
|
+
line-height: 1.4em;
|
231
|
+
text-align: center;
|
232
|
+
font-size: 1.4em;
|
233
|
+
margin-top: 0;
|
234
|
+
margin-bottom: 0;
|
235
|
+
}
|
236
|
+
.divider {
|
237
|
+
background: #ddd;
|
238
|
+
background: -webkit-gradient(linear,left top,right top,from(rgba(255,255,255,0)),color-stop(#ccc),to(rgba(255,255,255,0)));
|
239
|
+
background: -webkit-linear-gradient(left,rgba(255,255,255,0),#ccc,rgba(255,255,255,0));
|
240
|
+
background: linear-gradient(to right,rgba(255,255,255,0),#ccc,rgba(255,255,255,0));
|
241
|
+
height: 1px;
|
242
|
+
margin: 2em 0;
|
243
|
+
}
|
244
|
+
.center {
|
245
|
+
text-align: center;
|
246
|
+
margin: 0 auto;
|
247
|
+
}
|
248
|
+
hr {
|
249
|
+
border: 0;
|
250
|
+
border-bottom: 1px solid #000;
|
251
|
+
margin: 30px 0;
|
252
|
+
}
|
253
|
+
p {
|
254
|
+
font-size: 15px;
|
255
|
+
line-height: 1.9em;
|
256
|
+
word-wrap: break-word;
|
257
|
+
}
|
258
|
+
.footnote {
|
259
|
+
border: 0;
|
260
|
+
background-color: #0087BE;
|
261
|
+
color: #fff;
|
262
|
+
padding-left: 2px;
|
263
|
+
padding-right: 2px;
|
264
|
+
}
|
265
|
+
.footnotes {
|
266
|
+
margin: 50px auto;
|
267
|
+
display: block;
|
268
|
+
font-size: 0.8em;
|
269
|
+
color: #666;
|
270
|
+
p {
|
271
|
+
line-height: 1rem;
|
272
|
+
font-weight: normal;
|
273
|
+
}
|
274
|
+
ol {
|
275
|
+
margin: 0;
|
276
|
+
padding-left: 15px;
|
277
|
+
li {
|
278
|
+
font-weight: bold;
|
279
|
+
}
|
280
|
+
}
|
281
|
+
.reversefootnote {
|
282
|
+
border: 0;
|
283
|
+
color: #0087BE;
|
284
|
+
}
|
285
|
+
}
|
286
|
+
a:hover {
|
287
|
+
color: #448AFF;
|
288
|
+
border-color: #448AFF;
|
289
|
+
}
|
290
|
+
}
|
291
|
+
.back {
|
292
|
+
text-align: center;
|
293
|
+
a {
|
294
|
+
text-decoration: none;
|
295
|
+
margin: 40px auto 0;
|
296
|
+
display: inline-block;
|
297
|
+
padding: 10px;
|
298
|
+
border: 0;
|
299
|
+
&:before {
|
300
|
+
content: "<<";
|
301
|
+
margin-right: 5px;
|
302
|
+
color: #000;
|
303
|
+
}
|
304
|
+
}
|
305
|
+
}
|
306
|
+
.block {
|
307
|
+
display: block;
|
308
|
+
}
|
309
|
+
.page-navigation,
|
310
|
+
.footer {
|
311
|
+
text-align: center;
|
312
|
+
max-width: 500px;
|
313
|
+
margin: 0 auto;
|
314
|
+
font-size: 0.8rem;
|
315
|
+
}
|
316
|
+
.page-navigation {
|
317
|
+
margin: 50px auto 0 auto;
|
318
|
+
a {
|
319
|
+
display: inline-block;
|
320
|
+
text-decoration: none;
|
321
|
+
border-bottom: none;
|
322
|
+
}
|
323
|
+
span {
|
324
|
+
display: inline-block;
|
325
|
+
}
|
326
|
+
}
|
327
|
+
.footer {
|
328
|
+
margin-top: 50px;
|
329
|
+
color: #777;
|
330
|
+
a {
|
331
|
+
border: none;
|
332
|
+
font-weight: bold;
|
333
|
+
}
|
334
|
+
}
|
335
|
+
section {
|
336
|
+
max-width: 500px;
|
337
|
+
margin: 0 auto 50px auto;
|
338
|
+
ul {
|
339
|
+
list-style: none;
|
340
|
+
margin: 0;
|
341
|
+
padding: 0;
|
342
|
+
li {
|
343
|
+
margin: 25px 0;
|
344
|
+
.title {
|
345
|
+
max-width: 100%;
|
346
|
+
//overflow: hidden !important;
|
347
|
+
//text-overflow: ellipsis !important;
|
348
|
+
//white-space: nowrap !important;
|
349
|
+
word-wrap: normal !important;
|
350
|
+
}
|
351
|
+
a {
|
352
|
+
text-decoration: none;
|
353
|
+
border: 0;
|
354
|
+
color: #448AFF;
|
355
|
+
box-sizing: border-box;
|
356
|
+
}
|
357
|
+
.post-date {
|
358
|
+
float: right;
|
359
|
+
margin: 0 0 0 20px;
|
360
|
+
}
|
361
|
+
span {
|
362
|
+
display: inline-block;
|
363
|
+
color: #64b5f6;
|
364
|
+
letter-spacing: 1px;
|
365
|
+
text-transform: uppercase;
|
366
|
+
}
|
367
|
+
@media (min-width: 992px) {a {
|
368
|
+
border-bottom: 2px solid transparent;
|
369
|
+
&:hover {
|
370
|
+
border-color: #000;
|
371
|
+
}
|
372
|
+
}
|
373
|
+
}
|
374
|
+
}
|
375
|
+
}
|
376
|
+
}
|
377
|
+
@keyframes bounce {0% {
|
378
|
+
transform: translate3d( 0, -1000px, 0 );
|
379
|
+
}
|
380
|
+
60% {
|
381
|
+
transform: translate3d( 0, 25px, 0 );
|
382
|
+
}
|
383
|
+
75% {
|
384
|
+
transform: translate3d( 0, -10px, 0 );
|
385
|
+
}
|
386
|
+
90% {
|
387
|
+
transform: translate3d( 0, 5px, 0 );
|
388
|
+
}
|
389
|
+
100% {
|
390
|
+
transform: none;
|
391
|
+
}
|
392
|
+
}
|
393
|
+
@-webkit-keyframes bounce {0% {
|
394
|
+
-webkit-transform: translate3d( 0, -1000px, 0 );
|
395
|
+
}
|
396
|
+
60% {
|
397
|
+
-webkit-transform: translate3d( 0, 25px, 0 );
|
398
|
+
}
|
399
|
+
75% {
|
400
|
+
-webkit-transform: translate3d( 0, -10px, 0 );
|
401
|
+
}
|
402
|
+
90% {
|
403
|
+
-webkit-transform: translate3d( 0, 5px, 0 );
|
404
|
+
}
|
405
|
+
100% {
|
406
|
+
-webkit-transform: none;
|
407
|
+
}
|
408
|
+
}
|
409
|
+
|
410
|
+
/*List on homepage*/
|
411
|
+
|
412
|
+
.list-view {
|
413
|
+
display: table;
|
414
|
+
width: 100%;
|
415
|
+
margin: 0;
|
416
|
+
}
|
417
|
+
|
418
|
+
@media only screen and (min-width: 793px) {
|
419
|
+
.list-view {
|
420
|
+
padding: 0px 0 24px
|
421
|
+
}
|
422
|
+
}
|
423
|
+
|
424
|
+
@media only screen and (max-width: 792px) {
|
425
|
+
.list-view {
|
426
|
+
padding: 0px 16px 64px
|
427
|
+
}
|
428
|
+
}
|
429
|
+
|
430
|
+
@media only screen and (max-width: 640px) {
|
431
|
+
.list-view {
|
432
|
+
padding: 32px 0 64px
|
433
|
+
}
|
434
|
+
}
|
435
|
+
|
436
|
+
|
437
|
+
|
438
|
+
.list-item {
|
439
|
+
display: table-row;
|
440
|
+
}
|
441
|
+
|
442
|
+
.list-header {
|
443
|
+
display: table-cell;
|
444
|
+
vertical-align: top;
|
445
|
+
}
|
446
|
+
|
447
|
+
@media only screen and (max-width: 792px) {
|
448
|
+
.list-header {
|
449
|
+
padding-top:16px
|
450
|
+
}
|
451
|
+
}
|
452
|
+
|
453
|
+
@media only screen and (max-width: 640px) {
|
454
|
+
|
455
|
+
}
|
456
|
+
|
457
|
+
.list-header ._bubble {
|
458
|
+
width: 80px;
|
459
|
+
height: 80px;
|
460
|
+
border-radius: 40px;
|
461
|
+
background-size: cover;
|
462
|
+
background-repeat: no-repeat;
|
463
|
+
background-position: center;
|
464
|
+
margin-top: 14px;
|
465
|
+
margin-right: 16px;
|
466
|
+
}
|
467
|
+
|
468
|
+
@media only screen and (min-width: 793px) {
|
469
|
+
.list-header ._bubble {
|
470
|
+
margin-top:20px;
|
471
|
+
margin-right: 32px
|
472
|
+
}
|
473
|
+
}
|
474
|
+
|
475
|
+
@media only screen and (max-width: 792px) {
|
476
|
+
.list-header ._bubble {
|
477
|
+
margin-top: 0px;
|
478
|
+
margin-right: 16px;
|
479
|
+
width: 56px;
|
480
|
+
height: 56px
|
481
|
+
}
|
482
|
+
}
|
483
|
+
|
484
|
+
|
485
|
+
.list-detail {
|
486
|
+
width: 100%;
|
487
|
+
padding: 0px 0;
|
488
|
+
h3 {
|
489
|
+
font-size: 1.6em;
|
490
|
+
}
|
491
|
+
}
|
492
|
+
|
493
|
+
@media only screen and (min-width: 793px) {
|
494
|
+
.list-detail {
|
495
|
+
display:table-cell
|
496
|
+
}
|
497
|
+
}
|
498
|
+
|
499
|
+
@media only screen and (max-width: 792px) {
|
500
|
+
.list-detail {
|
501
|
+
display:table-cell
|
502
|
+
}
|
503
|
+
}
|
504
|
+
|
505
|
+
@media only screen and (max-width: 640px) {
|
506
|
+
.list-detail {
|
507
|
+
display:block;
|
508
|
+
}
|
509
|
+
}
|
510
|
+
|
511
|
+
.social-media {
|
512
|
+
align-items: center;
|
513
|
+
text-align: center;
|
514
|
+
margin-top: 1em;
|
515
|
+
a {
|
516
|
+
color: #313131;
|
517
|
+
text-decoration: none;
|
518
|
+
margin-left: 0.4em;
|
519
|
+
margin-right: 0.4em;
|
520
|
+
border-bottom: 0
|
521
|
+
}
|
522
|
+
}
|