app.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. html {
  2. background-image: -webkit-linear-gradient(bottom, #F4E2C9 20%, #F4D7C9 100%);
  3. background-image: -ms-linear-gradient(bottom, #F4E2C9 20%, #F4D7C9 100%);
  4. background-image: linear-gradient(to bottom, #F4E2C9 20%, #F4D7C9 100%);
  5. }
  6. html, body {
  7. margin: 0;
  8. padding: 0;
  9. position: relative;
  10. color: #464637;
  11. min-height: 100%;
  12. font-size: 20px;
  13. font-family: 'Roboto', sans-serif;
  14. font-weight: 300;
  15. }
  16. h1 {
  17. color: #FF3F00;
  18. font-size: 20px;
  19. font-family: 'Roboto', sans-serif;
  20. font-weight: 300;
  21. text-align: center;
  22. }
  23. ul {
  24. margin: 0;
  25. padding: 0;
  26. list-style: none;
  27. }
  28. .container {
  29. width: 80%;
  30. margin: auto;
  31. min-width: 1100px;
  32. max-width: 1300px;
  33. position: relative;
  34. }
  35. @media (min-width: 750px) and (max-width: 970px){
  36. .container {
  37. width: 100%;
  38. min-width: 750px;
  39. }
  40. }
  41. .sortable-ghost {
  42. opacity: .2;
  43. }
  44. #foo .sortable-drag {
  45. background: #daf4ff;
  46. }
  47. img {
  48. border: 0;
  49. vertical-align: middle;
  50. }
  51. .logo {
  52. top: 55px;
  53. left: 30px;
  54. position: absolute;
  55. }
  56. .title {
  57. color: #fff;
  58. padding: 3px 10px;
  59. display: inline-block;
  60. position: relative;
  61. background-color: #FF7373;
  62. z-index: 1000;
  63. }
  64. .title_xl {
  65. padding: 3px 15px;
  66. font-size: 40px;
  67. }
  68. .tile {
  69. width: 22%;
  70. min-width: 245px;
  71. color: #FF7270;
  72. padding: 10px 30px;
  73. text-align: center;
  74. margin-top: 15px;
  75. margin-left: 5px;
  76. margin-right: 30px;
  77. background-color: #fff;
  78. display: inline-block;
  79. vertical-align: top;
  80. }
  81. .tile__name {
  82. cursor: move;
  83. padding-bottom: 10px;
  84. border-bottom: 1px solid #FF7373;
  85. }
  86. .tile__list {
  87. margin-top: 10px;
  88. }
  89. .tile__list:last-child {
  90. margin-right: 0;
  91. min-height: 80px;
  92. }
  93. .tile__list img {
  94. cursor: move;
  95. margin: 10px;
  96. border-radius: 100%;
  97. }
  98. .block {
  99. opacity: 1;
  100. position: absolute;
  101. }
  102. .block__list {
  103. padding: 20px 0;
  104. max-width: 360px;
  105. margin-top: -8px;
  106. margin-left: 5px;
  107. background-color: #fff;
  108. }
  109. .block__list-title {
  110. margin: -20px 0 0;
  111. padding: 10px;
  112. text-align: center;
  113. background: #5F9EDF;
  114. }
  115. .block__list li { cursor: move; }
  116. .block__list_words li {
  117. background-color: #fff;
  118. padding: 10px 40px;
  119. }
  120. .block__list_words .sortable-ghost {
  121. opacity: 0.4;
  122. background-color: #F4E2C9;
  123. }
  124. .block__list_words li:first-letter {
  125. text-transform: uppercase;
  126. }
  127. .block__list_tags {
  128. padding-left: 30px;
  129. }
  130. .block__list_tags:after {
  131. clear: both;
  132. content: '';
  133. display: block;
  134. }
  135. .block__list_tags li {
  136. color: #fff;
  137. float: left;
  138. margin: 8px 20px 10px 0;
  139. padding: 5px 10px;
  140. min-width: 10px;
  141. background-color: #5F9EDF;
  142. text-align: center;
  143. }
  144. .block__list_tags li:first-child:first-letter {
  145. text-transform: uppercase;
  146. }
  147. #editable {}
  148. #editable li {
  149. position: relative;
  150. }
  151. #editable i {
  152. -webkit-transition: opacity .2s;
  153. transition: opacity .2s;
  154. opacity: 0;
  155. display: block;
  156. cursor: pointer;
  157. color: #c00;
  158. top: 10px;
  159. right: 40px;
  160. position: absolute;
  161. font-style: normal;
  162. }
  163. #editable li:hover i {
  164. opacity: 1;
  165. }
  166. #filter {}
  167. #filter button {
  168. color: #fff;
  169. width: 100%;
  170. border: none;
  171. outline: 0;
  172. opacity: .5;
  173. margin: 10px 0 0;
  174. transition: opacity .1s ease;
  175. cursor: pointer;
  176. background: #5F9EDF;
  177. padding: 10px 0;
  178. font-size: 20px;
  179. }
  180. #filter button:hover {
  181. opacity: 1;
  182. }
  183. #filter .block__list {
  184. padding-bottom: 0;
  185. }
  186. .drag-handle {
  187. margin-right: 10px;
  188. font: bold 20px Sans-Serif;
  189. color: #5F9EDF;
  190. display: inline-block;
  191. cursor: move;
  192. cursor: -webkit-grabbing; /* overrides 'move' */
  193. }
  194. #todos input {
  195. padding: 5px;
  196. font-size: 14px;
  197. font-family: 'Roboto', sans-serif;
  198. font-weight: 300;
  199. }
  200. #nested ul li {
  201. background-color: rgba(0,0,0,.05);
  202. }