Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wileybaba/hugo-theme-robotico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorwileybaba <wileymckayconte@gmail.com>2018-10-31 09:03:26 +0300
committerwileybaba <wileymckayconte@gmail.com>2018-10-31 09:03:26 +0300
commit23a9b1ff401bf6238011cdfed4219605a20af728 (patch)
treec2595a904e58e97a715b2fa6faf9fb4b60ea1b9b /static
adding my theme to github
Diffstat (limited to 'static')
-rw-r--r--static/css/main.css276
-rw-r--r--static/img/email.svg41
-rw-r--r--static/img/git.svg1
-rw-r--r--static/img/instagram.svg1
-rw-r--r--static/img/twitter.svg1
5 files changed, 320 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css
new file mode 100644
index 0000000..79e95bb
--- /dev/null
+++ b/static/css/main.css
@@ -0,0 +1,276 @@
+/* Global styles */
+body {
+ font-family: "Raleway";
+}
+
+a {
+ color: #5188ef;
+ transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -webkit-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -moz-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -ms-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -o-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+}
+
+a:hover {
+ color: #7e7ef7;
+}
+
+/* Partial: Colors */
+.text-patreon {
+ color: #51ef7e !important;
+}
+
+.text-ko-fi {
+ color: #5188ef !important;
+}
+
+.text-bmc {
+ color: #5188ef !important;
+}
+
+/* Partial: Header */
+.header a:hover {
+ text-decoration: none;
+}
+
+.header .logo {
+ max-height: 120px;
+}
+
+.header h1.name {
+ color: #333333;
+ font-size: 2.3rem;
+ font-family: "Helvetica Neue", "Arial", sans-serif;
+ letter-spacing: 0.1rem;
+}
+
+.header ul.nav li a {
+ color: #666666;
+ font-size: 18px;
+ padding: 3px 12px 0 5px;
+}
+
+.header ul.nav li a:hover {
+ color: #f4b642;
+ }
+
+.header ul.nav li:first-child a {
+ padding-left: 2px;
+}
+
+.header ul.nav li:last-child a {
+ padding-right: 2px;
+}
+
+/* Partial: Content */
+.content .page-heading {
+ font-size: 1.5rem;
+ font-weight: 700;
+ letter-spacing: -0.005rem;
+ text-transform: "capitalize";
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ color: #333333;
+ margin-bottom: 16px;
+}
+
+.content .meta {
+ font-size: 16px;
+ color: #666666;
+}
+
+.content .meta a {
+ text-decoration: none;
+}
+
+.content .middot:before {
+ font-size: 6px;
+ margin: 0 6px;
+ vertical-align: middle;
+ content: "•";
+}
+
+.content .tags ul li {
+ transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -webkit-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -moz-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -ms-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -o-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+}
+
+.content .tags ul li:hover {
+ opacity: 0.7;
+}
+
+.content .tags ul li a {
+ color: #666666;
+}
+
+.content .markdown {
+ font-family: "Merriweather";
+ font-size: 1.3em;
+ line-height: 1.75em;
+ color: #313537;
+}
+
+.content twitterwidget {
+ margin: auto;
+}
+
+.content .meta,
+.content .markdown h1,
+.content .markdown h2,
+.content .markdown h3,
+.content .markdown h4,
+.content .markdown h5,
+.content .markdown h6,
+.content .markdown p,
+.content .markdown ul,
+.content .markdown ol,
+.content .markdown dl,
+.content .markdown blockquote {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+}
+
+.content .markdown code,
+.content .markdown pre {
+ font-family: "Menlo", monospace;
+ font-size: 0.98rem;
+ background-color: #f7f7f7;
+}
+
+.content .markdown code {
+ /* enclosed by single backtick (`) */
+ padding: 0.15em 0.5em;
+ border-radius: 2px;
+ color: #7adbbc;
+}
+
+.content .markdown pre {
+ /* Hugo specific: consider using the 'highlight' shortcode */
+ display: block;
+ margin-top: 1rem;
+ margin-bottom: 2rem;
+ padding: 1rem;
+ line-height: 1.5em;
+ white-space: pre;
+ word-break: break-all;
+ word-wrap: break-word;
+}
+
+.content .markdown pre code {
+ /* enclosed by 4 backticks (````) */
+ padding: 0;
+ font-size: 0.9rem;
+}
+
+.content .markdown blockquote {
+ padding: 0.5rem 0.5rem;
+ margin-top: 0.8rem;
+ margin-bottom: 0.8rem;
+ color: #7a7a7a;
+ border-left: 0.25rem solid #e5e5e5;
+}
+
+.content .markdown blockquote p:last-child {
+ margin-bottom: 0;
+}
+
+.content .markdown figure {
+ background: #fff;
+}
+
+.content .see-more {
+ font-size: 0.9em;
+ color: #313537;
+}
+
+.content .see-more:hover {
+ color: #666;
+}
+
+.content .groupby {
+ list-style: none;
+ margin-top: 1em;
+}
+
+.content .post-item {
+ display: -webkit-flex;
+ display: -moz-flex;
+ display: -ms-flexbox;
+ display: -ms-flex;
+ display: flex;
+}
+
+.content .post-item .meta {
+ color: #666666;
+ display: block;
+ font-size: 14px;
+ min-width: 100px;
+}
+
+.content .navigation .icon {
+ width: 16px;
+ height: 16px;
+}
+
+/* Partial: Footer */
+.footer a {
+ font-size: 14px;
+ margin-left: 6px;
+ margin-right: 6px;
+ opacity: 0.6;
+ transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -webkit-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -moz-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -ms-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -o-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ text-decoration: none;
+}
+
+.footer a:first-child {
+ margin-left: 0;
+}
+
+.footer a:last-child {
+ margin-right: 0;
+}
+
+.footer a:hover {
+ opacity: 0.8;
+}
+
+.footer a .icon {
+ width: 24px;
+ height: 24px;
+}
+
+.footer span.title {
+ font-size: 14px;
+ color: #666;
+}
+
+/* Small devices (landscape phones, less than 768px) */
+@media (max-width: 767.98px) {
+ html {
+ font-size: 0.8rem;
+ }
+
+ .content .meta,
+ .content .markdown h1,
+ .content .markdown h2,
+ .content .markdown h3,
+ .content .markdown h4,
+ .content .markdown h5,
+ .content .markdown h6,
+ .content .markdown p,
+ .content .markdown ul,
+ .content .markdown ol,
+ .content .markdown dl,
+ .content .markdown blockquote {
+ margin-left: 0;
+ margin-right: 0;
+ }
+}
diff --git a/static/img/email.svg b/static/img/email.svg
new file mode 100644
index 0000000..4015631
--- /dev/null
+++ b/static/img/email.svg
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 330.001 330.001" style="enable-background:new 0 0 330.001 330.001;" xml:space="preserve">
+<g id="XMLID_348_">
+ <path id="XMLID_350_" d="M173.871,177.097c-2.641,1.936-5.756,2.903-8.87,2.903c-3.116,0-6.23-0.967-8.871-2.903L30,84.602
+ L0.001,62.603L0,275.001c0.001,8.284,6.716,15,15,15L315.001,290c8.285,0,15-6.716,15-14.999V62.602l-30.001,22L173.871,177.097z"
+ />
+ <polygon id="XMLID_351_" points="165.001,146.4 310.087,40.001 19.911,40 "/>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+</svg>
diff --git a/static/img/git.svg b/static/img/git.svg
new file mode 100644
index 0000000..b8c8898
--- /dev/null
+++ b/static/img/git.svg
@@ -0,0 +1 @@
+<svg aria-labelledby="simpleicons-git-icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title id="simpleicons-git-icon">Git icon</title><path d="M23.546 10.93L13.067.452c-.604-.603-1.582-.603-2.188 0L8.708 2.627l2.76 2.76c.645-.215 1.379-.07 1.889.441.516.515.658 1.258.438 1.9l2.658 2.66c.645-.223 1.387-.078 1.9.435.721.72.721 1.884 0 2.604-.719.719-1.881.719-2.6 0-.539-.541-.674-1.337-.404-1.996L12.86 8.955v6.525c.176.086.342.203.488.348.713.721.713 1.883 0 2.6-.719.721-1.889.721-2.609 0-.719-.719-.719-1.879 0-2.598.182-.18.387-.316.605-.406V8.835c-.217-.091-.424-.222-.6-.401-.545-.545-.676-1.342-.396-2.009L7.636 3.7.45 10.881c-.6.605-.6 1.584 0 2.189l10.48 10.477c.604.604 1.582.604 2.186 0l10.43-10.43c.605-.603.605-1.582 0-2.187"/></svg> \ No newline at end of file
diff --git a/static/img/instagram.svg b/static/img/instagram.svg
new file mode 100644
index 0000000..a0fed10
--- /dev/null
+++ b/static/img/instagram.svg
@@ -0,0 +1 @@
+<svg aria-labelledby="simpleicons-instagram-icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title id="simpleicons-instagram-icon">Instagram icon</title><path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"/></svg> \ No newline at end of file
diff --git a/static/img/twitter.svg b/static/img/twitter.svg
new file mode 100644
index 0000000..b674108
--- /dev/null
+++ b/static/img/twitter.svg
@@ -0,0 +1 @@
+<svg aria-labelledby="simpleicons-twitter-icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title id="simpleicons-twitter-icon">Twitter icon</title><path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"/></svg> \ No newline at end of file