Skip to content

Commit b9ed121

Browse files
committed
added content and Authors
1 parent 639b0f6 commit b9ed121

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4338
-0
lines changed

Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
gem 'nokogiri'
3+
gem 'rack', '~> 2.2.4'
4+
gem 'rspec'
5+
gem "webrick", "~> 1.8"
6+
gem "jekyll", "~> 3.9"

Gemfile.lock

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.6)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.2.3)
8+
diff-lcs (1.5.1)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
ffi (1.16.3)
14+
forwardable-extended (2.6.0)
15+
http_parser.rb (0.8.0)
16+
i18n (1.14.5)
17+
concurrent-ruby (~> 1.0)
18+
jekyll (3.9.5)
19+
addressable (~> 2.4)
20+
colorator (~> 1.0)
21+
em-websocket (~> 0.5)
22+
i18n (>= 0.7, < 2)
23+
jekyll-sass-converter (~> 1.0)
24+
jekyll-watch (~> 2.0)
25+
kramdown (>= 1.17, < 3)
26+
liquid (~> 4.0)
27+
mercenary (~> 0.3.3)
28+
pathutil (~> 0.9)
29+
rouge (>= 1.7, < 4)
30+
safe_yaml (~> 1.0)
31+
jekyll-sass-converter (1.5.2)
32+
sass (~> 3.4)
33+
jekyll-watch (2.2.1)
34+
listen (~> 3.0)
35+
kramdown (2.4.0)
36+
rexml
37+
liquid (4.0.4)
38+
listen (3.9.0)
39+
rb-fsevent (~> 0.10, >= 0.10.3)
40+
rb-inotify (~> 0.9, >= 0.9.10)
41+
mercenary (0.3.6)
42+
mini_portile2 (2.8.6)
43+
nokogiri (1.13.10)
44+
mini_portile2 (~> 2.8.0)
45+
racc (~> 1.4)
46+
pathutil (0.16.2)
47+
forwardable-extended (~> 2.6)
48+
public_suffix (5.0.5)
49+
racc (1.8.0)
50+
rack (2.2.9)
51+
rb-fsevent (0.11.2)
52+
rb-inotify (0.11.1)
53+
ffi (~> 1.0)
54+
rexml (3.2.8)
55+
strscan (>= 3.0.9)
56+
rouge (3.30.0)
57+
rspec (3.13.0)
58+
rspec-core (~> 3.13.0)
59+
rspec-expectations (~> 3.13.0)
60+
rspec-mocks (~> 3.13.0)
61+
rspec-core (3.13.0)
62+
rspec-support (~> 3.13.0)
63+
rspec-expectations (3.13.0)
64+
diff-lcs (>= 1.2.0, < 2.0)
65+
rspec-support (~> 3.13.0)
66+
rspec-mocks (3.13.1)
67+
diff-lcs (>= 1.2.0, < 2.0)
68+
rspec-support (~> 3.13.0)
69+
rspec-support (3.13.1)
70+
safe_yaml (1.0.5)
71+
sass (3.7.4)
72+
sass-listen (~> 4.0.0)
73+
sass-listen (4.0.0)
74+
rb-fsevent (~> 0.9, >= 0.9.4)
75+
rb-inotify (~> 0.9, >= 0.9.7)
76+
strscan (3.1.0)
77+
webrick (1.8.1)
78+
79+
PLATFORMS
80+
ruby
81+
82+
DEPENDENCIES
83+
jekyll (~> 3.9)
84+
nokogiri
85+
rack (~> 2.2.4)
86+
rspec
87+
webrick (~> 1.8)
88+
89+
BUNDLED WITH
90+
2.3.26

index.html

Lines changed: 437 additions & 0 deletions
Large diffs are not rendered by default.

resources/loading-icon.gif

16.8 KB
Loading

static/css/academicons.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/css/all.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/css/animation.css

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
.animation-link:hover:after {
2+
content: "";
3+
display: block;
4+
height:3px;
5+
background: #000;
6+
animation: animationLink 0.3s infinite ease-in-out;
7+
animation-duration: 0.3s;
8+
animation-fill-mode: both;
9+
animation-iteration-count: 1;
10+
}
11+
@keyframes animationLink {
12+
0% {
13+
width:0%;
14+
}
15+
16+
100% {
17+
width:100%;
18+
}
19+
}
20+
21+
22+
.new-swipers1{
23+
animation: animationSwiper 30s linear infinite;
24+
}
25+
.new-swipers1:hover{
26+
animation-play-state: paused;
27+
}
28+
@keyframes animationSwiper {
29+
0% {
30+
transform: translateX(0);
31+
}
32+
33+
100% {
34+
transform: translateX(-310%);
35+
}
36+
}
37+
.new-swipers2{
38+
animation: animationSwiper2 10s linear infinite;
39+
}
40+
.new-swipers2:hover{
41+
animation-play-state: paused;
42+
}
43+
@keyframes animationSwiper2 {
44+
0% {
45+
transform: translateX(0);
46+
}
47+
48+
100% {
49+
transform: translateX(-100%);
50+
}
51+
}

static/css/bootstrap.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/css/bulma-carousel.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)