style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. .taskList {
  54. padding-top: 10px;
  55. }
  56. .taskListItem {
  57. padding: 8px 0 8px 5px;
  58. border-bottom: 1px solid #d3d7cf;
  59. }
  60. .completeBox {
  61. height: 28px;
  62. width: 28px;
  63. position: absolute;
  64. margin-top: 5px;
  65. border: 3px solid #00a5e6;
  66. -moz-border-radius: 25%;
  67. border-radius: 25%;
  68. }
  69. .taskRowTop {
  70. padding-left: 45px;
  71. cursor: pointer;
  72. }
  73. .taskRowBottom {
  74. padding: 1px 0 1px 45px;
  75. }
  76. @media (max-width: 768px) {
  77. #filters hr {
  78. margin-top: 2px;
  79. margin-bottom: 10px;
  80. }
  81. #signin {
  82. width: 90%;
  83. }
  84. #addTaskInput input {
  85. width: 100%;
  86. margin-bottom: 15px;
  87. }
  88. #addTaskInput button {
  89. width: 100%;
  90. }
  91. .navbar-brand {
  92. display: block;
  93. float: none;
  94. padding: 15px;
  95. max-width: 200px;
  96. margin: 0 auto;
  97. text-align: center;
  98. }
  99. }
  100. @media (max-width: 480px) {
  101. #filters {
  102. display: none;
  103. }
  104. .tasksHeading {
  105. text-align: center;
  106. margin-top: 5px;
  107. }
  108. }