You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -141,6 +141,18 @@ Add commit (and don't forget to add to `_data/nav.yml`).
141
141
142
142
## Site quirks and tips
143
143
144
+
### SCSS variables
145
+
146
+
Shortcuts with colors and other common variables can be found in `_sass/settings`. They can be used in SCSS files.
147
+
148
+
```scss
149
+
@import"settings/colors"
150
+
151
+
a {
152
+
color: $orange;
153
+
}
154
+
```
155
+
144
156
### Lazy loading of images
145
157
146
158
The Jupyter website uses [lazy loading of images](https://web.dev/browser-level-image-lazy-loading/). In general, images that are "below the fold" (below the browser window on page load) for laptop-sized screen sizes are encouraged to be configured for "lazy loading".
@@ -155,4 +167,4 @@ For images that are "above the fold" (that will be seen by users immediately aft
0 commit comments