Youtube music and video downloader

main.css 1.9KB

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