grub-fork/public/css/styles.css

166 lines
2 KiB
CSS
Raw Normal View History

2013-09-01 10:39:35 +00:00
html, body {
2014-06-29 09:35:35 +00:00
height: 100%;
min-height: 100%;
width: 100%;
min-width: 100%;
margin: 0px;
2013-09-01 10:39:35 +00:00
}
2013-08-25 09:55:25 +00:00
h3 {
2014-06-29 09:35:35 +00:00
margin-top: 10px;
2013-08-25 09:55:25 +00:00
}
.recipes-title {
2014-06-29 09:35:35 +00:00
clear: right;
}
2013-09-30 18:59:55 +00:00
.recipe-list {
2014-06-29 09:35:35 +00:00
margin-top: 10px;
2013-09-30 18:59:55 +00:00
}
#recipe-grubs {
2014-06-29 09:35:35 +00:00
width: 100%;
}
.recipe-add-grubs-btn {
2014-06-29 09:35:35 +00:00
float: right;
clear: both;
margin: 2px;
}
2013-08-25 10:53:47 +00:00
.hidden {
2014-06-29 09:35:35 +00:00
display: none;
2013-08-25 10:53:47 +00:00
}
.leftmost-column {
2014-06-29 09:35:35 +00:00
margin-bottom: 45px;
}
2013-08-04 18:15:56 +00:00
.grub-close {
2014-06-29 09:35:35 +00:00
display: none;
2013-08-04 18:15:56 +00:00
}
tr:hover .grub-close {
2014-06-29 09:35:35 +00:00
display: block;
2013-08-04 18:15:56 +00:00
}
#grub-list {
2014-06-29 09:35:35 +00:00
margin-top: 10px;
margin-bottom: 10px;
}
.add-grub-input-form .input-group-btn {
width: 100%;
}
.grub-item {
2014-06-29 09:35:35 +00:00
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
2013-09-01 10:39:35 +00:00
.grub-item.grub-active {
2014-06-29 09:35:35 +00:00
color: #ffffff;
background-color: rgb(71, 73, 73);
}
2013-09-01 10:39:35 +00:00
.grub-item .input-span {
2014-06-29 09:35:35 +00:00
display: block;
overflow: hidden;
2013-09-01 10:39:35 +00:00
}
.grub-item .grub-static {
2014-06-29 09:35:35 +00:00
display: inline;
2013-09-01 10:39:35 +00:00
}
.grub-item .grub-input {
2014-06-29 09:35:35 +00:00
display: none;
2013-09-01 10:39:35 +00:00
}
.grub-item.edit .grub-static {
2014-06-29 09:35:35 +00:00
display: none;
2013-09-01 10:39:35 +00:00
}
.grub-item.edit .grub-input {
2014-06-29 09:35:35 +00:00
display: inline;
width: 100%;
2013-09-01 10:39:35 +00:00
}
.grub-item .glyphicon {
2014-06-29 09:35:35 +00:00
margin-right: 5px;
2013-09-01 10:39:35 +00:00
}
.completed {
2014-06-29 09:35:35 +00:00
text-decoration: line-through;
color: #a9a9a9;
}
2013-08-25 10:53:47 +00:00
2013-09-01 10:39:35 +00:00
.completed.edit {
2014-06-29 09:35:35 +00:00
text-decoration: none;
color: default;
2013-09-01 10:39:35 +00:00
}
2013-09-30 18:59:55 +00:00
.panel-body {
2014-06-29 09:35:35 +00:00
padding: 10px;
padding-top: 0px;
2013-09-30 18:59:55 +00:00
}
.panel-heading {
2014-06-29 09:35:35 +00:00
background-color: #ffffff;
}
2013-09-05 09:39:10 +00:00
.recipe-panel {
2014-06-29 09:35:35 +00:00
padding: 0px;
margin-bottom: -1px;
2013-09-05 09:39:10 +00:00
}
.recipe-panel > .recipe-header {
2014-06-29 09:35:35 +00:00
background-color: #ffffff;
}
2013-09-05 09:39:10 +00:00
.recipe-header {
2014-06-29 09:35:35 +00:00
margin: 0px;
padding: 0px;
border-bottom: none;
2013-09-05 09:39:10 +00:00
}
.recipe-header-input {
2014-06-29 09:35:35 +00:00
border: none;
box-shadow: none;
transition: none;
border-bottom: none;
width: inherit;
display: inline;
2013-09-05 09:39:10 +00:00
}
.recipe-header-input:focus {
2014-06-29 09:35:35 +00:00
border: none;
box-shadow: none;
transition: none;
outline: none;
2013-09-05 09:39:10 +00:00
}
2013-09-30 18:59:55 +00:00
.recipe-btn {
2014-06-29 09:35:35 +00:00
margin-top: 10px;
2013-09-05 09:39:10 +00:00
}
2013-09-30 18:59:55 +00:00
.recipe-grubs {
2013-09-05 09:39:10 +00:00
}
2013-09-30 18:59:55 +00:00
.recipe-grubs-input {
2014-06-29 09:35:35 +00:00
border: none;
box-shadow: none;
transition: none;
border-bottom: none;
resize: none;
2013-09-05 09:39:10 +00:00
}
2013-09-30 18:59:55 +00:00
.recipe-grubs-input:focus {
2014-06-29 09:35:35 +00:00
border: none;
box-shadow: none;
transition: none;
border-bottom: none;
2013-09-05 09:39:10 +00:00
}