mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 02:17:57 +01:00
13 lines
191 B
Markdown
13 lines
191 B
Markdown
|
```scss
|
||
|
.container { width: 100%; }
|
||
|
|
||
|
article[role="main"] {
|
||
|
float: left;
|
||
|
width: 600px / 960px * 100%;
|
||
|
}
|
||
|
|
||
|
aside[role="complimentary"] {
|
||
|
float: right;
|
||
|
width: 300px / 960px * 100%;
|
||
|
}
|
||
|
```
|