habitica/styles/habits.styl

101 lines
1.9 KiB
Stylus
Raw Normal View History

2012-06-25 23:56:08 +00:00
.color-worst { background-color: rgb(230, 184, 175); }
.color-worse { background-color: rgb(244, 204, 204); }
.color-bad { background-color: rgb(252, 229, 205); }
.color-neutral { background-color: rgb(255, 242, 204); }
.color-good { background-color: rgb(217, 234, 211); }
.color-better { background-color: rgb(208, 224, 227); }
.color-best { background-color: rgb(201, 218, 248); }
.done { background-color: rgb(217, 217, 217); color: rgb(153, 153, 153); }
.reward { background-color: white; }
.task {
2012-06-25 23:56:08 +00:00
list-style:none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid black;
margin-bottom: 5px;
padding:5px;
text-shadow:none;
}
.task:hover {
2012-06-25 23:56:08 +00:00
cursor: move;
}
.task-controls, .task-text {
display:inline;
2012-06-26 12:25:52 +00:00
margin-right:10px;
}
.task-meta { float:right; }
.task-meta .edit-link {
display: none;
}
2012-06-25 23:56:08 +00:00
.vote-up, .vote-down {
text-decoration:none;
}
.buy-link {
background-color:#DEE5F2;
padding:2px;
margin-right:10px;
border-radius: 5px;
}
.buy-link img {
height:20px;
}
.container {
margin: 0 auto;
width: 920px;
}
#header {
background: #FAFAFA;
background: -moz-linear-gradient(#FAFAFA,#EAEAEA);
background: -webkit-linear-gradient(#FAFAFA,#EAEAEA);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa',endColorstr='#eaeaea')";
position: relative;
z-index: 10;
border-bottom: 1px solid #CACACA;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4),0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
}
#top-links {
float:right;
}
#character img {
height: 60px;
}
#character td {
text-align: center;
}
#tnl-bar { border: 1px solid black; background-color:white; margin-top:10px;}
#tnl { float:right; margin:5px; }
#hp-bar { border: 1px solid black; background-color:white;}
#hp { float:right; margin:5px; }
#money { float:right; }
li:hover .task-meta .edit-link {
2012-06-25 23:56:08 +00:00
display: inline;
}
#wrapper {
padding: 0 20px 20px 20px;
}
#footer {
clear:both;
}