File tree 7 files changed +84
-5
lines changed
7 files changed +84
-5
lines changed Original file line number Diff line number Diff line change
1
+ - name : Manufacturable
2
+ slug : manufacturable
3
+ type : Ruby Gem
4
+ download : https://rubygems.org/gems/manufacturable
5
+ download_name : Ruby Gems
6
+ source : https://github.com/first-try-software/manufacturable
7
+ source_name : GitHub
8
+
9
+ - name : Navigable
10
+ slug : navigable
11
+ type : Ruby Gem
12
+ download : https://rubygems.org/gems/navigable
13
+ download_name : Ruby Gems
14
+ source : https://github.com/first-try-software/navigable
15
+ source_name : GitHub
16
+
17
+ - name : Ruby Flog
18
+ slug : ruby-flog
19
+ type : VS Code Extension
20
+ download : https://marketplace.visualstudio.com/items?itemName=first-try-software.ruby-flog
21
+ download_name : VS Code Marketplace
22
+ source : https://github.com/first-try-software/vs-code-ruby-flog
23
+ source_name : GitHub
24
+
25
+ - name : Coverage Status
26
+ slug : coverage-status
27
+ type : VS Code Extension
28
+ download : https://marketplace.visualstudio.com/items?itemName=first-try-software.coverage-status
29
+ download_name : VS Code Marketplace
30
+ source : https://github.com/first-try-software/vs-code-coverage-status
31
+ source_name : GitHub
32
+
Original file line number Diff line number Diff line change 20
20
}
21
21
}
22
22
23
+ .copyright {
24
+ color : $color-blue-light ;
25
+ padding-top : $padding ;
26
+ text-align : center ;
27
+ }
28
+
23
29
a {
24
30
margin : 0 auto ;
25
31
}
Original file line number Diff line number Diff line change
1
+ .software {
2
+ font-family : " MonoHand" , sans-serif ;
3
+ font-size : 20px ;
4
+ margin-top : 3em ;
5
+ text-align : center ;
6
+
7
+ ul {
8
+ list-style-type : none ;
9
+
10
+ li {
11
+ display : inline-block ;
12
+ padding : $padding ;
13
+ text-align : center ;
14
+ text-transform : uppercase ;
15
+
16
+ .lilbang {
17
+ width : 20px ;
18
+ }
19
+
20
+ .subtext {
21
+ font-size : 12px ;
22
+ }
23
+ }
24
+ }
25
+ }
Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ section {
33
33
}
34
34
35
35
footer {
36
- background-color : $background-color-primary ;
37
- border : $padding solid $background-color-primary ;
38
36
display : flex ;
39
- justify-content : center ;
37
+ flex-direction : column ;
40
38
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ $color-drop-shadow: $color-black;
15
15
16
16
$margin : 16px ;
17
17
$padding : 16px ;
18
- $margin-home-header : 20 vh ;
18
+ $margin-home-header : 15 vh ;
19
19
20
20
$page-margin : $margin ;
21
21
$page-margins : $page-margin * 2 ;
Original file line number Diff line number Diff line change 12
12
" arrows" ,
13
13
" media" ,
14
14
" about" ,
15
+ " intro" ,
15
16
" post"
Original file line number Diff line number Diff line change 7
7
< div class ="oval ">
8
8
< div class ="title "> {{ site.name }}</ div >
9
9
< div class ="tagline "> {{ site.tagline }}</ div >
10
+ < div class ="software ">
11
+ < ul >
12
+ {% for pkg in site.data.software %}
13
+ < li >
14
+ < img class ="lilbang " src ="images/bang.png ">
15
+ {{ pkg.name }}< br >
16
+ < span class ="subtext ">
17
+ < a href ="{{ pkg.source }} " target ="top "> {{ pkg.source_name }}</ a > |
18
+ < a href ="{{ pkg.download }} " target ="top "> {{ pkg.download_name }}</ a >
19
+ </ span >
20
+ </ li >
21
+ {% endfor %}
22
+ </ ul >
23
+ </ div >
10
24
</ div >
11
25
< a class ="arrow down bounce-5s " href ="#{{ site.posts.first.slug }} "> </ a >
12
26
</ scroll-page >
@@ -49,7 +63,10 @@ <h2>The {{ hero.title }}.</h2>
49
63
{% endfor %}
50
64
</ section >
51
65
</ div >
52
- < a href ="/ "> < img src ="/images/bang.png " width ="48 " height ="48 " alt ="First Try! Software "> </ a >
66
+ < footer >
67
+ < a href ="/ "> < img src ="/images/bang.png " width ="48 " height ="48 " alt ="First Try! Software "> </ a >
68
+ < div class ="copyright "> Copyright © 2020 Alan Ridlehoover and Fito von Zastrow</ div >
69
+ </ footer >
53
70
</ scroll-page >
54
71
</ scroll-container >
55
72
You can’t perform that action at this time.
0 commit comments