Cascading Style Sheet
74 lines of Javascript code
$blue: #056ef0;
h1 {
color: $blue;
}
h1 {
color: #056ef0;
}
68 lines of Javascript code
.block {
a {
color: red;
}
}
.block a {
color: red;
}
.block {
font-size: 1.2rem;
}
h2 {
color: blue;
}
h2 {
color: blue;
margin: 0;
}
.block{font-size:1.2rem}h2{color:blue;margin:0}
a:hover {
color: red;
}
a:hover, a:focus {
color: red;
}
.flex {
display: flex;
}
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
.sweden-rocks {
bredd: 200px;
höjd: 25px;
färg: blå;
flyt: vänster !viktigt
}
.sweden-rocks {
width: 200px;
height: 25px;
color: blue;
float: left !important
}
:root {
--mainColor: red;
}
a {
color: var(--mainColor);
}
a {
color: red;
}
.icon { background-image: url(store.svg#pencil); }
.icon { background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg fill=%22red%22 stroke=%22black%22 viewBox=%220 0 512 512%22 xmlns=%22http://www.w3.org/2000/svg%22%3E %3Cpath d=%22M432 0c44.182 0 80 35.817 80 80 0 18.01-5.955 34.629-16 48l-32 32-112-112
32-32c13.371-10.045 29.989-16 48-16zm-400 368l-32 144 144-32 296-296-112-112-296 296zm325.789-186.211l-224 224-27.578-27.578 224-224 27.578 27.578z%22/%3E %3C/svg%3E); }
Oh, btw—Bootstrap 4 will be in SCSS. And if you care, v5 will likely be in PostCSS because holy crap that sounds cool.
— Mark Otto (@mdo) 23 april 2015
@partiallypro @postCSS Looks promising, maybe for another version after Sites 6.
— ZURB Foundation (@ZURBfoundation) 11 maj 2015
postcss.com coming soon!