Made a first version of the site
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
_site
|
||||
.sass-cache
|
||||
.jekyll-metadata
|
||||
25
404.html
Executable file
@@ -0,0 +1,25 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>You broke the internet!</title>
|
||||
<link rel="stylesheet" href="/assets/css/404.css" type="text/css" media="all" />
|
||||
</head>
|
||||
<body>
|
||||
<span class="neg">ERROR 404</span>
|
||||
<p>
|
||||
Oh no! Something went wrong and you broke the entire internet!<br />
|
||||
Yes, you broke the whole thing.<br />
|
||||
</p>
|
||||
<p>
|
||||
You can try to fix your fuck up in one of the following ways:
|
||||
<ul>
|
||||
<li> Press CTRL+ALT+DEL to restart your computer. You will lose unsaved information in any programs that are running</li>
|
||||
<li>Hit your computer with a hammer. You <i>might</i> lose unsaved information in any programs that are running.</li>
|
||||
<li> Jump out the window, you will not lose unsaved information in any programs that are running.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<div class="menu">
|
||||
<a href="index.html">Click to Restart</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
30
Gemfile
Normal file
@@ -0,0 +1,30 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
# Hello! This is where you manage which Jekyll version is used to run.
|
||||
# When you want to use a different version, change it below, save the
|
||||
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
|
||||
#
|
||||
# bundle exec jekyll serve
|
||||
#
|
||||
# This will help ensure the proper Jekyll version is running.
|
||||
# Happy Jekylling!
|
||||
gem "jekyll", "~> 3.7.3"
|
||||
|
||||
# This is the default theme for new Jekyll sites. You may change this to anything you like.
|
||||
gem "minima", "~> 2.0"
|
||||
|
||||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
||||
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
||||
# gem "github-pages", group: :jekyll_plugins
|
||||
|
||||
# If you have any plugins, put them here!
|
||||
group :jekyll_plugins do
|
||||
gem "jekyll-feed", "~> 0.6"
|
||||
end
|
||||
|
||||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
||||
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
||||
|
||||
# Performance-booster for watching directories on Windows
|
||||
gem "wdm", "~> 0.1.0" if Gem.win_platform?
|
||||
|
||||
74
Gemfile.lock
Normal file
@@ -0,0 +1,74 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
addressable (2.5.2)
|
||||
public_suffix (>= 2.0.2, < 4.0)
|
||||
colorator (1.1.0)
|
||||
concurrent-ruby (1.0.5)
|
||||
em-websocket (0.5.1)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0.6.0)
|
||||
eventmachine (1.2.5)
|
||||
ffi (1.9.23)
|
||||
forwardable-extended (2.6.0)
|
||||
http_parser.rb (0.6.0)
|
||||
i18n (0.9.5)
|
||||
concurrent-ruby (~> 1.0)
|
||||
jekyll (3.7.3)
|
||||
addressable (~> 2.4)
|
||||
colorator (~> 1.0)
|
||||
em-websocket (~> 0.5)
|
||||
i18n (~> 0.7)
|
||||
jekyll-sass-converter (~> 1.0)
|
||||
jekyll-watch (~> 2.0)
|
||||
kramdown (~> 1.14)
|
||||
liquid (~> 4.0)
|
||||
mercenary (~> 0.3.3)
|
||||
pathutil (~> 0.9)
|
||||
rouge (>= 1.7, < 4)
|
||||
safe_yaml (~> 1.0)
|
||||
jekyll-feed (0.9.3)
|
||||
jekyll (~> 3.3)
|
||||
jekyll-sass-converter (1.5.2)
|
||||
sass (~> 3.4)
|
||||
jekyll-seo-tag (2.4.0)
|
||||
jekyll (~> 3.3)
|
||||
jekyll-watch (2.0.0)
|
||||
listen (~> 3.0)
|
||||
kramdown (1.16.2)
|
||||
liquid (4.0.0)
|
||||
listen (3.1.5)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
ruby_dep (~> 1.2)
|
||||
mercenary (0.3.6)
|
||||
minima (2.4.0)
|
||||
jekyll (~> 3.5)
|
||||
jekyll-feed (~> 0.9)
|
||||
jekyll-seo-tag (~> 2.1)
|
||||
pathutil (0.16.1)
|
||||
forwardable-extended (~> 2.6)
|
||||
public_suffix (3.0.2)
|
||||
rb-fsevent (0.10.3)
|
||||
rb-inotify (0.9.10)
|
||||
ffi (>= 0.5.0, < 2)
|
||||
rouge (3.1.1)
|
||||
ruby_dep (1.5.0)
|
||||
safe_yaml (1.0.4)
|
||||
sass (3.5.6)
|
||||
sass-listen (~> 4.0.0)
|
||||
sass-listen (4.0.0)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
jekyll (~> 3.7.3)
|
||||
jekyll-feed (~> 0.6)
|
||||
minima (~> 2.0)
|
||||
tzinfo-data
|
||||
|
||||
BUNDLED WITH
|
||||
1.16.1
|
||||
21
LICENSE
Executable file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 hi
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
23
_config.yml
Executable file
@@ -0,0 +1,23 @@
|
||||
permalink: /:year:month:day/:title
|
||||
url: NowThisIsPodracing.be
|
||||
|
||||
# variables
|
||||
name: NowThisIsPodracing.be
|
||||
description: Now this is podracing! The team, the myth, the legend.
|
||||
|
||||
|
||||
# File management
|
||||
include: []
|
||||
exclude: ["README.md", "LICENSE","Gemfile","Gemfile.lock"]
|
||||
|
||||
# Sass
|
||||
sass:
|
||||
style: :compressed
|
||||
sass_dir: _sass
|
||||
|
||||
# Markdown
|
||||
markdown: kramdown
|
||||
kramdown:
|
||||
input: GFM
|
||||
syntax_highlighter_opts:
|
||||
disable : true
|
||||
8
_data/tags.yml
Executable file
@@ -0,0 +1,8 @@
|
||||
rani:
|
||||
name: Rani
|
||||
kenny:
|
||||
name: Kenny
|
||||
david:
|
||||
name: David
|
||||
mathijs:
|
||||
name: Mathijs
|
||||
3
_includes/topbar.html
Executable file
@@ -0,0 +1,3 @@
|
||||
<ul class="topbar">
|
||||
<a href="/404"><li><u>F</u>ile</li></a>
|
||||
</ul>
|
||||
81
_layouts/default.html
Executable file
@@ -0,0 +1,81 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||
<link rel="stylesheet" href="/assets/css/atom-one-light.css">
|
||||
{% if page.title or page.title == 'me' %}
|
||||
<title>{{ page.title }}</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/002.css">
|
||||
{% else %}
|
||||
<title>{{ site.name }}</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/001.css">
|
||||
{% endif %}
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="shortcut icon" href="/assets/img/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/assets/img/favicon.ico" type="image/x-icon">
|
||||
<script src="/assets/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<div class="default_title">
|
||||
<img src="/assets/img/mycomputer.png" />
|
||||
{% if page.tag %}
|
||||
<h1>{{ page.tag }}</h1>
|
||||
{% else %}
|
||||
<h1>{{ site.name }}</h1>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% include topbar.html %}
|
||||
<div class="tag_list">
|
||||
<ul id="tag-list">
|
||||
<li><a href="/" ><img src="/assets/img/disk.png" />(C:)</a>
|
||||
<ul>
|
||||
{% assign tags = site.tags | sort %}
|
||||
{% for tag in tags %}
|
||||
<li><a href="/tag/{{ tag | first | slugify }}/" title="{{ tag[0] | replace:'-', ' ' }}"><img src="/assets/img/folder.ico" />{{ tag[0] | replace:'-', ' ' }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="post_list">
|
||||
<ul>
|
||||
<li><a href="/about" title= "about"><img src="/assets/img/file.ico" title="about" /> About </a></li>
|
||||
{% for post in site.posts %}
|
||||
<li><a href="{{ post.url }}" title="{{ post.title }}"><img src="/assets/img/file.ico" title="{{ post.title }}" />{{ post.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="post_total">
|
||||
{% if page.tag %}
|
||||
<div class="left">{{ site.tags[page.tag] | size }} object(s)</div>
|
||||
{% else %}
|
||||
<div class="left">{{ site.posts | size }} object(s)</div>
|
||||
{% endif %}
|
||||
<div class="right"> </div>
|
||||
</div>
|
||||
</div>
|
||||
{% if page.title %}
|
||||
<div class="content">
|
||||
<div class="post_title">
|
||||
<img src="/assets/img/file.png" />
|
||||
<h1>{{ page.title }}</h1>
|
||||
<a href="/"><div class="btn"><span class="fa fa-times"></span></div></a>
|
||||
<div class="btn btn_max"><span class="fa fa-window-maximize"></span></div>
|
||||
<div class="btn"><span class="fa fa-window-minimize"></span></div>
|
||||
</div>
|
||||
<div class="post_content">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
<script src="/assets/js/001.js"></script>
|
||||
<script src="/assets/js/002.js"></script>
|
||||
<div class="footer">
|
||||
<p>Based on <a href= "https://h01000110.github.io/20170917/windows-95" target="_blank">Windows 95</a> by <a href="http://github.com/h01000110" target="_blank">h01000110 (hi)</a> | Code licensed under <a href="https://github.com/h01000110/h01000110.github.io/blob/master/LICENSE" target="_blank">MIT License</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
8
_layouts/tag.html
Executable file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
<ul>
|
||||
{% for post in site.tags[page.tag] %}
|
||||
<li><a href="{{ post.url }}" title="{{ post.title }}"><img src="/assets/img/file.ico" title="{{ post.title }}" />{{ post.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
11
_posts/2018-03-23-lorem-ipsum.md
Executable file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
layout: default
|
||||
title: "Lorem Ipsum"
|
||||
tags: rani kenny david mathijs
|
||||
---
|
||||
|
||||
## Lorem Ipsum
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin enim nibh, suscipit sed rhoncus quis, blandit quis sapien. Ut congue pharetra rhoncus. Praesent finibus vitae urna quis cursus. Proin mollis elementum sapien, vitae viverra magna tincidunt a. Nullam tincidunt interdum dui ut ultricies. Maecenas pellentesque tellus ac mauris faucibus elementum. Nulla quis risus aliquam, pharetra neque non, dapibus augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras ullamcorper lacinia augue in placerat. Suspendisse lacinia massa id blandit varius. Mauris ultricies ultricies bibendum.
|
||||
|
||||
Mauris eu lectus fermentum leo dictum hendrerit. Maecenas vel leo sit amet quam laoreet consequat vitae nec eros. Curabitur eleifend eu orci quis consectetur. Sed pretium tortor at consequat tincidunt. Nullam a tellus faucibus, dapibus tortor eget, ullamcorper metus. Aenean at aliquet metus. Aenean molestie metus rutrum, tincidunt nulla quis, tincidunt lorem. Morbi diam sem, rutrum vitae convallis eget, dignissim semper lacus. Curabitur ipsum diam, tincidunt in hendrerit sit amet, luctus vitae dui. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
||||
438
_sass/_main.scss
Executable file
@@ -0,0 +1,438 @@
|
||||
body {
|
||||
background: #008082;
|
||||
font-family: sans-serif, serif, monospace;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.wrapper, .content {
|
||||
width: 800px;
|
||||
margin: auto;
|
||||
margin-top: 20px;
|
||||
background: #bfb8bf;
|
||||
border: 2px solid;
|
||||
border-color: #fff8ff #000000 #000000 #fff8ff;
|
||||
padding: 2px 0;
|
||||
}
|
||||
.default_title, .post_title {
|
||||
padding: 2px 4px 3px 4px;
|
||||
position: relative;
|
||||
|
||||
h1 {
|
||||
color: #bfb8bf;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
img {
|
||||
float: left;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
margin: 0 3px 0 0;
|
||||
}
|
||||
}
|
||||
.post_title {
|
||||
h1 {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background: #cccccc;
|
||||
width: 13px;
|
||||
height: 11px;
|
||||
float: right;
|
||||
border: 2px solid;
|
||||
border-color: #fff8ff #000000 #000000 #fff8ff;
|
||||
|
||||
span {
|
||||
font-size: 11px;
|
||||
position: relative;
|
||||
left: 2px;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
.fa-window-minimize {
|
||||
font-size: 10px;
|
||||
left: 1px;
|
||||
}
|
||||
|
||||
.fa-window-maximize {
|
||||
font-size: 10px;
|
||||
left: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn_max {
|
||||
margin: 0 3px 0 0;
|
||||
}
|
||||
|
||||
.btn:active {
|
||||
width: 12px;
|
||||
height: 10px;
|
||||
}
|
||||
}
|
||||
ul.topbar {
|
||||
list-style: none;
|
||||
padding: 0 10px;
|
||||
margin: 3px 0 3px 0;
|
||||
|
||||
li {
|
||||
display: inline-block;
|
||||
margin: 0 5px 0 0;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
.post_list, .tag_list, .post_content {
|
||||
background: #fff8ff;
|
||||
border-width: 2px;
|
||||
border-style: ridge groove groove ridge;
|
||||
border-color: #7f787f #fff8ff #fff8ff #7f787f;
|
||||
}
|
||||
.post_list {
|
||||
width: 70.2%;
|
||||
margin: 0 auto;
|
||||
min-height: 150px;
|
||||
max-height: 150px;
|
||||
overflow-y: scroll;
|
||||
display: inline-block;
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
display: inline-block;
|
||||
margin: 10px;
|
||||
max-width: 16ch;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
|
||||
img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tag_list {
|
||||
width: 28%;
|
||||
margin: 0 auto;
|
||||
min-height: 150px;
|
||||
max-height: 150px;
|
||||
overflow-y: scroll;
|
||||
display: inline-block;
|
||||
|
||||
img {
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
margin: -2px 5px;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
max-width: 27ch;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
#tag-list {
|
||||
background:transparent url(/assets/img/pixel-alt.png) repeat-y 15px 0;
|
||||
}
|
||||
#tag-list li {
|
||||
padding:0 0 0 2px;
|
||||
}
|
||||
#tag-list li a {
|
||||
background: #fff8ff;
|
||||
display:block;
|
||||
}
|
||||
#tag-list li ul li {
|
||||
background:transparent url(/assets/img/pixel-alt.png) repeat-x 0 8px;
|
||||
margin:4px 0 4px 13px;
|
||||
padding:0 0 0 20px;
|
||||
}
|
||||
.post_total {
|
||||
.left, .right {
|
||||
border: 1px solid;
|
||||
border-color: #888888 #dadada #dadada #888888;
|
||||
display: inline-block;
|
||||
padding: 1px 3px;
|
||||
}
|
||||
.left {
|
||||
width: 33%;
|
||||
margin-left: 2px;
|
||||
}
|
||||
.right {
|
||||
width: 64%;
|
||||
margin-right: 2px;
|
||||
}
|
||||
}
|
||||
.post_content {
|
||||
position: relative;
|
||||
width: 98.5%;
|
||||
min-height: 600px;
|
||||
max-height: 600px;
|
||||
padding: 2px;
|
||||
margin: 0 auto;
|
||||
overflow-y: scroll;
|
||||
overflow-x: scroll;
|
||||
|
||||
p {
|
||||
line-height: 150%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0000ff;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
margin: 50px 0 10px 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
margin: 25px 0 5px 0;
|
||||
}
|
||||
|
||||
em {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
padding: 0 0 0 15px;
|
||||
margin: 15px 5px;
|
||||
border-left: 8px solid #000000;
|
||||
}
|
||||
|
||||
strong {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
hr {
|
||||
border-top: 3px solid #333333;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: square;
|
||||
margin: 0 0 15px 30px;
|
||||
|
||||
li {
|
||||
padding: 5px;
|
||||
|
||||
ul {
|
||||
margin: 10px 0 0 15px;
|
||||
|
||||
li {
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: decimal-leading-zero;
|
||||
margin: 0 0 15px 30px;
|
||||
|
||||
li {
|
||||
padding: 5px;
|
||||
|
||||
ul {
|
||||
margin: 10px 0 0 15px;
|
||||
|
||||
li {
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
border: 1px solid #222222;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
.hljs {
|
||||
background: #fff8ff;
|
||||
}
|
||||
.footer {
|
||||
font-size: 12px;
|
||||
margin: 30px 0 10px 0;
|
||||
|
||||
p {
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
color: #24244a;
|
||||
}
|
||||
}
|
||||
}
|
||||
.donate {
|
||||
float: right;
|
||||
padding: 0 3px 0 0;
|
||||
|
||||
p {
|
||||
text-align: right;
|
||||
word-break: break-word;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 900px) {
|
||||
.content {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 700px) {
|
||||
.content {
|
||||
width: 90%;
|
||||
}
|
||||
.post_content {
|
||||
width: 98%;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 400px) {
|
||||
.post_content {
|
||||
width: 97%;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 810px) {
|
||||
.wrapper {
|
||||
width: 90%;
|
||||
}
|
||||
.post_total {
|
||||
.left {
|
||||
width: 37%;
|
||||
}
|
||||
.right {
|
||||
float: right;
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 750px) {
|
||||
.tag_list {
|
||||
width: 99%;
|
||||
}
|
||||
.post_list {
|
||||
width: 99%;
|
||||
float: left;
|
||||
}
|
||||
.post_total {
|
||||
.left {
|
||||
width: 36%;
|
||||
}
|
||||
.right {
|
||||
float: right;
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 610px) {
|
||||
.tag_list {
|
||||
width: 98.7%;
|
||||
}
|
||||
.post_list {
|
||||
width: 98.7%;
|
||||
float: left;
|
||||
}
|
||||
.post_total {
|
||||
.left {
|
||||
width: 35.7%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 520px) {
|
||||
.post_total {
|
||||
.left {
|
||||
width: 34.5%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 410px) {
|
||||
.post_total {
|
||||
.left {
|
||||
width: 34%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 375px) {
|
||||
.post_total {
|
||||
.left {
|
||||
width: 33%;
|
||||
}
|
||||
}
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 16px;
|
||||
} /* this targets the default scrollbar (compulsory) */
|
||||
::-webkit-scrollbar-track {
|
||||
background-image: url("/assets/img/track.png");
|
||||
background-repeat: repeat-x repeat-y;
|
||||
} /* the new scrollbar will have a flat appearance with the set background color */
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #cccccc;
|
||||
border-width: 2px;
|
||||
border-style: groove ridge ridge groove;
|
||||
border-color: #fff8ff #000000 #000000 #fff8ff;
|
||||
} /* this will style the thumb, ignoring the track */
|
||||
|
||||
::-webkit-scrollbar-button {
|
||||
background-color: #cccccc;
|
||||
border-width: 2px;
|
||||
border-style: groove ridge ridge groove;
|
||||
border-color: #fff8ff #000000 #000000 #fff8ff;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
&:vertical:decrement {
|
||||
background-image: url("/assets/img/up.png");
|
||||
}
|
||||
|
||||
&:vertical:increment {
|
||||
background-image: url("/assets/img/down.png");
|
||||
}
|
||||
|
||||
&:horizontal:decrement {
|
||||
background-image: url("/assets/img/left.png");
|
||||
}
|
||||
|
||||
&:horizontal:increment {
|
||||
background-image: url("/assets/img/right.png");
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-position: 1px 2px;
|
||||
}
|
||||
} /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
background-color: #cacaca;
|
||||
} /* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */
|
||||
48
_sass/_reset.scss
Executable file
@@ -0,0 +1,48 @@
|
||||
/* http://meyerweb.com/eric/tools/css/reset/
|
||||
v2.0 | 20110126
|
||||
License: none (public domain)
|
||||
*/
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
9
about.md
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
layout: default
|
||||
title: Now This is Podracing!
|
||||
---
|
||||
|
||||
# The Team, The Myth, The Legend.
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/8bLkcCZFKvA?rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
|
||||
|
||||
9
assets/css/001.scss
Executable file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
---
|
||||
|
||||
@import "reset";
|
||||
@import "main";
|
||||
|
||||
.default_title {
|
||||
background: #00007f;
|
||||
}
|
||||
12
assets/css/002.scss
Executable file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
---
|
||||
|
||||
@import "reset";
|
||||
@import "main";
|
||||
|
||||
.default_title {
|
||||
background: #808080;
|
||||
}
|
||||
.post_title {
|
||||
background: #00007f;
|
||||
}
|
||||
33
assets/css/404.css
Normal file
@@ -0,0 +1,33 @@
|
||||
body {
|
||||
background:#0000aa;
|
||||
color:#ffffff;
|
||||
font-family:courier;
|
||||
font-size:12pt;
|
||||
text-align:center;
|
||||
margin:100px;
|
||||
}
|
||||
|
||||
blink {
|
||||
color:yellow;
|
||||
}
|
||||
|
||||
.neg {
|
||||
background:#fff;
|
||||
color:#0000aa;
|
||||
padding:2px 8px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
p {
|
||||
margin:30px 100px;
|
||||
}
|
||||
|
||||
a,a:hover {
|
||||
color:inherit;
|
||||
font:inherit;
|
||||
}
|
||||
|
||||
.menu {
|
||||
text-align:center;
|
||||
margin-top:50px;
|
||||
}
|
||||
96
assets/css/atom-one-light.css
Executable file
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
|
||||
Atom One Light by Daniel Gamage
|
||||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax
|
||||
|
||||
base: #fafafa
|
||||
mono-1: #383a42
|
||||
mono-2: #686b77
|
||||
mono-3: #a0a1a7
|
||||
hue-1: #0184bb
|
||||
hue-2: #4078f2
|
||||
hue-3: #a626a4
|
||||
hue-4: #50a14f
|
||||
hue-5: #e45649
|
||||
hue-5-2: #c91243
|
||||
hue-6: #986801
|
||||
hue-6-2: #c18401
|
||||
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
color: #383a42;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #a0a1a7;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-keyword,
|
||||
.hljs-formula {
|
||||
color: #a626a4;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name,
|
||||
.hljs-selector-tag,
|
||||
.hljs-deletion,
|
||||
.hljs-subst {
|
||||
color: #e45649;
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #0184bb;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-regexp,
|
||||
.hljs-addition,
|
||||
.hljs-attribute,
|
||||
.hljs-meta-string {
|
||||
color: #50a14f;
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-class .hljs-title {
|
||||
color: #c18401;
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-number {
|
||||
color: #986801;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-selector-id,
|
||||
.hljs-title {
|
||||
color: #4078f2;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
||||
2337
assets/css/font-awesome.css
vendored
Executable file
4
assets/css/font-awesome.min.css
vendored
Executable file
BIN
assets/fonts/FontAwesome.otf
Executable file
BIN
assets/fonts/fontawesome-webfont.eot
Executable file
2671
assets/fonts/fontawesome-webfont.svg
Executable file
|
After Width: | Height: | Size: 434 KiB |
BIN
assets/fonts/fontawesome-webfont.ttf
Executable file
BIN
assets/fonts/fontawesome-webfont.woff
Executable file
BIN
assets/fonts/fontawesome-webfont.woff2
Executable file
BIN
assets/img/disk.png
Executable file
|
After Width: | Height: | Size: 346 B |
BIN
assets/img/down.png
Executable file
|
After Width: | Height: | Size: 80 B |
BIN
assets/img/favicon.ico
Executable file
|
After Width: | Height: | Size: 766 B |
BIN
assets/img/file.ico
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/img/file.png
Executable file
|
After Width: | Height: | Size: 330 B |
BIN
assets/img/folder.ico
Executable file
|
After Width: | Height: | Size: 318 B |
BIN
assets/img/left.png
Executable file
|
After Width: | Height: | Size: 87 B |
BIN
assets/img/mycomputer.png
Executable file
|
After Width: | Height: | Size: 378 B |
BIN
assets/img/pixel-alt.png
Executable file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/img/pixel.png
Executable file
|
After Width: | Height: | Size: 109 B |
BIN
assets/img/right.png
Executable file
|
After Width: | Height: | Size: 86 B |
BIN
assets/img/track.png
Executable file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/img/up.png
Executable file
|
After Width: | Height: | Size: 83 B |
36
assets/js/001.js
Executable file
@@ -0,0 +1,36 @@
|
||||
// By: h01000110 (hi)
|
||||
// github.com/h01000110
|
||||
|
||||
var max = document.getElementsByClassName("btn")[1];
|
||||
var min = document.getElementsByClassName("btn")[2];
|
||||
|
||||
function maximize () {
|
||||
var post = document.getElementsByClassName("content")[0];
|
||||
var cont = document.getElementsByClassName("post_content")[0];
|
||||
var wid = window.innerWidth || document.documentElement.clientWidth || document.getElementsByTagName("body")[0].clientWidth;
|
||||
|
||||
if (wid > 900) {
|
||||
widf = wid * 0.9;
|
||||
post.style.width = widf + "px";
|
||||
|
||||
if (wid < 1400) {
|
||||
cont.style.width = "99%";
|
||||
} else {
|
||||
cont.style.width = "99.4%";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function minimize () {
|
||||
var post = document.getElementsByClassName("content")[0];
|
||||
var cont = document.getElementsByClassName("post_content")[0];
|
||||
var wid = window.innerWidth || document.documentElement.clientWidth || document.getElementsByTagName("body")[0].clientWidth;
|
||||
|
||||
if ( wid > 900 ) {
|
||||
post.style.width = "800px";
|
||||
cont.style.width = "98.5%";
|
||||
}
|
||||
}
|
||||
|
||||
max.addEventListener('click', maximize, false);
|
||||
min.addEventListener('click', minimize, false);
|
||||
51
assets/js/002.js
Executable file
@@ -0,0 +1,51 @@
|
||||
// By: h01000110 (hi)
|
||||
// github.com/h01000110
|
||||
|
||||
function numbers () {
|
||||
var fields = document.getElementsByTagName("code");
|
||||
for (field in fields) {
|
||||
var num = 0;
|
||||
var select = fields[field].innerText;
|
||||
var select_f = select.split(/\n/);
|
||||
var tab = document.createElement("table");
|
||||
|
||||
// IF YOU USE MARKDOWN AND YOU HAVE BEEN GETTING ONE ADDITIONAL LINE IN YOUR TAG CODE
|
||||
// UNCOMMENT THE SECTION BELOW
|
||||
|
||||
/* MARKDOWN SECTION /**/
|
||||
|
||||
select_f.splice(-1, 1);
|
||||
|
||||
/* END OF SECTION*/
|
||||
|
||||
fields[field].innerHTML = "";
|
||||
fields[field].appendChild(tab);
|
||||
for (line in select_f) {
|
||||
var row = document.createElement("tr");
|
||||
var col = document.createElement("th");
|
||||
var colc = document.createElement("th");
|
||||
col.innerText = num + 1;
|
||||
colc.innerText = select_f[line];
|
||||
row.appendChild(col);
|
||||
row.appendChild(colc);
|
||||
tab.appendChild(row);
|
||||
num = num + 1;
|
||||
|
||||
// STYLE SECTION - If you want, change it below
|
||||
|
||||
col.style.textAlign = "right";
|
||||
colc.style.textAlign = "left";
|
||||
tab.style.border = "0";
|
||||
col.style.border = "0";
|
||||
colc.style.border = "0";
|
||||
col.style.padding = "3px";
|
||||
colc.style.padding = "3px";
|
||||
col.style.borderRight = "2px solid #777777";
|
||||
|
||||
// END OF SECTION
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
window.onload = numbers();
|
||||
2
assets/js/highlight.pack.js
Executable file
5
tags/david.html
Executable file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
layout: tag
|
||||
tag: david
|
||||
permalink: /tag/david/
|
||||
---
|
||||
5
tags/kenny.html
Executable file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
layout: tag
|
||||
tag: kenny
|
||||
permalink: /tag/kenny/
|
||||
---
|
||||
5
tags/mathijs.html
Executable file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
layout: tag
|
||||
tag: mathijs
|
||||
permalink: /tag/mathijs/
|
||||
---
|
||||
5
tags/rani.html
Executable file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
layout: tag
|
||||
tag: rani
|
||||
permalink: /tag/rani/
|
||||
---
|
||||