You are here

vue-todo.css in Decoupled Blocks: Vue.js 8

[v-cloak] { display: none; }

.vue-todo {
  font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.4em;
  background: #f5f5f5;
  color: #4d4d4d;
  min-width: 230px;
  max-width: 550px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  box-sizing: content-box;
}

.vue-todo button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 100%;
  vertical-align: baseline;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vue-todo :focus {
  outline: 0;
}

.vue-todo .hidden {
  display: none;
}

.todoapp {
  background: #fff;
  margin: 130px 0 40px 0;
  position: relative;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
  0 25px 50px 0 rgba(0, 0, 0, 0.1);
}

.todoapp input {
  box-shadow: none;
  height: inherit;
}

.todoapp label {
  font-weight: normal;
}

.todoapp input::-webkit-input-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #e6e6e6;
}

.todoapp input::-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #e6e6e6;
}

.todoapp input::input-placeholder {
  font-style: italic;
  font-weight: 300;
  color: #e6e6e6;
}

.todoapp h1 {
  position: absolute;
  top: -155px;
  width: 100%;
  font-size: 100px;
  font-weight: 100;
  text-align: center;
  color: rgba(175, 47, 47, 0.15);
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
}

.vue-todo .new-todo,
.vue-todo .edit {
  position: relative;
  margin: 0;
  width: 100%;
  font-size: 24px;
  font-family: inherit;
  font-weight: inherit;
  line-height: 1.4em;
  border: 0;
  color: inherit;
  padding: 6px;
  border: 1px solid #999;
  box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vue-todo .new-todo {
  padding: 16px 16px 16px 60px;
  border: none;
  background: rgba(0, 0, 0, 0.003);
  box-shadow: inset 0 -2px 1px rgba(0,0,0,0.03);
}

.vue-todo .main {
  position: relative;
  z-index: 2;
  border-top: 1px solid #e6e6e6;
}

.vue-todo label[for='toggle-all'] {
  display: none;
}

.vue-todo .toggle-all {
  position: absolute;
  top: -55px;
  left: -12px;
  width: 60px;
  height: 34px;
  text-align: center;
  border: none; /* Mobile Safari */
}

.vue-todo .toggle-all:before {
  content: '❯';
  font-size: 22px;
  color: #e6e6e6;
  padding: 10px 27px 10px 27px;
}

.vue-todo .toggle-all:checked:before {
  color: #737373;
}

.todo-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.todo-list li {
  position: relative;
  font-size: 24px;
  border-bottom: 1px solid #ededed;
}

.todo-list li:last-child {
  border-bottom: none;
}

.todo-list li.editing {
  border-bottom: none;
  padding: 0;
}

.todo-list li.editing .edit {
  display: block;
  width: 506px;
  padding: 12px 16px;
  margin: 0 0 0 43px;
}

.todo-list li.editing .view {
  display: none;
}

.todo-list li .toggle {
  text-align: center;
  width: 40px;
  /* auto, since non-WebKit browsers doesn't support input styling */
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border: none; /* Mobile Safari */
  -webkit-appearance: none;
  appearance: none;
}

.todo-list li .toggle:after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#ededed" stroke-width="3"/></svg>');
}

.todo-list li .toggle:checked:after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#bddad5" stroke-width="3"/><path fill="#5dc2af" d="M72 25L42 71 27 56l-4 4 20 20 34-52z"/></svg>');
}

.todo-list li label {
  word-break: break-all;
  padding: 15px 60px 15px 15px;
  margin-left: 45px;
  display: block;
  line-height: 1.2;
  transition: color 0.4s;
}

.todo-list li.completed label {
  color: #d9d9d9;
  text-decoration: line-through;
}

.todo-list li .destroy {
  display: none;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto 0;
  font-size: 30px;
  color: #cc9a9a;
  margin-bottom: 11px;
  transition: color 0.2s ease-out;
}

.todo-list li .destroy:hover {
  color: #af5b5e;
}

.todo-list li .destroy:after {
  content: '×';
}

.todo-list li:hover .destroy {
  display: block;
}

.todo-list li .edit {
  display: none;
}

.todo-list li.editing:last-child {
  margin-bottom: -1px;
}

.todo-footer {
  color: #777;
  padding: 10px 15px;
  height: 20px;
  text-align: center;
  border-top: 1px solid #e6e6e6;
}

.todo-footer:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2),
  0 8px 0 -3px #f6f6f6,
  0 9px 1px -3px rgba(0, 0, 0, 0.2),
  0 16px 0 -6px #f6f6f6,
  0 17px 2px -6px rgba(0, 0, 0, 0.2);
}

.todo-count {
  float: left;
  text-align: left;
}

.todo-count strong {
  font-weight: 300;
}

.vue-todo .filters {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 0;
  left: 0;
}

.vue-todo .filters li {
  display: inline;
}

.vue-todo .filters li a {
  color: inherit;
  margin: 3px;
  padding: 3px 7px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
}

.vue-todo .filters li a:hover {
  border-color: rgba(175, 47, 47, 0.1);
}

.vue-todo .filters li a.selected {
  border-color: rgba(175, 47, 47, 0.2);
}

.vue-todo .clear-completed,
.vue-todo .clear-completed:active {
  float: right;
  position: relative;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
}

.vue-todo .clear-completed:hover {
  text-decoration: underline;
}

.vue-todo .info {
  margin: 65px auto 0;
  color: #bfbfbf;
  font-size: 10px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-align: center;
}

.vue-todo .info p {
  line-height: 1;
}

.vue-todo .info a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}

.vue-todo .info a:hover {
  text-decoration: underline;
}

/*
	Hack to remove background from Mobile Safari.
	Can't use it globally since it destroys checkboxes in Firefox
*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .vue-todo .toggle-all,
  .todo-list li .toggle {
    background: none;
  }

  .todo-list li .toggle {
    height: 40px;
  }

  .vue-todo .toggle-all {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-appearance: none;
    appearance: none;
  }
}

@media (max-width: 430px) {
  .todo-footer {
    height: 50px;
  }

  .vue-todo .filters {
    bottom: 10px;
  }
}

File

components/vue_todo/vue-todo.css
View source
  1. [v-cloak] { display: none; }
  2. .vue-todo {
  3. font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
  4. line-height: 1.4em;
  5. background: #f5f5f5;
  6. color: #4d4d4d;
  7. min-width: 230px;
  8. max-width: 550px;
  9. margin: 0 auto;
  10. -webkit-font-smoothing: antialiased;
  11. -moz-osx-font-smoothing: grayscale;
  12. font-weight: 300;
  13. box-sizing: content-box;
  14. }
  15. .vue-todo button {
  16. margin: 0;
  17. padding: 0;
  18. border: 0;
  19. background: none;
  20. font-size: 100%;
  21. vertical-align: baseline;
  22. font-family: inherit;
  23. font-weight: inherit;
  24. color: inherit;
  25. -webkit-appearance: none;
  26. appearance: none;
  27. -webkit-font-smoothing: antialiased;
  28. -moz-osx-font-smoothing: grayscale;
  29. }
  30. .vue-todo :focus {
  31. outline: 0;
  32. }
  33. .vue-todo .hidden {
  34. display: none;
  35. }
  36. .todoapp {
  37. background: #fff;
  38. margin: 130px 0 40px 0;
  39. position: relative;
  40. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
  41. 0 25px 50px 0 rgba(0, 0, 0, 0.1);
  42. }
  43. .todoapp input {
  44. box-shadow: none;
  45. height: inherit;
  46. }
  47. .todoapp label {
  48. font-weight: normal;
  49. }
  50. .todoapp input::-webkit-input-placeholder {
  51. font-style: italic;
  52. font-weight: 300;
  53. color: #e6e6e6;
  54. }
  55. .todoapp input::-moz-placeholder {
  56. font-style: italic;
  57. font-weight: 300;
  58. color: #e6e6e6;
  59. }
  60. .todoapp input::input-placeholder {
  61. font-style: italic;
  62. font-weight: 300;
  63. color: #e6e6e6;
  64. }
  65. .todoapp h1 {
  66. position: absolute;
  67. top: -155px;
  68. width: 100%;
  69. font-size: 100px;
  70. font-weight: 100;
  71. text-align: center;
  72. color: rgba(175, 47, 47, 0.15);
  73. -webkit-text-rendering: optimizeLegibility;
  74. -moz-text-rendering: optimizeLegibility;
  75. text-rendering: optimizeLegibility;
  76. }
  77. .vue-todo .new-todo,
  78. .vue-todo .edit {
  79. position: relative;
  80. margin: 0;
  81. width: 100%;
  82. font-size: 24px;
  83. font-family: inherit;
  84. font-weight: inherit;
  85. line-height: 1.4em;
  86. border: 0;
  87. color: inherit;
  88. padding: 6px;
  89. border: 1px solid #999;
  90. box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
  91. box-sizing: border-box;
  92. -webkit-font-smoothing: antialiased;
  93. -moz-osx-font-smoothing: grayscale;
  94. }
  95. .vue-todo .new-todo {
  96. padding: 16px 16px 16px 60px;
  97. border: none;
  98. background: rgba(0, 0, 0, 0.003);
  99. box-shadow: inset 0 -2px 1px rgba(0,0,0,0.03);
  100. }
  101. .vue-todo .main {
  102. position: relative;
  103. z-index: 2;
  104. border-top: 1px solid #e6e6e6;
  105. }
  106. .vue-todo label[for='toggle-all'] {
  107. display: none;
  108. }
  109. .vue-todo .toggle-all {
  110. position: absolute;
  111. top: -55px;
  112. left: -12px;
  113. width: 60px;
  114. height: 34px;
  115. text-align: center;
  116. border: none; /* Mobile Safari */
  117. }
  118. .vue-todo .toggle-all:before {
  119. content: '❯';
  120. font-size: 22px;
  121. color: #e6e6e6;
  122. padding: 10px 27px 10px 27px;
  123. }
  124. .vue-todo .toggle-all:checked:before {
  125. color: #737373;
  126. }
  127. .todo-list {
  128. margin: 0;
  129. padding: 0;
  130. list-style: none;
  131. }
  132. .todo-list li {
  133. position: relative;
  134. font-size: 24px;
  135. border-bottom: 1px solid #ededed;
  136. }
  137. .todo-list li:last-child {
  138. border-bottom: none;
  139. }
  140. .todo-list li.editing {
  141. border-bottom: none;
  142. padding: 0;
  143. }
  144. .todo-list li.editing .edit {
  145. display: block;
  146. width: 506px;
  147. padding: 12px 16px;
  148. margin: 0 0 0 43px;
  149. }
  150. .todo-list li.editing .view {
  151. display: none;
  152. }
  153. .todo-list li .toggle {
  154. text-align: center;
  155. width: 40px;
  156. /* auto, since non-WebKit browsers doesn't support input styling */
  157. height: auto;
  158. position: absolute;
  159. top: 0;
  160. bottom: 0;
  161. margin: auto 0;
  162. border: none; /* Mobile Safari */
  163. -webkit-appearance: none;
  164. appearance: none;
  165. }
  166. .todo-list li .toggle:after {
  167. content: url('data:image/svg+xml;utf8,');
  168. }
  169. .todo-list li .toggle:checked:after {
  170. content: url('data:image/svg+xml;utf8,');
  171. }
  172. .todo-list li label {
  173. word-break: break-all;
  174. padding: 15px 60px 15px 15px;
  175. margin-left: 45px;
  176. display: block;
  177. line-height: 1.2;
  178. transition: color 0.4s;
  179. }
  180. .todo-list li.completed label {
  181. color: #d9d9d9;
  182. text-decoration: line-through;
  183. }
  184. .todo-list li .destroy {
  185. display: none;
  186. position: absolute;
  187. top: 0;
  188. right: 10px;
  189. bottom: 0;
  190. width: 40px;
  191. height: 40px;
  192. margin: auto 0;
  193. font-size: 30px;
  194. color: #cc9a9a;
  195. margin-bottom: 11px;
  196. transition: color 0.2s ease-out;
  197. }
  198. .todo-list li .destroy:hover {
  199. color: #af5b5e;
  200. }
  201. .todo-list li .destroy:after {
  202. content: '×';
  203. }
  204. .todo-list li:hover .destroy {
  205. display: block;
  206. }
  207. .todo-list li .edit {
  208. display: none;
  209. }
  210. .todo-list li.editing:last-child {
  211. margin-bottom: -1px;
  212. }
  213. .todo-footer {
  214. color: #777;
  215. padding: 10px 15px;
  216. height: 20px;
  217. text-align: center;
  218. border-top: 1px solid #e6e6e6;
  219. }
  220. .todo-footer:before {
  221. content: '';
  222. position: absolute;
  223. right: 0;
  224. bottom: 0;
  225. left: 0;
  226. height: 50px;
  227. overflow: hidden;
  228. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2),
  229. 0 8px 0 -3px #f6f6f6,
  230. 0 9px 1px -3px rgba(0, 0, 0, 0.2),
  231. 0 16px 0 -6px #f6f6f6,
  232. 0 17px 2px -6px rgba(0, 0, 0, 0.2);
  233. }
  234. .todo-count {
  235. float: left;
  236. text-align: left;
  237. }
  238. .todo-count strong {
  239. font-weight: 300;
  240. }
  241. .vue-todo .filters {
  242. margin: 0;
  243. padding: 0;
  244. list-style: none;
  245. position: absolute;
  246. right: 0;
  247. left: 0;
  248. }
  249. .vue-todo .filters li {
  250. display: inline;
  251. }
  252. .vue-todo .filters li a {
  253. color: inherit;
  254. margin: 3px;
  255. padding: 3px 7px;
  256. text-decoration: none;
  257. border: 1px solid transparent;
  258. border-radius: 3px;
  259. }
  260. .vue-todo .filters li a:hover {
  261. border-color: rgba(175, 47, 47, 0.1);
  262. }
  263. .vue-todo .filters li a.selected {
  264. border-color: rgba(175, 47, 47, 0.2);
  265. }
  266. .vue-todo .clear-completed,
  267. .vue-todo .clear-completed:active {
  268. float: right;
  269. position: relative;
  270. line-height: 20px;
  271. text-decoration: none;
  272. cursor: pointer;
  273. }
  274. .vue-todo .clear-completed:hover {
  275. text-decoration: underline;
  276. }
  277. .vue-todo .info {
  278. margin: 65px auto 0;
  279. color: #bfbfbf;
  280. font-size: 10px;
  281. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  282. text-align: center;
  283. }
  284. .vue-todo .info p {
  285. line-height: 1;
  286. }
  287. .vue-todo .info a {
  288. color: inherit;
  289. text-decoration: none;
  290. font-weight: 400;
  291. }
  292. .vue-todo .info a:hover {
  293. text-decoration: underline;
  294. }
  295. /*
  296. Hack to remove background from Mobile Safari.
  297. Can't use it globally since it destroys checkboxes in Firefox
  298. */
  299. @media screen and (-webkit-min-device-pixel-ratio:0) {
  300. .vue-todo .toggle-all,
  301. .todo-list li .toggle {
  302. background: none;
  303. }
  304. .todo-list li .toggle {
  305. height: 40px;
  306. }
  307. .vue-todo .toggle-all {
  308. -webkit-transform: rotate(90deg);
  309. transform: rotate(90deg);
  310. -webkit-appearance: none;
  311. appearance: none;
  312. }
  313. }
  314. @media (max-width: 430px) {
  315. .todo-footer {
  316. height: 50px;
  317. }
  318. .vue-todo .filters {
  319. bottom: 10px;
  320. }
  321. }