mirror of
https://github.com/danog/sass-site.git
synced 2024-11-30 04:29:17 +01:00
Merge branch 'Mr21-syntax-switcher'
This commit is contained in:
commit
e9ac86eaf8
@ -1,18 +1,24 @@
|
|||||||
$(function() {
|
$(function() {
|
||||||
$( "#topic-2" ).tabs();
|
// Initialize the tabs (Sass/SCSS) with jQuery-ui
|
||||||
$( "#topic-3" ).tabs();
|
$( ".slides ul" ).parent().tabs();
|
||||||
$( "#topic-5" ).tabs();
|
|
||||||
$( "#topic-6" ).tabs();
|
|
||||||
$( "#topic-7" ).tabs();
|
|
||||||
$( "#topic-8" ).tabs();
|
|
||||||
|
|
||||||
// Hover states on the static widgets
|
// Switch ALL the tabs (Sass/SCSS) together
|
||||||
$( "#dialog-link, #icons li" ).hover(
|
var
|
||||||
function() {
|
noRecursion = false,
|
||||||
$( this ).addClass( "ui-state-hover" );
|
jqA = $( "a.ui-tabs-anchor" ),
|
||||||
},
|
jqASass = jqA.filter( ":contains('Sass')" ).click(function() {
|
||||||
function() {
|
if ( !noRecursion ) {
|
||||||
$( this ).removeClass( "ui-state-hover" );
|
noRecursion = true;
|
||||||
}
|
jqASass.not( this ).click();
|
||||||
);
|
noRecursion = false;
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
jqASCSS = jqA.filter( ":contains('SCSS')" ).click(function() {
|
||||||
|
if ( !noRecursion ) {
|
||||||
|
noRecursion = true;
|
||||||
|
jqASCSS.not( this ).click();
|
||||||
|
noRecursion = false;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
;
|
||||||
});
|
});
|
||||||
|
@ -4,15 +4,19 @@
|
|||||||
padding: 10px
|
padding: 10px
|
||||||
color: #333
|
color: #333
|
||||||
|
|
||||||
|
|
||||||
.success
|
.success
|
||||||
@extend .message
|
@extend .message
|
||||||
border-color: green
|
border-color: green
|
||||||
|
|
||||||
|
|
||||||
.error
|
.error
|
||||||
@extend .message
|
@extend .message
|
||||||
border-color: red
|
border-color: red
|
||||||
|
|
||||||
|
|
||||||
.warning
|
.warning
|
||||||
@extend .message
|
@extend .message
|
||||||
border-color: yellow
|
border-color: yellow
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -7,4 +7,5 @@ ul,
|
|||||||
ol
|
ol
|
||||||
margin: 0
|
margin: 0
|
||||||
padding: 0
|
padding: 0
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -6,4 +6,5 @@
|
|||||||
body
|
body
|
||||||
font: 100% Helvetica, sans-serif
|
font: 100% Helvetica, sans-serif
|
||||||
background-color: #efefef
|
background-color: #efefef
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -14,4 +14,4 @@ nav a {
|
|||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -12,4 +12,6 @@ nav
|
|||||||
display: block
|
display: block
|
||||||
padding: 6px 12px
|
padding: 6px 12px
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -12,4 +12,4 @@ aside[role="complimentary"] {
|
|||||||
float: right;
|
float: right;
|
||||||
width: 31.25%;
|
width: 31.25%;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -6,7 +6,9 @@ article[role="main"]
|
|||||||
float: left
|
float: left
|
||||||
width: 600px / 960px * 100%
|
width: 600px / 960px * 100%
|
||||||
|
|
||||||
|
|
||||||
aside[role="complimentary"]
|
aside[role="complimentary"]
|
||||||
float: right
|
float: right
|
||||||
width: 300px / 960px * 100%
|
width: 300px / 960px * 100%
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
```scss
|
```scss
|
||||||
.container { width: 100%; }
|
.container { width: 100%; }
|
||||||
|
|
||||||
|
|
||||||
article[role="main"] {
|
article[role="main"] {
|
||||||
float: left;
|
float: left;
|
||||||
width: 600px / 960px * 100%;
|
width: 600px / 960px * 100%;
|
||||||
@ -10,4 +11,4 @@ aside[role="complimentary"] {
|
|||||||
float: right;
|
float: right;
|
||||||
width: 300px / 960px * 100%;
|
width: 300px / 960px * 100%;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -5,4 +5,5 @@ $primary-color: #333
|
|||||||
body
|
body
|
||||||
font: 100% $font-stack
|
font: 100% $font-stack
|
||||||
color: $primary-color
|
color: $primary-color
|
||||||
|
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user