main.css 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. body {
  2. font-family: sans-serif;
  3. background-color: #315481;
  4. background-image: linear-gradient(to bottom, #315481, #918e82 100%);
  5. background-attachment: fixed;
  6. position: absolute;
  7. top: 0;
  8. bottom: 0;
  9. left: 0;
  10. right: 0;
  11. padding: 0;
  12. margin: 0;
  13. font-size: 14px;
  14. }
  15. .container {
  16. max-width: 600px;
  17. margin: 0 auto;
  18. min-height: 100%;
  19. background: white;
  20. }
  21. header {
  22. background: #d2edf4;
  23. background-image: linear-gradient(to bottom, #d0edf5, #e1e5f0 100%);
  24. padding: 20px 15px 15px 15px;
  25. position: relative;
  26. }
  27. #login-buttons {
  28. display: block;
  29. }
  30. h1 {
  31. font-size: 1.5em;
  32. margin: 0;
  33. margin-bottom: 10px;
  34. display: inline-block;
  35. margin-right: 1em;
  36. }
  37. form {
  38. margin-top: 10px;
  39. margin-bottom: -10px;
  40. position: relative;
  41. }
  42. .new-task input {
  43. box-sizing: border-box;
  44. padding: 10px 0;
  45. background: transparent;
  46. border: none;
  47. width: 100%;
  48. padding-right: 80px;
  49. font-size: 1em;
  50. }
  51. .new-task input:focus{
  52. outline: 0;
  53. }
  54. ul {
  55. margin: 0;
  56. padding: 0;
  57. background: white;
  58. }
  59. .delete {
  60. float: right;
  61. font-weight: bold;
  62. background: none;
  63. font-size: 1em;
  64. border: none;
  65. position: relative;
  66. }
  67. li {
  68. position: relative;
  69. list-style: none;
  70. padding: 15px;
  71. border-bottom: #eee solid 1px;
  72. }
  73. li .text {
  74. margin-left: 10px;
  75. }
  76. li.checked {
  77. color: #888;
  78. }
  79. li.checked .text {
  80. text-decoration: line-through;
  81. }
  82. li.private {
  83. background: #eee;
  84. border-color: #ddd;
  85. }
  86. header .hide-completed {
  87. float: right;
  88. }
  89. .toggle-private {
  90. margin-left: 5px;
  91. }
  92. @media (max-width: 600px) {
  93. li {
  94. padding: 12px 15px;
  95. }
  96. .search {
  97. width: 150px;
  98. clear: both;
  99. }
  100. .new-task input {
  101. padding-bottom: 5px;
  102. }
  103. }