"Fossies" - the Fresh Open Source Software Archive 
Member "wordpress/wp-content/themes/twentynineteen/sass/variables-site/_columns.scss" (14 Dec 2018, 396 Bytes) of package /linux/www/wordpress-5.7-RC1.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) SASS/SCSS source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 $columns: (
2 1: calc(1 * (100vw / 12)),
3 2: calc(2 * (100vw / 12)),
4 3: calc(3 * (100vw / 12)),
5 4: calc(4 * (100vw / 12)),
6 5: calc(5 * (100vw / 12)),
7 6: calc(6 * (100vw / 12)),
8 7: calc(7 * (100vw / 12)),
9 8: calc(8 * (100vw / 12)),
10 9: calc(9 * (100vw / 12)),
11 10: calc(10 * (100vw / 12)),
12 11: calc(11 * (100vw / 12)),
13 12: calc(12 * (100vw / 12))
14 );
15
16 $columns__margin: $size__spacing-unit;