variables in redbasic css
I have a little quesiton. Where are the variables in css defined? For example in
style.css
:
aside#region_1 {
border-right: 1px solid transparent;
width: $left_aside_widthpx;
min-width: $left_aside_widthpx;
max-width: $[code];
}
Was wondering where is[/code]left_aside_widthpx
defined? Checking browser's console I see it is set to
288px` but I wonder if this variable is hardcoded or depending on the screen size.