
Sass is an extension of CSS3, which has two formats: Sass and SCSS.
.main_content table {
margin: 10px;
td {
text-align: right;
a {
font-weight: bold;
}
}
}
.main_content table {
margin: 10px;
}
.main_content table td {
text-align: right;
}
.main_content table td a {
font-weight: bold;
}
$blue: #357ec7;
$nav: 450px;
.navigation {
border-color: $blue;
width: $nav;
}
.content {
width: $nav * 2;
color: $blue;
}
.navigation {
border-color: #357ec7;
width: 450px;
}
.content {
width: 900px;
color: #357ec7;
}
@mixin rounded_border($radius: 4px) {
border-radius: $radius;
-moz-border-radius: $radius;
-webkit-border-radius: $radius;
}
.left_sidebar {
@include rounded_border;
}
.right_sidebar {
@include rounded_border(10px);
}
.left_sidebar {
border-radius: 4px;
-moz-border-radius: 4pxs;
-webkit-border-radius: 4px;
}
.right_sidebar {
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}Penceo is a Communication and Web Design Agency in Geneva. We are ready for our next challenge. Let's get together and design stunning high-permance solutions for your business!