adding comments
This commit is contained in:
parent
dfbaaca2a5
commit
9ebed88d42
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
/* styling elements */
|
||||||
code,
|
code,
|
||||||
kbd,
|
kbd,
|
||||||
mark {
|
mark {
|
||||||
|
@ -60,6 +61,7 @@ hr {
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
background-color: #ccc;
|
background-color: #ccc;
|
||||||
}
|
}
|
||||||
|
/* IE678 support */
|
||||||
.ie678 h1,
|
.ie678 h1,
|
||||||
.ie678 .h1-like {
|
.ie678 .h1-like {
|
||||||
font-size: 2.28571429em;
|
font-size: 2.28571429em;
|
||||||
|
@ -111,6 +113,7 @@ hr {
|
||||||
behavior: url(/lib/box-sizing-polyfill/boxsizing.htc);
|
behavior: url(/lib/box-sizing-polyfill/boxsizing.htc);
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
/* styling skip links */
|
||||||
.skip-links {
|
.skip-links {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
// Styling boolean
|
// Styling boolean
|
||||||
& when (@styling = true) {
|
& when (@styling = true) {
|
||||||
|
/* styling elements */
|
||||||
code, kbd, mark {
|
code, kbd, mark {
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
@ -66,7 +67,7 @@
|
||||||
|
|
||||||
// IE6, 7, 8 support boolean
|
// IE6, 7, 8 support boolean
|
||||||
& when (@ie678 = true) {
|
& when (@ie678 = true) {
|
||||||
|
/* IE678 support */
|
||||||
.ie678 h1, .ie678 .h1-like {
|
.ie678 h1, .ie678 .h1-like {
|
||||||
.em(@h1-size);
|
.em(@h1-size);
|
||||||
}
|
}
|
||||||
|
@ -117,6 +118,7 @@
|
||||||
|
|
||||||
// skip-links boolean
|
// skip-links boolean
|
||||||
& when (@skip-links = true) {
|
& when (@skip-links = true) {
|
||||||
|
/* styling skip links */
|
||||||
.skip-links {
|
.skip-links {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue