gitlab-org--gitlab-foss/app/assets/stylesheets/reset_bootstrap.scss

43 lines
761 B
SCSS
Raw Normal View History

2012-01-26 22:13:19 +00:00
a {
color: $link_color;
2012-01-28 14:47:55 +00:00
&:hover {
text-decoration:none;
color: $active_link_color;
}
}
2012-01-29 10:04:09 +00:00
.entry {
position: relative;
padding: 7px 15px;
margin-bottom: 18px;
color: #404040;
2012-02-05 11:51:51 +00:00
filter:none;
2012-01-29 10:04:09 +00: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 11:51:51 +00:00
2012-01-29 10:04:09 +00:00
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
2012-02-05 11:51:51 +00:00
2012-01-29 10:04:09 +00: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 11:51:51 +00:00
2012-01-28 14:47:55 +00:00
background:#F1F1F1;
2012-02-05 11:51:51 +00:00
border: 1px solid #ccc;
p {
margin-bottom: 0;
img {
position:relative;
top:3px;
}
}
2012-01-26 22:13:19 +00:00
}
2012-02-05 11:51:51 +00:00
2012-02-05 19:26:04 +00:00
.widget {
padding:20px;
margin-bottom:20px;
}