| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- body {
- padding-top: 60px;
- /* background-color: #eee; */
- }
- .form-group {
- display: block !important;
- }
- .list-group-item {
- padding: 5px 10px 5px 10px;
- }
- .nav .btn {
- color: #fff;
- background-color: #474949;
- border-color: #323333;
- }
- .nav .btn-default:hover, .nav .btn-default:focus, .nav .btn-default:active, .nav .btn-default.active {
- background-color: #3a3c3c;
- border-color: #2e2f2f;
- }
- .navbar-collapse .navbar-nav.navbar-right:last-child {
- margin-right: 0;
- }
- #signin {
- width: 100%;
- }
- .profile img {
- position: absolute;
- height: 48px;
- width: 48px;
- }
- .profile h4 {
- padding: 13px 0 10px 60px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- #filters hr {
- margin-top: 15px;
- margin-bottom: 5px;
- }
- #addTaskInput {
- width: 100%;
- }
- #addTaskInput input {
- width: 75%;
- }
- #addTaskInput button {
- width: 24%;
- }
- .tasksHeading {
- padding-bottom: 10px;
- }
- .taskListItem {
- padding: 8px 0 8px 5px;
- border-bottom: 1px solid #d3d7cf;
- }
- .completeBox {
- height: 28px;
- width: 28px;
- position: absolute;
- margin-top: 5px;
- border: 3px solid #00a5e6;
- -moz-border-radius: 25%;
- border-radius: 25%;
- }
- .taskRowTop {
- padding-left: 45px;
- cursor: pointer;
- }
- .text-line {
- text-decoration: line-through;
- }
- .taskRowBottom {
- padding: 1px 0 1px 45px;
- }
- @media (max-width: 768px) {
- #filters hr {
- margin-top: 2px;
- margin-bottom: 10px;
- }
- #signin {
- width: 90%;
- }
- #addTaskInput input {
- width: 100%;
- margin-bottom: 15px;
- }
- #addTaskInput button {
- width: 100%;
- }
- .navbar-brand {
- display: block;
- float: none;
- padding: 15px;
- max-width: 200px;
- margin: 0 auto;
- text-align: center;
- }
- }
- @media (max-width: 480px) {
- #filters {
- display: none;
- }
- .tasksHeading {
- text-align: center;
- margin-top: 5px;
- }
- }
|