gitlabhq/app/assets/stylesheets/reset_bootstrap.scss

43 lines
761 B
SCSS
Raw Normal View History

2012-01-26 23:13:19 +01:00
a {
color: $link_color;
2012-01-28 15:47:55 +01:00
&:hover {
text-decoration:none;
color: $active_link_color;
}
}
2012-01-29 11:04:09 +01:00
.entry {
position: relative;
padding: 7px 15px;
margin-bottom: 18px;
color: #404040;
2012-02-05 12:51:51 +01:00
filter:none;
2012-01-29 11:04:09 +01:00
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2012-02-05 12:51:51 +01:00
2012-01-29 11:04:09 +01:00
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
2012-02-05 12:51:51 +01:00
2012-01-29 11:04:09 +01:00
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2012-02-05 12:51:51 +01:00
2012-01-28 15:47:55 +01:00
background:#F1F1F1;
2012-02-05 12:51:51 +01:00
border: 1px solid #ccc;
p {
margin-bottom: 0;
img {
position:relative;
top:3px;
}
}
2012-01-26 23:13:19 +01:00
}
2012-02-05 12:51:51 +01:00
2012-02-05 20:26:04 +01:00
.widget {
padding:20px;
margin-bottom:20px;
}