This file contains hidden or 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
// create the new budget items (↖️ connect to new estimate) ✅ | |
// create the new budget item specialism totals (↖️ connect to new budget items ) ✅ | |
// create the new role hours (↖️ connect to new budget items AND new budget item specialism totals) ✅ | |
// create the new estimate specialism totals (↖️ connect to new estimate) ✅ | |
// Start time | |
// let startTime = Date.now(); | |
let inputConfig = input.config(); |
This file contains hidden or 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
IF((values), | |
LEN( | |
IF( | |
FIND(",", ARRAYJOIN(ARRAYUNIQUE(values), ",")&"") = 1, | |
SUBSTITUTE(ARRAYJOIN(ARRAYUNIQUE(values), ",")&"", ",", "", 1), | |
IF( | |
FIND(",", ARRAYJOIN(ARRAYUNIQUE(values), ",")&"", LEN(ARRAYJOIN(ARRAYUNIQUE(values), ",")&"") - 1), |
This file contains hidden or 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
/* | |
<div class="_container-lines"><div></div></div> | |
*/ | |
._container-lines { | |
position: fixed; | |
top: 0; | |
bottom: 0; | |
left: 50%; | |
transform: translateX(-50%); |
This file contains hidden or 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
@function columns($i) { | |
@return calc(#{$i} * var(--column-unit)); | |
} | |
@function gutters($i) { | |
@return calc(#{$i} * var(--gutter-unit)); | |
} | |
@function column-spans($i) { | |
@return calc(#{$i} * var(--column-and-gutter-unit) - var(--gutter-unit)); |
This file contains hidden or 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
:root { | |
// Grid proportions | |
--grid-width: 960; | |
--grid-column-width: 60; | |
--grid-columns: 12; | |
// Grid logic | |
--grid-gutters: calc(var(--grid-columns) - 1); | |
// Grid proportion logic |