style.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. #signin {
  21. width: 100%;
  22. }
  23. #filters hr {
  24. margin-top: 15px;
  25. margin-bottom: 5px;
  26. }
  27. #addTaskInput {
  28. width: 100%;
  29. }
  30. #addTaskInput input {
  31. width: 75%;
  32. }
  33. #addTaskInput button {
  34. width: 24%;
  35. }
  36. .tasksHeading {
  37. padding-bottom: 10px;
  38. }
  39. .taskList {
  40. padding-top: 10px;
  41. }
  42. .taskListItem {
  43. padding: 8px 0 8px 5px;
  44. border-bottom: 1px solid #d3d7cf;
  45. }
  46. .completeBox {
  47. height: 28px;
  48. width: 28px;
  49. position: absolute;
  50. margin-top: 5px;
  51. border: 3px solid #00a5e6;
  52. -moz-border-radius: 25%;
  53. border-radius: 25%;
  54. }
  55. .taskRowTop {
  56. padding-left: 45px;
  57. cursor: pointer;
  58. }
  59. .taskRowBottom {
  60. padding: 1px 0 1px 45px;
  61. }
  62. @media (max-width: 768px) {
  63. #filters hr {
  64. margin-top: 2px;
  65. margin-bottom: 10px;
  66. }
  67. #signin {
  68. width: 90%;
  69. }
  70. #addTaskInput input {
  71. width: 100%;
  72. margin-bottom: 15px;
  73. }
  74. #addTaskInput button {
  75. width: 100%;
  76. }
  77. .navbar-brand {
  78. display: block;
  79. float: none;
  80. padding: 15px;
  81. max-width: 200px;
  82. margin: 0 auto;
  83. text-align: center;
  84. }
  85. }
  86. @media (max-width: 480px) {
  87. #filters {
  88. display: none;
  89. }
  90. .tasksHeading {
  91. text-align: center;
  92. margin-top: 5px;
  93. }
  94. }