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
|
|
|
|
2012-02-04 17:15:12 +00:00
|
|
|
.bad, .bad a{
|
|
|
|
|
background-color:rgb(224, 102, 102);
|
|
|
|
|
color:white !important;
|
|
|
|
|
}
|
2012-02-01 15:50:52 +00:00
|
|
|
.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:34:55 +00:00
|
|
|
.panel {
|
|
|
|
|
vertical-align:top;
|
2012-02-04 16:44:00 +00:00
|
|
|
min-width: 300px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel ul {
|
|
|
|
|
padding:0px;
|
2012-02-04 17:15:12 +00:00
|
|
|
margin-left:0px;
|
2012-02-03 22:34:55 +00:00
|
|
|
}
|
|
|
|
|
|
2012-02-04 22:03:22 +00:00
|
|
|
.habit, .reward {
|
2012-02-01 18:55:53 +00:00
|
|
|
list-style:none;
|
2012-02-04 16:44:00 +00:00
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
border-radius: 3px;
|
2012-02-03 22:27:58 +00:00
|
|
|
border: 1px solid black;
|
2012-02-04 16:44:00 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
|
padding:5px;
|
2012-02-04 17:15:12 +00:00
|
|
|
text-shadow:none;
|
2012-02-01 18:55:53 +00:00
|
|
|
}
|
2012-02-01 21:55:33 +00:00
|
|
|
|
2012-02-04 22:03:22 +00:00
|
|
|
.habit:hover, .reward: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;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-04 17:29:23 +00:00
|
|
|
.up, .down { font-weight: bold; }
|
|
|
|
|
|
|
|
|
|
.edit { float:right; }
|
2012-02-04 17:55:16 +00:00
|
|
|
|
|
|
|
|
#progressbar { margin-top: 20px; }
|
|
|
|
|
|
|
|
|
|
#tnl { float:right; margin:5px; }
|
2012-02-04 18:59:07 +00:00
|
|
|
|
|
|
|
|
#money { float:right; }
|