forked from TuringLang/turinglang.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* quickfix alignment * add news and clean up scss
- Loading branch information
1 parent
9970ad6
commit 03776e3
Showing
15 changed files
with
263 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
@import "variables/greys"; | ||
@import "variables/colorslight"; | ||
@import "variables/borders"; | ||
@import "variables/spacers"; | ||
|
||
/*-- scss:rules --*/ | ||
|
||
@import "rules/mixins"; | ||
|
||
@import "rules/layouts"; | ||
@import "rules/cards"; | ||
@import "rules/buttons"; | ||
@import "rules/hoverables-light"; | ||
@import "rules/panels"; | ||
@import "rules/navbar"; | ||
@import "rules/sourceCode"; | ||
@import "rules/codeblocks"; | ||
|
||
@import "old/old-styles"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* css styles */ | ||
/* .cell-output { | ||
background-color: #f1f3f5; | ||
} */ | ||
|
||
/* .cell-output img { | ||
max-width: 100%; | ||
height: auto; | ||
} */ | ||
|
||
/* .cell-output-display pre { | ||
word-break: break-wor !important; | ||
white-space: pre-wrap !important; | ||
} | ||
*/ | ||
|
||
/* now included in _navbar.scss | ||
.navbar a:hover { | ||
text-decoration: none; | ||
} | ||
*/ | ||
|
||
.cell-output { | ||
border: 1px dashed; | ||
} | ||
|
||
.cell-output-stdout code { | ||
word-break: break-wor !important; | ||
white-space: pre-wrap !important; | ||
} | ||
|
||
|
||
.cell-output-display svg { | ||
height: fit-content; | ||
width: fit-content; | ||
} | ||
|
||
.cell-output-display img { | ||
max-width: 100%; | ||
max-height: 100%; | ||
object-fit: contain; | ||
} | ||
|
||
.nav-footer-center { | ||
display: flex; | ||
justify-content: center; | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
$hover-border: lighten($color-secondary, 5%); | ||
|
||
.button { | ||
@include button($hover-border) | ||
} | ||
|
||
.card { | ||
@include card($hover-border) | ||
} | ||
|
||
.example-code { | ||
flex: 0 1 45%; | ||
|
||
@media screen and (max-width: 992px) { | ||
flex: 0 1 100%; | ||
} | ||
} | ||
|
||
.example-text { | ||
flex: 0 1 53%; | ||
|
||
@media screen and (max-width: 992px) { | ||
flex: 0 1 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
$hover-border: darken($color-secondary, 15%); | ||
|
||
.button { | ||
@include button($hover-border) | ||
} | ||
|
||
.card { | ||
@include card($hover-border) | ||
} | ||
|
||
.example-code { | ||
flex: 0 1 45%; | ||
|
||
@media screen and (max-width: 992px) { | ||
flex: 0 1 100%; | ||
} | ||
} | ||
|
||
.example-text { | ||
flex: 0 1 53%; | ||
|
||
@media screen and (max-width: 992px) { | ||
flex: 0 1 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.content-panel { | ||
padding: 1.5rem; | ||
} | ||
|
||
.section-end-space { | ||
padding-bottom: $large-y-space; | ||
} |
Oops, something went wrong.