Skip to content

Instantly share code, notes, and snippets.

@neotericdesign
Created August 18, 2010 21:46
Show Gist options
  • Save neotericdesign/536287 to your computer and use it in GitHub Desktop.
Save neotericdesign/536287 to your computer and use it in GitHub Desktop.
/* this: */
#page_actions{
height:35px;
@include fixclear;
@include helvetica-neue;
font-size:13px;
ul{
@include menu;
float:right;
padding:10px;
background:#92373E;
@include border-bottom-radius($radius);
li{
margin-right:20px;
&:last-child{
margin:0;
}
a{
color:#fff;
text-decoration:none;
}
}
}
}
/* turned into this: */
/* line 100, ../../themes/neoteric/stylesheets/screen.scss */
#page_actions {
height: 35px;
overflow: hidden;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 13px;
}
/* line 105, ../../themes/neoteric/stylesheets/screen.scss */
#page_actions ul {
padding: 0;
margin: 0;
list-style-type: none;
overflow: hidden;
float: right;
padding: 10px;
background: #92373E;
-moz-border-radius-bottomleft: 3px;
-webkit-border-bottom-left-radius: 3px;
-o-border-bottom-left-radius: 3px;
-ms-border-bottom-left-radius: 3px;
-khtml-border-bottom-left-radius: 3px;
border-bottom-left-radius: 3px;
-moz-border-radius-bottomright: 3px;
-webkit-border-bottom-right-radius: 3px;
-o-border-bottom-right-radius: 3px;
-ms-border-bottom-right-radius: 3px;
-khtml-border-bottom-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* line 41, ../../themes/neoteric/stylesheets/partials/_base.scss */
#page_actions ul li {
margin: 0;
padding: 0;
float: left;
list-style-type: none;
}
/* line 46, ../../themes/neoteric/stylesheets/partials/_base.scss */
#page_actions ul li a {
display: block;
text-decoration: none;
}
/* line 111, ../../themes/neoteric/stylesheets/screen.scss */
#page_actions ul li {
margin-right: 20px;
}
/* line 113, ../../themes/neoteric/stylesheets/screen.scss */
#page_actions ul li:last-child {
margin: 0;
}
/* line 116, ../../themes/neoteric/stylesheets/screen.scss */
#page_actions ul li a {
color: #fff;
text-decoration: none;
}
@neotericdesign
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment