Skip to content

Commit e140087

Browse files
committed
Refresh
1 parent 5a8ce3d commit e140087

9 files changed

+294
-229
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ubuntu-bionic-18.04-cloudimg-console.log
2+
purgecss.config.js
3+
/tailwind.min.css

Vagrantfile

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
# Provisioning script
5+
$script = <<SCRIPT
6+
echo "*** Updating packages"
7+
8+
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y aptitude
9+
sudo DEBIAN_FRONTEND=noninteractive aptitude update
10+
sudo DEBIAN_FRONTEND=noninteractive aptitude -y safe-upgrade
11+
12+
echo "*** Installing new packages"
13+
sudo DEBIAN_FRONTEND=noninteractive aptitude install -y curl git-core vim nodejs zip zlib1g-dev cmake
14+
SCRIPT
15+
16+
17+
Vagrant.configure('2') do |config|
18+
config.vm.box = "ubuntu/bionic64"
19+
config.vm.hostname = "joy-framework"
20+
21+
# Provision the machine with the shell script above
22+
config.vm.provision "shell", inline: $script, privileged: false
23+
24+
# Performance optimizations
25+
config.vm.provider "virtualbox" do |v|
26+
# Set the timesync threshold to 5 seconds, instead of the default 20 minutes.
27+
v.customize ["guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 5000]
28+
end
29+
end

bundle--17227989.css

-150
This file was deleted.

css/app.css

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
@keyframes octocat-wave {
2+
0%, to {
3+
transform:rotate(0)
4+
}
5+
6+
20%, 60% {
7+
transform:rotate(-25deg)
8+
}
9+
10+
40%, 80% {
11+
transform:rotate(10deg)
12+
}
13+
}
14+
15+
.github-corner:hover .octo-arm {
16+
animation:octocat-wave 560ms ease-in-out
17+
}
18+
19+
pre > code {
20+
background-color: #edf2f7 !important;
21+
}

css/atom-one-light.css

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/*
2+
3+
Atom One Light by Daniel Gamage
4+
Original One Light Syntax theme from https://github.com/atom/one-light-syntax
5+
6+
base: #fafafa
7+
mono-1: #383a42
8+
mono-2: #686b77
9+
mono-3: #a0a1a7
10+
hue-1: #0184bb
11+
hue-2: #4078f2
12+
hue-3: #a626a4
13+
hue-4: #50a14f
14+
hue-5: #e45649
15+
hue-5-2: #c91243
16+
hue-6: #986801
17+
hue-6-2: #c18401
18+
19+
*/
20+
21+
.hljs {
22+
display: block;
23+
overflow-x: auto;
24+
padding: 0.5em;
25+
color: #383a42;
26+
background: #f8f8f8;
27+
}
28+
29+
.hljs-comment,
30+
.hljs-quote {
31+
color: #a0a1a7;
32+
font-style: italic;
33+
}
34+
35+
.hljs-doctag,
36+
.hljs-keyword,
37+
.hljs-formula {
38+
color: #a626a4;
39+
}
40+
41+
.hljs-section,
42+
.hljs-name,
43+
.hljs-selector-tag,
44+
.hljs-deletion,
45+
.hljs-subst {
46+
color: #e45649;
47+
}
48+
49+
.hljs-literal {
50+
color: #0184bb;
51+
}
52+
53+
.hljs-string,
54+
.hljs-regexp,
55+
.hljs-addition,
56+
.hljs-attribute,
57+
.hljs-meta-string {
58+
color: #50a14f;
59+
}
60+
61+
.hljs-built_in,
62+
.hljs-class .hljs-title {
63+
color: #c18401;
64+
}
65+
66+
.hljs-attr,
67+
.hljs-variable,
68+
.hljs-template-variable,
69+
.hljs-type,
70+
.hljs-selector-class,
71+
.hljs-selector-attr,
72+
.hljs-selector-pseudo,
73+
.hljs-number {
74+
color: #986801;
75+
}
76+
77+
.hljs-symbol,
78+
.hljs-bullet,
79+
.hljs-link,
80+
.hljs-meta,
81+
.hljs-selector-id,
82+
.hljs-title {
83+
color: #4078f2;
84+
}
85+
86+
.hljs-emphasis {
87+
font-style: italic;
88+
}
89+
90+
.hljs-strong {
91+
font-weight: bold;
92+
}
93+
94+
.hljs-link {
95+
text-decoration: underline;
96+
}

css/tailwind.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

images/checkmark.png

460 Bytes
Loading

0 commit comments

Comments
 (0)