Compare commits
3 Commits
0eb1abd26d
...
1abc13b20f
Author | SHA1 | Date | |
---|---|---|---|
1abc13b20f | |||
cdc9e28c90 | |||
8a48a110ff |
@ -1,4 +1,5 @@
|
|||||||
@import "style.scss";
|
@import "variables.scss";
|
||||||
|
@import "mixins.scss";
|
||||||
|
|
||||||
.gmachine-instruction {
|
.gmachine-instruction {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
@import "style.scss";
|
@import "variables.scss";
|
||||||
|
@import "mixins.scss";
|
||||||
|
|
||||||
.stack {
|
.stack {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -10,7 +11,7 @@
|
|||||||
|
|
||||||
.stack-element {
|
.stack-element {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 1.5rem;
|
min-height: 1.5rem;
|
||||||
|
|
||||||
&:not(:last-child) {
|
&:not(:last-child) {
|
||||||
border-bottom: $standard-border;
|
border-bottom: $standard-border;
|
||||||
|
@ -261,12 +261,7 @@ As before, we push the desired answer onto the stack:
|
|||||||
{{< stack >}}
|
{{< stack >}}
|
||||||
{{< stack_element >}}{{< /stack_element >}}
|
{{< stack_element >}}{{< /stack_element >}}
|
||||||
{{< stack_element >}}1{{< /stack_element >}}
|
{{< stack_element >}}1{{< /stack_element >}}
|
||||||
{{< stack_element >}}
|
{{< stack_element >}}\(n\){{< /stack_element >}}
|
||||||
{{< sidenote "right" "zero-note" "\(n\)" >}}
|
|
||||||
At this point, we know that \(n\) is equal to 0. However, for the sake of consistency,
|
|
||||||
and to avoid confusion, I do not substitute 0 here.
|
|
||||||
{{< /sidenote >}}
|
|
||||||
{{< /stack_element >}}
|
|
||||||
{{< stack_element >}}factorial{{< /stack_element >}}
|
{{< stack_element >}}factorial{{< /stack_element >}}
|
||||||
{{< /stack >}}
|
{{< /stack >}}
|
||||||
|
|
||||||
|
13
themes/vanilla/assets/scss/mixins.scss
Normal file
13
themes/vanilla/assets/scss/mixins.scss
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
@import "variables.scss";
|
||||||
|
|
||||||
|
@mixin bordered-block {
|
||||||
|
border: $standard-border;
|
||||||
|
border-radius: .2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin below-container-width {
|
||||||
|
@media screen and (max-width: $container-width){
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,4 +1,5 @@
|
|||||||
@import "style.scss";
|
@import "variables.scss";
|
||||||
|
@import "mixins.scss";
|
||||||
|
|
||||||
$sidenote-accommodate-shrink: 10rem;
|
$sidenote-accommodate-shrink: 10rem;
|
||||||
$sidenote-width: 30rem;
|
$sidenote-width: 30rem;
|
||||||
|
@ -1,28 +1,5 @@
|
|||||||
$container-width: 45rem;
|
@import "variables.scss";
|
||||||
$standard-border-width: .075rem;
|
@import "mixins.scss";
|
||||||
|
|
||||||
$primary-color: #36e281;
|
|
||||||
$primary-color-dark: darken($primary-color, 10%);
|
|
||||||
$code-color: #f0f0f0;
|
|
||||||
$code-color-dark: darken($code-color, 10%);
|
|
||||||
$border-color: #bfbfbf;
|
|
||||||
|
|
||||||
$font-heading: "Lora", serif;
|
|
||||||
$font-body: "Raleway", serif;
|
|
||||||
$font-code: "Inconsolata", monospace;
|
|
||||||
|
|
||||||
$standard-border: $standard-border-width solid $border-color;
|
|
||||||
|
|
||||||
@mixin bordered-block {
|
|
||||||
border: $standard-border;
|
|
||||||
border-radius: .2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin below-container-width {
|
|
||||||
@media screen and (max-width: $container-width){
|
|
||||||
@content;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: $font-body;
|
font-family: $font-body;
|
||||||
|
14
themes/vanilla/assets/scss/variables.scss
Normal file
14
themes/vanilla/assets/scss/variables.scss
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
$container-width: 45rem;
|
||||||
|
$standard-border-width: .075rem;
|
||||||
|
|
||||||
|
$primary-color: #36e281;
|
||||||
|
$primary-color-dark: darken($primary-color, 10%);
|
||||||
|
$code-color: #f0f0f0;
|
||||||
|
$code-color-dark: darken($code-color, 10%);
|
||||||
|
$border-color: #bfbfbf;
|
||||||
|
|
||||||
|
$font-heading: "Lora", serif;
|
||||||
|
$font-body: "Raleway", serif;
|
||||||
|
$font-code: "Inconsolata", monospace;
|
||||||
|
|
||||||
|
$standard-border: $standard-border-width solid $border-color;
|
Loading…
Reference in New Issue
Block a user