style.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. .profile img {
  24. position: absolute;
  25. height: 48px;
  26. width: 48px;
  27. }
  28. .profile h4 {
  29. padding: 13px 0 10px 60px;
  30. white-space: nowrap;
  31. overflow: hidden;
  32. text-overflow: ellipsis;
  33. }
  34. #filters hr {
  35. margin-top: 15px;
  36. margin-bottom: 5px;
  37. }
  38. #addTaskInput {
  39. width: 100%;
  40. }
  41. #addTaskInput input {
  42. width: 75%;
  43. }
  44. #addTaskInput button {
  45. width: 24%;
  46. }
  47. .tasksHeading {
  48. padding-bottom: 10px;
  49. }
  50. .taskList {
  51. padding-top: 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. .taskRowTop {
  67. padding-left: 45px;
  68. cursor: pointer;
  69. }
  70. .taskRowBottom {
  71. padding: 1px 0 1px 45px;
  72. }
  73. @media (max-width: 768px) {
  74. #filters hr {
  75. margin-top: 2px;
  76. margin-bottom: 10px;
  77. }
  78. #signin {
  79. width: 90%;
  80. }
  81. #addTaskInput input {
  82. width: 100%;
  83. margin-bottom: 15px;
  84. }
  85. #addTaskInput button {
  86. width: 100%;
  87. }
  88. .navbar-brand {
  89. display: block;
  90. float: none;
  91. padding: 15px;
  92. max-width: 200px;
  93. margin: 0 auto;
  94. text-align: center;
  95. }
  96. }
  97. @media (max-width: 480px) {
  98. #filters {
  99. display: none;
  100. }
  101. .tasksHeading {
  102. text-align: center;
  103. margin-top: 5px;
  104. }
  105. }