habitica/app/assets/stylesheets/habits.css.scss

26 lines
615 B
SCSS
Raw Normal View History

2012-02-01 04:09:00 +00:00
// Place all the styles related to the Habits controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
2012-02-01 15:50:52 +00:00
.bad { background-color:rgb(224, 102, 102); }
.iffy { background-color:rgb(246, 178, 107); }
.ok { background-color:rgb(255, 217, 102); }
.good { background-color:rgb(147, 196, 125); }
2012-02-01 18:55:53 +00:00
.done { background-color:rgb(201, 218, 248); }
2012-02-03 22:27:58 +00:00
.habit {
2012-02-01 18:55:53 +00:00
list-style:none;
2012-02-03 22:27:58 +00:00
border: 1px solid black;
margin: 2px;
padding: 1px;
2012-02-01 18:55:53 +00:00
}
2012-02-01 21:55:33 +00:00
2012-02-03 22:27:58 +00:00
.habit:hover {
2012-02-01 21:55:33 +00:00
cursor: move;
2012-02-03 00:26:33 +00:00
}
.up, .down, .check {
text-decoration:none;
}
.up, .down { font-weight: bold; }