github-uikit 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.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +29 -0
  4. data/_data/navigation.yml +21 -0
  5. data/_includes/.DS_Store +0 -0
  6. data/_includes/buymeacoffee.html +10 -0
  7. data/_includes/components.html +91 -0
  8. data/_includes/contact-form.html +56 -0
  9. data/_includes/disqus.html +19 -0
  10. data/_includes/footer-links.html +11 -0
  11. data/_includes/footer.html +15 -0
  12. data/_includes/google_analytics.html +11 -0
  13. data/_includes/gu-shields.md +7 -0
  14. data/_includes/head.html +85 -0
  15. data/_includes/header.html +51 -0
  16. data/_includes/logo-dark.html +1 -0
  17. data/_includes/logo-light.html +1 -0
  18. data/_includes/logo.html +5 -0
  19. data/_includes/offcanvas.html +18 -0
  20. data/_includes/overlayheader.html +48 -0
  21. data/_includes/pagination.html +24 -0
  22. data/_includes/post-pagination.html +24 -0
  23. data/_includes/reading-time-blog.html +10 -0
  24. data/_includes/reading-time.html +10 -0
  25. data/_includes/search_box.html +15 -0
  26. data/_includes/sections/custom-icons.html +22 -0
  27. data/_includes/sections/githubpages.html +16 -0
  28. data/_includes/sections/installation.html +40 -0
  29. data/_includes/sections/responsive.html +22 -0
  30. data/_includes/skills.html +0 -0
  31. data/_includes/totop.html +3 -0
  32. data/_includes/workhistory.html +36 -0
  33. data/_layouts/archive.html +52 -0
  34. data/_layouts/component.html +16 -0
  35. data/_layouts/default.html +9 -0
  36. data/_layouts/feed.html +26 -0
  37. data/_layouts/home.html +45 -0
  38. data/_layouts/homepage.html +9 -0
  39. data/_layouts/over.html +26 -0
  40. data/_layouts/overlay.html +9 -0
  41. data/_layouts/page.html +33 -0
  42. data/_layouts/post.html +47 -0
  43. data/assets/apple-touch-icon.png +0 -0
  44. data/assets/avatar-icon.png +0 -0
  45. data/assets/css/custom.css +31 -0
  46. data/assets/css/syntax.css +3 -0
  47. data/assets/css/theme-overrides.scss +12 -0
  48. data/assets/css/uikit-rtl.css +12170 -0
  49. data/assets/css/uikit-rtl.min.css +1 -0
  50. data/assets/css/uikit.css +12170 -0
  51. data/assets/css/uikit.min.css +1 -0
  52. data/assets/img/.DS_Store +0 -0
  53. data/assets/img/3girls.jpg +0 -0
  54. data/assets/img/algolia.png +0 -0
  55. data/assets/img/archive-page.png +0 -0
  56. data/assets/img/boats.jpg +0 -0
  57. data/assets/img/coffee.png +0 -0
  58. data/assets/img/cowboys-bg-1.png +0 -0
  59. data/assets/img/darkmountain.jpeg +0 -0
  60. data/assets/img/designer.png +0 -0
  61. data/assets/img/favicon-gu.png +0 -0
  62. data/assets/img/graffiti.jpg +0 -0
  63. data/assets/img/gu-inner-blue.png +0 -0
  64. data/assets/img/gu-square-ornate.png +0 -0
  65. data/assets/img/gu.svg +13 -0
  66. data/assets/img/home-layout.png +0 -0
  67. data/assets/img/icons-full-preview.png +0 -0
  68. data/assets/img/ijh-logo-white.svg +7 -0
  69. data/assets/img/info.svg +16 -0
  70. data/assets/img/installation.svg +21 -0
  71. data/assets/img/integration.svg +1 -0
  72. data/assets/img/koi-stroke.svg +781 -0
  73. data/assets/img/koi.svg +777 -0
  74. data/assets/img/lion.svg +31 -0
  75. data/assets/img/logo-black.svg +50 -0
  76. data/assets/img/logo-white.svg +50 -0
  77. data/assets/img/logo.png +0 -0
  78. data/assets/img/post-tags.png +0 -0
  79. data/assets/img/powerlines.jpg +0 -0
  80. data/assets/img/s-stroke.svg +1 -0
  81. data/assets/img/search.png +0 -0
  82. data/assets/img/site-build.png +0 -0
  83. data/assets/img/tag-cloud.png +0 -0
  84. data/assets/img/uikit.jpg +0 -0
  85. data/assets/img/web-mockup.png +0 -0
  86. data/assets/img/writer.jpg +0 -0
  87. data/assets/isaac-avatar.png +0 -0
  88. data/assets/js/uikit-icons.min.js +1 -0
  89. data/assets/js/uikit.min.js +1 -0
  90. data/assets/thisisfine.gif +0 -0
  91. data/assets/update.sh +3 -0
  92. metadata +246 -0
@@ -0,0 +1,15 @@
1
+ <div class="uk-navbar-item">
2
+ <a class="uk-icon-button" uk-icon="icon: search" href="#modal-full" uk-toggle></a>
3
+ <div id="modal-full" class="uk-modal-full" uk-modal>
4
+ <div class="uk-modal-dialog">
5
+ <button class="uk-modal-close-default" type="button" uk-close></button>
6
+ <div class="uk-modal-header">
7
+ <div id="search-searchbar"></div>
8
+ </div>
9
+ <div class="uk-modal-body" uk-overflow-auto>
10
+ <div id="search-hits" class="uk-section uk-padding-remove-top post-list">
11
+ </div>
12
+ </div>
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,22 @@
1
+
2
+ <div class="uk-section uk-section-secondary">
3
+ <div class="uk-container">
4
+ <div uk-grid>
5
+ <div class="uk-width-1-2@m">
6
+ <span uk-icon="icon: uikit; ratio: 7"></span>
7
+ <h3 class="uk-margin-small-top">Amazing Customizable SVG Icons</h3>
8
+ <p>Icon set is completely customizable, include your logo or add material design icons. You're in control.
9
+ </p>
10
+ <a class="uk-button uk-button-primary uk-button-large" href="{{"/components/custom-icons" | relative_url }}">Custom Icons</a>
11
+ </div>
12
+ <div class="uk-width-1-2@m">
13
+ <div>
14
+ <div class="uk-section-default">
15
+ <img src="{{"/assets/img/icons-full-preview.png" | relative_url}}" width="950" height="770" alt="">
16
+
17
+ </div>
18
+ </div>
19
+ </div>
20
+ </div>
21
+ </div>
22
+ </div>
@@ -0,0 +1,16 @@
1
+
2
+ <div class="uk-section uk-section-muted">
3
+ <div class="uk-container">
4
+ <div class="uk-clearfix">
5
+
6
+ <div class="uk-width-1-2@m uk-float-left">
7
+ <span uk-icon="icon: github; ratio: 7"></span>
8
+ <h3 class="uk-margin-small-top">Works perfectly on Github Pages</h3>
9
+ <p>Made from the bottom up with <span uk-icon="icon: github-alt; ratio: 1"></span> Github in mind.
10
+ </p>
11
+ <a class="uk-button uk-button-primary uk-button-large" href="{{"/components/introduction" | relative_url }}">Github Pages Compatible</a>
12
+ </div>
13
+
14
+ </div>
15
+ </div>
16
+ </div>
@@ -0,0 +1,40 @@
1
+
2
+ <div class="uk-section uk-section-muted">
3
+ <div class="uk-container">
4
+ <div uk-grid>
5
+ <div class="uk-width-1-2@m">
6
+ <img src="{{"/assets/img/installation.svg" | relative_url}}" alt="installation" class="uk-border-rounded" width="150" height="150" uk-svg>
7
+ <h3 class="uk-margin-small-top">Installation</h3>
8
+ <p>Install Github-Uikit's source and JavaScript files via clone, fork, or npm.
9
+
10
+ Package managed installs don’t include documentation or our full build scripts. You can also use our npm template repo to quickly generate a Bootstrap project via npm.
11
+ </p>
12
+ <a class="uk-button uk-button-primary uk-button-large" href="{{"/components/installation" | relative_url }}">Read Installation docs</a>
13
+
14
+ </div>
15
+ <div class="uk-width-1-2@m">
16
+ <div>
17
+ <p>The easiest way to install quickly is to clone the GitHub repository.</p>
18
+ <div class="uk-padding-small uk-section-default">
19
+ <code>
20
+
21
+ git clone https://github.com/isaacjosephhorton/github-uikit.git
22
+ </code></div>
23
+
24
+ <p>Make sure you have jekyll installed and you can run a build test locally with:</p>
25
+ <div class="uk-padding-small uk-section-default">
26
+ <code>
27
+ bundle exec jekyll serve
28
+ </code>
29
+ </div>
30
+ <p>Or install it yourself as:</p>
31
+ <div class="uk-padding-small uk-section-default">
32
+ <code>
33
+ $ gem install github-uikit
34
+ </code>
35
+ </div>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ </div>
40
+ </div>
@@ -0,0 +1,22 @@
1
+
2
+ <div class="uk-section uk-section-default" >
3
+ <div class="uk-container">
4
+ <div uk-grid>
5
+ <div class="uk-width-1-2@m">
6
+ <div class="uk-heading-large">this.();</div>
7
+ <h3 class="uk-margin-small-top">Robust (yet sleek) Javascript Framework</h3>
8
+ <p>The Uikit package is a collection of css and javascript that is reliable and comes with good documentation.
9
+ </p>
10
+ <a class="uk-button uk-button-secondary uk-button-large" href="{{"/components/javascript" | relative_url }}">How it works</a>
11
+ </div>
12
+ <div class="uk-width-1-2@m">
13
+ <span uk-icon="icon: image; ratio: 7"></span>
14
+ <h3 class="uk-margin-small-top">Build Responsive Websites Fast</h3>
15
+ <p>Mobile navigation built-in with off-canvas menu. A sleek and rewarding JavaScript framework.
16
+ </p>
17
+ <a class="uk-button uk-button-primary uk-button-large" href="{{"/components/grid" | relative_url }}">Custom Icons</a>
18
+ </div>
19
+
20
+ </div>
21
+ </div>
22
+ </div>
File without changes
@@ -0,0 +1,3 @@
1
+ {% if site.to_top == true %}
2
+ <span class="uk-flex uk-flex-center"><a href="" uk-totop uk-scroll></a></span><br>
3
+ {% endif %}
@@ -0,0 +1,36 @@
1
+ <ul class="uk-subnav uk-subnav-pill" uk-switcher>
2
+ <li><a href="#">2017-2021 Qode One</a></li>
3
+ <li><a href="#">2016-2017 Live Eyewear</a></li>
4
+ <li><a href="#">2008-2015 Shopatron</a></li>
5
+ <li><a href="#">2003-2008 Liquid Ratio</a></li>
6
+ <li><a href="#">1999-2003 New Image Technologies</a></li>
7
+ <li><a href="#">1996–1999 Record Grafix</a></li>
8
+ </ul>
9
+ <hr>
10
+ <ul class="uk-switcher uk-margin">
11
+ <li>
12
+ <h3>IJH</h3>
13
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
14
+ </li>
15
+ <li>
16
+ <h3>Live Eyewear</h3>
17
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
18
+ </li>
19
+ <li>
20
+ <h3>Shopatron</h3>
21
+ Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur, sed do eiusmod.
22
+ </li>
23
+ <li>
24
+ <h3>Liquid Ratio</h3>
25
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
26
+ </li>
27
+ <li>
28
+ <h3>New Image Technologies</h3>
29
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
30
+ </li>
31
+ <li>
32
+ <h3>Record Grafix</h3>
33
+ Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur, sed do eiusmod.
34
+ </li>
35
+ </ul>
36
+ <hr>
@@ -0,0 +1,52 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="uk-container-expand">
5
+ <div id="page" class="uk-section-default uk-padding-xsmall">
6
+ {% if page.bigimg %}
7
+ <div class="uk-section uk-light uk-background-fixed uk-background-cover uk-background-top-left" style="background-image: url({{ page.bigimg | relative_url }})">
8
+ <div class="intro-text uk-container">
9
+ <h3 class="uk-heading-primary">{{page.title}}</h3>
10
+ <p class="uk-article-meta">
11
+ {% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
12
+ {% assign sortedTags=site_tags | split:',' | sort %}
13
+ <span uk-icon="tag"></span>
14
+
15
+ {% for tag in sortedTags %}
16
+ <span class="tags">
17
+ <a href="#{{tag | cgi_escape}}" uk-scroll>{{ tag }} [{{ site.tags[tag].size }}]</a>
18
+ {% unless forloop.last %}, {% endunless %}
19
+ </span>
20
+ {% endfor %}
21
+ </p>
22
+ </div>
23
+ </div>
24
+ {% else %}
25
+ <div class="uk-section-small">
26
+ <div class="uk-container">
27
+ <h3 class="uk-heading-primary">{{page.title}}</h3>
28
+ <h2>Tags</h2>
29
+ <p class="uk-article-meta">
30
+ {% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
31
+ {% assign sortedTags = site_tags | split:',' | sort %}
32
+ <span uk-icon="tag"></span>
33
+ {% for tag in sortedTags %}
34
+ <span class="tags">
35
+ <a href="#{{tag | cgi_escape}}" uk-scroll>{{ tag }} [{{ site.tags[tag].size }}]</a>
36
+ {% unless forloop.last %} | {% endunless %}
37
+ </span>
38
+ {% endfor %}
39
+ </p>
40
+ </div>
41
+ </div>
42
+ <hr class="uk-divider-icon">
43
+ {% endif %}
44
+ </div>
45
+ <div class="uk-section">
46
+ <div class="uk-container">
47
+ <article class="uk-article">
48
+ {{content}}
49
+ </article>
50
+ </div>
51
+ </div>
52
+ </div>
@@ -0,0 +1,16 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div>
6
+ <div class="uk-container">
7
+ <hr>
8
+ <div uk-grid>
9
+ <div class="uk-width-medium uk-visible@m uk-scrollable-auto" uk-height-viewport>{% include components.html %}</div>
10
+ <div class="uk-width-2-3@m">{{content}}</div>
11
+ <div class="uk-width-expand@m"></div>
12
+ </div>
13
+ {% include buymeacoffee.html %}
14
+ {% include totop.html %}
15
+ </div>
16
+ </div>
@@ -0,0 +1,9 @@
1
+ <!doctype html>
2
+ <html lang="" itemscope itemtype="https://schema.org/Article">
3
+ {% include head.html %}
4
+ <main>
5
+ {% include header.html %}
6
+ {{content}}
7
+ {% include footer.html %}
8
+ </main>
9
+ </html>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom" xmlns:dc="https://purl.org/dc/elements/1.1/">
3
+ <channel>
4
+ <title>{{ site.name | xml_escape }}</title>
5
+ <description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
6
+ <link>{{ site.url }}</link>
7
+ <atom:link href="{{ site.url }}/{{ page.path }}" rel="self" type="application/rss+xml" />
8
+ <lastBuildDate>{% for post in site.posts limit:1 %}{{ post.date | date_to_rfc822 }}{% endfor %}</lastBuildDate>
9
+ {% for post in site.posts limit:10 %}
10
+ <item>
11
+ <title>{{ post.title | xml_escape }}</title>
12
+ {% if post.author.name %}
13
+ <dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
14
+ {% endif %}
15
+ {% if post.excerpt %}
16
+ <description>{{ post.excerpt | xml_escape }}</description>
17
+ {% else %}
18
+ <description>{{ post.content | xml_escape }}</description>
19
+ {% endif %}
20
+ <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
21
+ <link>{{ site.url }}{{ post.url }}</link>
22
+ <guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
23
+ </item>
24
+ {% endfor %}
25
+ </channel>
26
+ </rss>
@@ -0,0 +1,45 @@
1
+ ---
2
+ layout: homepage
3
+ title: Github-UiKit
4
+ logo: light
5
+ ---
6
+ <body>
7
+ <div class="uk-background-cover uk-background-top-center uk-light" style="background-image: url({{ "/assets/img/darkmountain.jpeg" | relative_url }});background-color:#333333;">
8
+ {% include header.html %}
9
+ <div class="uk-section uk-section-large">
10
+
11
+ <div class="intro-text uk-container">
12
+ <h2 class="uk-heading-medium">Github-UiKit</h2>
13
+ <div class="uk-grid-match uk-child-width-1-1@m" uk-grid>
14
+ <div>
15
+ <h3 class="uk-h4">Interface building blocks for professional website interaction.</h3>
16
+ <div>
17
+ <a class="uk-button uk-button-primary uk-button-large" href="{{"/installation" | relative_url }}">Get Started</a>
18
+ <a class="uk-button uk-button-default uk-button-large uk-inline-block" href="{{"/documentation" | relative_url }}">Download</a>
19
+ </div>
20
+ </div>
21
+ </div>
22
+ </div>
23
+
24
+ </div>
25
+ </div>
26
+ {% include sections/responsive.html %}
27
+ {% include sections/installation.html %}
28
+ {% include sections/custom-icons.html %}
29
+ {% include sections/githubpages.html %}
30
+ <div id="Connect" class="uk-section uk-section-secondary">
31
+ <div class="uk-container">
32
+ <h2 class="uk-heading-line"><span>Connect</span></h2>
33
+ <div class="uk-child-width-1-2@m" uk-grid>
34
+ <div>
35
+ <p>
36
+ Github-UiKit is always looking for contributors to help out. Your involvement is creatively appreciated.
37
+ </p>
38
+ </div>
39
+ <div>
40
+
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </body>
@@ -0,0 +1,9 @@
1
+ <!doctype html>
2
+ <html lang="" itemscope itemtype="https://schema.org/Article">
3
+ {% include head.html %}
4
+ <main>
5
+ {{content}}
6
+ {% include footer.html %}
7
+ </main>
8
+
9
+ </html>
@@ -0,0 +1,26 @@
1
+ ---
2
+ layout: overlay
3
+ ---
4
+
5
+ <body>
6
+ <div class="uk-background-norepeat uk-background-cover uk-background-blend-overlay" style="background-image: url({{ "/assets/img/graffiti.jpg" | relative_url }});background-color:#222;">
7
+ {% include overlayheader.html %}
8
+ <div class="uk-section uk-section-large">
9
+ <div class="intro-text uk-container uk-light">
10
+ <h2 class="uk-heading-medium">{{ page.title }}</h2>
11
+ <div class="uk-grid-match uk-child-width-1-1@m" uk-grid>
12
+ <div>
13
+ <h3 class="uk-h4">{{ page.subheading }}</h3>
14
+ </div>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </div>
19
+ <div>
20
+ </div>
21
+ <div class="uk-section uk-section-small">
22
+ <div class="uk-container">
23
+ {{ content }}
24
+ </div>
25
+ </div>
26
+ </body>
@@ -0,0 +1,9 @@
1
+ <!doctype html>
2
+ <html lang="" itemscope itemtype="https://schema.org/Article">
3
+ {% include head.html %}
4
+ <main>
5
+ {{content}}
6
+ {% include footer.html %}
7
+ </main>
8
+
9
+ </html>
@@ -0,0 +1,33 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="uk-container-expand uk-background-cover uk-background-top-center" style="background-image: url({{ page.bigimg | relative_url }})">
6
+ <div id="page" class="uk-section uk-padding-remove-bottom">
7
+ {% if page.bigimg %}
8
+ <div class="uk-container uk-light">
9
+ <div class="intro-text">
10
+ <h3 class="uk-heading-medium">{{page.title}}</h3>
11
+ </div>
12
+ </div>
13
+ {% else %}
14
+ <div>
15
+ <div class="uk-container">
16
+ <h3 class="uk-heading-medium">{{page.title}}</h3>
17
+ </div>
18
+ </div>
19
+ <hr class="uk-divider-icon">
20
+ {% endif %}
21
+ </div>
22
+ </div>
23
+ <div>
24
+ <div class="uk-section">
25
+ <div class="uk-container">
26
+ <article class="uk-article">
27
+ {{content}}
28
+ {% include buymeacoffee.html %}
29
+ </article>
30
+ </div>
31
+ </div>
32
+ {% include totop.html %}
33
+ </div>
@@ -0,0 +1,47 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="uk-container-expand uk-animation-slide-top-small">
6
+ <div id="blog" class="uk-section-default">
7
+ {% if page.bigimg %}
8
+ <div class="uk-section-large uk-light uk-background-fixed uk-background-cover uk-background-bottom-center" style="background-image: url({{ page.bigimg | relative_url }})">
9
+ <div class="intro-text uk-container uk-padding-large">
10
+ <h2 class="uk-heading-primary">{{page.title}}</h2>
11
+ <p class="uk-article-meta">
12
+ <span uk-icon="calendar"></span> <time class="date">{{page.date | date: "%b %d, %Y "}}</time>
13
+ <span uk-icon="tag"></span>
14
+ {% for tag in page.tags %}
15
+ <a class="uk-link-muted" href="{{ site.baseurl }}/archive/index.html#{{ tag | cgi_escape }}" title="Pages tagged {{ tag }}" rel="tag">{{ tag }}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}
16
+ </p>
17
+ </div>
18
+ </div>
19
+ {% else %}
20
+ <div>
21
+ <div class="uk-container uk-padding-large">
22
+ <h2 class="uk-heading-primary">{{page.title}}</h2>
23
+ <p class="uk-article-meta">
24
+ <span uk-icon="calendar"></span> <span class="date">{{page.date | date: "%b %d, %Y "}}</span>
25
+ <span uk-icon="tag"></span>
26
+ {% for tag in page.tags %}
27
+ <a href="{{ site.baseurl }}/archive/index.html#{{ tag | cgi_escape }}" title="Pages tagged {{ tag }}" rel="tag">{{ tag }}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}
28
+ {% include reading-time.html %}
29
+ </p>
30
+ </div>
31
+ </div>
32
+ <hr class="uk-divider-icon">
33
+ {% endif %}
34
+ </div>
35
+ <div class="uk-section uk-container uk-padding-large">
36
+ <article class="uk-article">
37
+ {{content}}
38
+ </article>
39
+ <div>
40
+ {% include post-pagination.html %}
41
+ </div>
42
+ {% include disqus.html %}
43
+ <br>
44
+ {% include buymeacoffee.html %}
45
+ </div>
46
+ {% include totop.html %}
47
+ </div>
Binary file
Binary file
@@ -0,0 +1,31 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;700&display=swap');
2
+
3
+ pre {
4
+ background-color:#282c34;
5
+ }
6
+
7
+ .uk-navbar-nav>li>a {
8
+ color:#000;
9
+ }
10
+ .uk-navbar-nav>li>a:hover {
11
+ color:#CC0000;
12
+ }
13
+ .uk-navbar-left.uk-light.black, .blackback {
14
+ background-color: black;
15
+ }
16
+ .uk-navbar-left.uk-light.black .uk-navbar-nav>li>a {
17
+ color: white;
18
+ }
19
+ .blackback {
20
+ width:10px;
21
+ height:80px;
22
+ display:block;
23
+ }
24
+ h1, h2, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, .uk-heading-2xlarge {
25
+ font-family: 'Raleway', sans-serif;
26
+ font-weight:700;
27
+ }
28
+ h3, h4, h5, h6 {
29
+ font-family: 'Raleway', sans-serif;
30
+ font-weight:500;
31
+ }
@@ -0,0 +1,3 @@
1
+ .highlight,pre.highlight{background:#282c34;color:#abb2bf}.highlight pre{background:#282c34}.highlight .hll{background:#282c34}.highlight .c{color:#5c6370;font-style:italic}.highlight .err{color:#960050;background-color:#1e0010}.highlight .k{color:#c678dd}.highlight .l{color:#98c379}.highlight .n{color:#abb2bf}.highlight .o{color:#abb2bf}.highlight .p{color:#abb2bf}.highlight .cm{color:#5c6370;font-style:italic}.highlight .cp{color:#5c6370;font-style:italic}.highlight .c1{color:#5c6370;font-style:italic}.highlight .cs{color:#5c6370;font-style:italic}.highlight .ge{font-style:italic}.highlight .gs{font-weight:700}.highlight .kc{color:#c678dd}.highlight .kd{color:#c678dd}.highlight .kn{color:#c678dd}.highlight .kp{color:#c678dd}.highlight .kr{color:#c678dd}.highlight .kt{color:#c678dd}.highlight .ld{color:#98c379}.highlight .m{color:#d19a66}.highlight .s{color:#98c379}.highlight .na{color:#d19a66}.highlight .nb{color:#e5c07b}.highlight .nc{color:#e5c07b}.highlight .no{color:#e5c07b}.highlight .nd{color:#e5c07b}.highlight .ni{color:#e5c07b}.highlight .ne{color:#e5c07b}.highlight .nf{color:#abb2bf}.highlight .nl{color:#e5c07b}.highlight .nn{color:#abb2bf}.highlight .nx{color:#abb2bf}.highlight .py{color:#e5c07b}.highlight .nt{color:#e06c75}.highlight .nv{color:#e5c07b}.highlight .ow{font-weight:700}.highlight .w{color:#f8f8f2}.highlight .mf{color:#d19a66}.highlight .mh{color:#d19a66}.highlight .mi{color:#d19a66}.highlight .mo{color:#d19a66}.highlight .sb{color:#98c379}.highlight .sc{color:#98c379}.highlight .sd{color:#98c379}.highlight .s2{color:#98c379}.highlight .se{color:#98c379}.highlight .sh{color:#98c379}.highlight .si{color:#98c379}.highlight .sx{color:#98c379}.highlight .sr{color:#56b6c2}.highlight .s1{color:#98c379}.highlight .ss{color:#56b6c2}.highlight .bp{color:#e5c07b}.highlight .vc{color:#e5c07b}.highlight .vg{color:#e5c07b}.highlight .vi{color:#e06c75}.highlight .il{color:#d19a66}.highlight .gu{color:#75715e}.highlight .gd{color:#f92672}.highlight .gi{color:#a6e22e}
2
+ pre { border: 0px solid #000; color: #abb2bf;
3
+ }
@@ -0,0 +1,12 @@
1
+ .intro-text {
2
+ text-shadow: 1px 1px 2px black;
3
+ }
4
+ blockquote {
5
+ border-left: 5px solid #ccc;
6
+ background: #f9f9f9;
7
+ border-radius: 0px 4px 4px 0px;
8
+ padding: 5px 10px;
9
+ }
10
+ .button, input[type=submit] {
11
+ -webkit-appearance: none;
12
+ }