angular-docs-cn/public/resources/css/module/_code-box.scss

41 lines
750 B
SCSS
Raw Normal View History

2015-04-22 08:33:17 -04:00
.code-box {
2015-04-22 09:59:02 -04:00
border-radius: 4px;
2015-12-11 21:49:31 -05:00
background: $lightgrey;
// box-shadow: 0px 2px 5px rgba($coal, .3);
2015-04-22 10:17:26 -04:00
margin-bottom: $unit * 2;
2015-04-22 08:33:17 -04:00
2015-04-22 09:59:02 -04:00
header {
2015-12-11 21:49:31 -05:00
background: $fog;
2015-04-22 09:59:02 -04:00
color: $snow;
2015-12-11 21:49:31 -05:00
padding: $unit $unit 0px $unit;
2015-04-22 09:59:02 -04:00
border-radius: 4px 4px 0px 0px;
2015-04-22 08:33:17 -04:00
}
nav {
2015-04-22 09:59:02 -04:00
button {
2015-12-11 21:49:31 -05:00
line-height: $unit * 3.5;
height: $unit * 3.5;
2015-04-22 09:59:02 -04:00
padding: 0px ($unit * 3);
margin-right: $unit;
font-size: 13px;
2015-12-11 21:49:31 -05:00
background: $grey;
color: $snow;
border-radius: 4px 4px 0px 0px;
// font-weight: 500;
text-transform: none;
2015-04-22 08:33:17 -04:00
2015-05-02 18:34:16 -04:00
&.is-selected,
&.selected
{
2015-12-11 21:49:31 -05:00
background: $lightgrey;
color: $darkgrey;
2015-04-22 09:59:02 -04:00
}
2015-04-22 08:33:17 -04:00
}
}
2015-04-22 09:59:02 -04:00
.prettyprint {
box-shadow: none;
margin: 0px;
}
2015-12-11 21:49:31 -05:00
}