Skip to content

Commit

Permalink
Fix indentations.
Browse files Browse the repository at this point in the history
  • Loading branch information
selfishprimate committed Aug 2, 2020
1 parent babcda3 commit 69668ef
Show file tree
Hide file tree
Showing 161 changed files with 6,300 additions and 9,418 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
public/
.DS_Store
2 changes: 1 addition & 1 deletion assets/scss/partials/_book-highlight.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
}
}
.highlight-figure {
@include gls-reset-figure;
@include reset-figure;
}
}
.highlight {
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/partials/_book-search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
&:required + .book-search-spinner {
display: block;
}
@include gls-placeholder{
@include placeholder{
padding-left: 5px;
color: $placeholder-color;
}
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/partials/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

.download-buttons{
display: flex;
@include gls-breakpoint(max, small){
@include breakpoint(max, small){
flex-wrap: wrap;
.btn{
flex: 1 0 auto;
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/partials/_examples.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
align-items: center;
background-color: #eef2f3;
border-radius: $border-radius;
@include gls-breakpoint(min, medium){
@include breakpoint(min, medium){
font-size: 2em;
height: 70px;
}
Expand Down
7 changes: 6 additions & 1 deletion assets/scss/partials/_featured-content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: $global-space;
margin-bottom: $global-space / 2;
.item{
&:not(:last-of-type){
margin-right: $global-space;
Expand All @@ -29,6 +29,11 @@
}
}
}
.note {
font-size: 90%;
line-height: 1.3;
margin-bottom: 1rem;
}
.description{
margin-bottom: $global-space * 2;
}
Expand Down
6 changes: 3 additions & 3 deletions assets/scss/partials/_general.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@include gls-antialias;
@include gls-reset-css;
@include gls-border-box;
@include antialias;
@include reset-css;
@include border-box;

html {
font-size: $font-size-base;
Expand Down
4 changes: 2 additions & 2 deletions assets/scss/partials/_github-buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
height: __remify(2px);
width: __remify(8px);
right: __remify(-8px);
@include gls-center(vertical);
@include center(vertical);
background-color: $body-text-color;
}
}
Expand All @@ -43,7 +43,7 @@
font-weight: 500;
text-decoration: none;
line-height: 0;
@include gls-stretched-link;
@include stretched-link;
}
&.download {
background-color: $body-text-color;
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/partials/_main-footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
font-style: italic;
font-weight: bold;
}
@include gls-breakpoint(max, large) {
@include breakpoint(max, large) {
&__inner {
flex-direction: column;
}
Expand Down
8 changes: 4 additions & 4 deletions assets/scss/partials/_responsive.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@include gls-breakpoint(max, large){
@include breakpoint(max, large){
.book-toc{
display: none;
}
Expand Down Expand Up @@ -39,7 +39,7 @@
}
}

@include gls-breakpoint(max, medium){
@include breakpoint(max, medium){
.book-menu{
margin-left: -$menu-width;
}
Expand All @@ -54,7 +54,7 @@
}
}

@include gls-breakpoint(max, small){
@include breakpoint(max, small){
body{
font-size: .9rem;
}
Expand Down Expand Up @@ -94,7 +94,7 @@
ion-icon{
font-size: 26px;
}
@include gls-breakpoint(min, medium){
@include breakpoint(min, medium){
display: none;
}
}
Expand Down
10 changes: 5 additions & 5 deletions assets/scss/partials/_tables.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.table{
margin: 0 0 80px;
@include gls-breakpoint(max, medium){
@include breakpoint(max, medium){
padding-bottom: $global-space;
}
@include gls-breakpoint(max, large){
@include breakpoint(max, large){
overflow-x: auto;
}
p{
Expand All @@ -16,7 +16,7 @@
font-size: 80%;
line-height: 1.3;
padding: 0;
@include gls-breakpoint(max, large){
@include breakpoint(max, large){
white-space: nowrap;
}
}
Expand All @@ -43,7 +43,7 @@
tr th, tr td{
padding: 1rem 1rem 1rem 0;
vertical-align: middle;
@include gls-breakpoint(min, large){
@include breakpoint(min, large){
padding: 1rem 3rem 1rem 0;
}
}
Expand All @@ -52,7 +52,7 @@
white-space: nowrap;
}
td.description{
@include gls-breakpoint(max, large){
@include breakpoint(max, large){
white-space: nowrap;
}
}
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/styles.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//Libraries
@import "vendors/gerillass/scss/gerillass";
@import "./node_modules/gerillass/scss/gerillass";

//Abstract
@import "partials/variables";
Expand Down
3 changes: 0 additions & 3 deletions assets/scss/vendors/gerillass/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions assets/scss/vendors/gerillass/.npmignore

This file was deleted.

5 changes: 0 additions & 5 deletions assets/scss/vendors/gerillass/CHANGELOG.md

This file was deleted.

37 changes: 0 additions & 37 deletions assets/scss/vendors/gerillass/CONTRIBUTING.md

This file was deleted.

13 changes: 0 additions & 13 deletions assets/scss/vendors/gerillass/LICENSE.md

This file was deleted.

136 changes: 0 additions & 136 deletions assets/scss/vendors/gerillass/README.md

This file was deleted.

Loading

0 comments on commit 69668ef

Please sign in to comment.