style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. body {
  2. padding-top: 60px;
  3. /* background-color: #eee; */
  4. }
  5. .form-group {
  6. display: block !important;
  7. }
  8. .list-group-item {
  9. padding: 5px 10px 5px 10px;
  10. }
  11. .nav .btn {
  12. color: #fff;
  13. background-color: #474949;
  14. border-color: #323333;
  15. }
  16. .nav .btn-default:hover, .nav .btn-default:focus, .nav .btn-default:active, .nav .btn-default.active {
  17. background-color: #3a3c3c;
  18. border-color: #2e2f2f;
  19. }
  20. .navbar-collapse .navbar-nav.navbar-right:last-child {
  21. margin-right: 0;
  22. }
  23. #signin {
  24. width: 100%;
  25. }
  26. .profile img {
  27. position: absolute;
  28. height: 48px;
  29. width: 48px;
  30. }
  31. .profile h4 {
  32. padding: 13px 0 10px 60px;
  33. white-space: nowrap;
  34. overflow: hidden;
  35. text-overflow: ellipsis;
  36. }
  37. #filters hr {
  38. margin-top: 15px;
  39. margin-bottom: 5px;
  40. }
  41. #addTaskInput {
  42. width: 100%;
  43. }
  44. #addTaskInput input {
  45. width: 75%;
  46. }
  47. #addTaskInput button {
  48. width: 24%;
  49. }
  50. .tasksHeading {
  51. padding-bottom: 10px;
  52. }
  53. .taskListItem {
  54. padding: 8px 0 8px 5px;
  55. border-bottom: 1px solid #d3d7cf;
  56. }
  57. .completeBox {
  58. height: 28px;
  59. width: 28px;
  60. position: absolute;
  61. margin-top: 5px;
  62. border: 3px solid #00a5e6;
  63. -moz-border-radius: 25%;
  64. border-radius: 25%;
  65. }
  66. .completeBox-warning {
  67. border-color: #fbb03b;
  68. }
  69. .completeBox-danger {
  70. border-color: #a0222a;
  71. }
  72. .taskRowTop {
  73. padding-left: 45px;
  74. cursor: pointer;
  75. }
  76. .text-line {
  77. text-decoration: line-through;
  78. }
  79. .taskRowBottom {
  80. padding: 1px 0 1px 45px;
  81. }
  82. @media (max-width: 768px) {
  83. #filters hr {
  84. margin-top: 2px;
  85. margin-bottom: 10px;
  86. }
  87. #signin {
  88. width: 90%;
  89. }
  90. #addTaskInput input {
  91. width: 100%;
  92. margin-bottom: 15px;
  93. }
  94. #addTaskInput button {
  95. width: 100%;
  96. }
  97. .navbar-brand {
  98. display: block;
  99. float: none;
  100. padding: 15px;
  101. max-width: 200px;
  102. margin: 0 auto;
  103. text-align: center;
  104. }
  105. }
  106. @media (max-width: 480px) {
  107. #filters {
  108. display: none;
  109. }
  110. .tasksHeading {
  111. text-align: center;
  112. margin-top: 5px;
  113. }
  114. }