semaphore
Honorary Master
- Joined
- Nov 13, 2007
- Messages
- 18,634
- Reaction score
- 9,720
Just wow. Climb off that horse of yours.
It's not designed to do that... so no. I'm not arguing that it's a complete language that can store and recall variables, but you seem to be missing the point. You can use it to make some decisions, however simple, so it can be seen as one, even if no developer in their right mind would consider it a proper language.
It's purpose is exactly that though... making pretty colours on a website, and automatically resizing and changing layouts as the browser changes size... reacting to different browsers, and changing what is rendered when the page is rendered to a screen or printed. Not much more.
Or you can write stuff like this:
Code:
$darkgray: #a9a9a9
$lightgray: #d3d3d3
$red: #b80000
$base-color: $darkgray
$alt-color: $red
$background-color: $lightgray
body:
background-color: $background-color
color: $base-color
a
color: $alt-color