Skip to content

Commit 421d7ac

Browse files
authored
Merge pull request #6 from utPLSQL/feature/resources_section
Feature/resources section
2 parents 475acee + fa2fa47 commit 421d7ac

37 files changed

+14148
-5
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gem "jekyll"

_sass/_layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
}
6464
}
6565

66-
@include media-query($on-palm) {
66+
@include media-query($small-menu) {
6767
position: absolute;
6868
top: 9px;
6969
right: $spacing-unit / 2;

css/main.scss

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ $header-background: $white-color;
2929
$header-text: $grey-color-dark;
3030

3131
// Width of the content area
32-
$content-width: 800px;
32+
$content-width: 900px;
3333

3434
$on-palm: 600px;
35-
$on-laptop: 800px;
36-
35+
$small-menu: 840px;
36+
$on-laptop: 900px;
3737

38+
// Font-Awesome
39+
$fa-font-path: "../fontawesome/webfonts";
3840

3941
// Use media queries like this:
4042
// @include media-query($on-palm) {
@@ -55,5 +57,8 @@ $on-laptop: 800px;
5557
@import
5658
"base",
5759
"layout",
58-
"syntax-highlighting"
60+
"syntax-highlighting",
61+
"../fontawesome/scss/fontawesome.scss",
62+
"../fontawesome/scss/solid.scss",
63+
"../fontawesome/scss/brands.scss"
5964
;

fontawesome/scss/_animated.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Animated Icons
2+
// --------------------------
3+
4+
.#{$fa-css-prefix}-spin {
5+
animation: fa-spin 2s infinite linear;
6+
}
7+
8+
.#{$fa-css-prefix}-pulse {
9+
animation: fa-spin 1s infinite steps(8);
10+
}
11+
12+
@keyframes fa-spin {
13+
0% {
14+
transform: rotate(0deg);
15+
}
16+
17+
100% {
18+
transform: rotate(360deg);
19+
}
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Bordered & Pulled
2+
// -------------------------
3+
4+
.#{$fa-css-prefix}-border {
5+
border: solid .08em $fa-border-color;
6+
border-radius: .1em;
7+
padding: .2em .25em .15em;
8+
}
9+
10+
.#{$fa-css-prefix}-pull-left { float: left; }
11+
.#{$fa-css-prefix}-pull-right { float: right; }
12+
13+
.#{$fa-css-prefix},
14+
.fas,
15+
.far,
16+
.fal,
17+
.fab {
18+
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
19+
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
20+
}

fontawesome/scss/_core.scss

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Base Class Definition
2+
// -------------------------
3+
4+
.#{$fa-css-prefix},
5+
.fas,
6+
.far,
7+
.fal,
8+
.fad,
9+
.fab {
10+
-moz-osx-font-smoothing: grayscale;
11+
-webkit-font-smoothing: antialiased;
12+
display: inline-block;
13+
font-style: normal;
14+
font-variant: normal;
15+
text-rendering: auto;
16+
line-height: 1;
17+
}
18+
19+
%fa-icon {
20+
@include fa-icon;
21+
}

fontawesome/scss/_fixed-width.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Fixed Width Icons
2+
// -------------------------
3+
.#{$fa-css-prefix}-fw {
4+
text-align: center;
5+
width: $fa-fw-width;
6+
}

fontawesome/scss/_icons.scss

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

fontawesome/scss/_larger.scss

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// Icon Sizes
2+
// -------------------------
3+
4+
// makes the font 33% larger relative to the icon container
5+
.#{$fa-css-prefix}-lg {
6+
font-size: (4em / 3);
7+
line-height: (3em / 4);
8+
vertical-align: -.0667em;
9+
}
10+
11+
.#{$fa-css-prefix}-xs {
12+
font-size: .75em;
13+
}
14+
15+
.#{$fa-css-prefix}-sm {
16+
font-size: .875em;
17+
}
18+
19+
@for $i from 1 through 10 {
20+
.#{$fa-css-prefix}-#{$i}x {
21+
font-size: $i * 1em;
22+
}
23+
}

fontawesome/scss/_list.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// List Icons
2+
// -------------------------
3+
4+
.#{$fa-css-prefix}-ul {
5+
list-style-type: none;
6+
margin-left: $fa-li-width * 5/4;
7+
padding-left: 0;
8+
9+
> li { position: relative; }
10+
}
11+
12+
.#{$fa-css-prefix}-li {
13+
left: -$fa-li-width;
14+
position: absolute;
15+
text-align: center;
16+
width: $fa-li-width;
17+
line-height: inherit;
18+
}

0 commit comments

Comments
 (0)