Advertisement
Guest User

Meteor For Everyone

a guest
Feb 17th, 2015
5,119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.26 KB | None | 0 0
  1. html {
  2.   box-sizing: border-box;
  3. }
  4.  
  5. *, *:before, *:after {
  6.   box-sizing: inherit;
  7. }
  8.  
  9.  
  10. body {
  11.   font-family: sans-serif;
  12.   font-size: 16px;
  13.   background: #333;
  14. }
  15.  
  16. .container {
  17.   max-width: 900px;
  18.   margin: 0 auto;
  19.   min-height: 100%;
  20.   background: white;
  21.   box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  22. }
  23.  
  24. header {
  25.   padding: 20px 15px 15px 15px;
  26.   position: relative;
  27. }
  28.  
  29. h1 {
  30.   font-size: 2em;
  31.   margin: 0;
  32.   margin-bottom: 10px;
  33.   display: inline-block;
  34.   margin-right: 1em;
  35. }
  36.  
  37. .new-resolution input[type="text"] {
  38.   padding: 10px 0;
  39.   background: transparent;
  40.   border: none;
  41.   width: 50%;
  42.   padding-right: 80px;
  43.   font-size: 1em;
  44.   border-bottom: 1px solid rgba(0,0,0,0.3);
  45. }
  46.  
  47. .new-resolution input:focus{
  48.   outline: 0;
  49. }
  50.  
  51. ul {
  52.   margin: 0;
  53.   padding: 0;
  54.   background: white;
  55. }
  56.  
  57. .delete {
  58.   float: right;
  59.   font-weight: bold;
  60.   background: #DE4F4F;
  61.   color: #FFF;
  62.   font-size: 1em;
  63.   padding: 5px 10px;
  64.   border: none;
  65.   border-radius: 4px;;
  66. }
  67.  
  68. li {
  69.   position: relative;
  70.   list-style: none;
  71.   padding: 20px 15px;
  72.   border-bottom: #eee solid 1px;
  73. }
  74.  
  75. li .text {
  76.   margin-left: 10px;
  77. }
  78.  
  79. li.checked {
  80.   color: #888;
  81. }
  82.  
  83. li.checked .text {
  84.   text-decoration: line-through;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement