You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

286 lines
4.3 KiB

  1. html,
  2. body {
  3. /*font-family: arial, 'Open Sans', serif;*/
  4. /*line-height: 1.5;
  5. height: 100%;*/
  6. background-color: #f3f3f3;
  7. }
  8. .aside {
  9. display: block;
  10. background-color: #2a2e2f;
  11. border-right: 1px solid #DEDEDE;
  12. }
  13. .messages {
  14. display: block;
  15. background-color: #fff;
  16. border-right: 1px solid #DEDEDE;
  17. }
  18. .message {
  19. display: block;
  20. background-color: #f3f3f3;
  21. }
  22. .aside .main {
  23. padding: 20px 40px;
  24. color: #6F7B7E;
  25. }
  26. .aside .title {
  27. color: #6F7B7E;
  28. font-size: 12px;
  29. font-weight: bold;
  30. text-transform: uppercase;
  31. }
  32. .aside .main .item {
  33. display: flex;
  34. /*padding: 10px 0;*/
  35. padding: 10px 20px 10px 40px;
  36. margin: 0 -50px;
  37. color: #6F7B7E;
  38. }
  39. .aside .main .item.active {
  40. background-color: #5a5e5f;
  41. margin: 0 -50px;
  42. /*padding-left: 50px;*/
  43. padding-left: 40px;
  44. }
  45. .aside .main .item:active,
  46. .aside .main .item:hover {
  47. background-color: #5a5e5f;
  48. margin: 0 -50px;
  49. /*padding-left: 50px;*/
  50. padding-left: 40px;
  51. }
  52. .aside .main .icon {
  53. font-size: 19px;
  54. padding-right: 30px;
  55. color: #f3f3f3;
  56. }
  57. .aside .main .name {
  58. font-size: 15px;
  59. color: #f3f3f3;
  60. font-weight: 500;
  61. }
  62. .messages {
  63. padding: 40px 20px;
  64. }
  65. .message {
  66. padding: 40px 20px;
  67. }
  68. .pg {
  69. display: inline-block;
  70. top: 10px;
  71. }
  72. .is-grouped .button {
  73. background-image: linear-gradient(#F8F8F8, #F1F1F1);
  74. }
  75. .is-grouped .button .fa {
  76. font-size: 15px;
  77. color: #AAAAAA;
  78. }
  79. .inbox-messages {
  80. margin-top: 60px;
  81. }
  82. .message-preview {
  83. margin-top: 60px;
  84. }
  85. .inbox-messages .card {
  86. width: 100%;
  87. }
  88. .inbox-messages strong {
  89. color: #5D5D5D;
  90. }
  91. .inbox-messages .msg-check {
  92. padding: 0 20px;
  93. }
  94. .inbox-messages .msg-subject {
  95. padding: 10px 0;
  96. color: #5D5D5D;
  97. }
  98. .inbox-messages .msg-attachment {
  99. float: right;
  100. }
  101. .inbox-messages .msg-snippet {
  102. padding: 5px 20px 0px 5px;
  103. }
  104. .inbox-messages .msg-subject .fa {
  105. font-size: 14px;
  106. padding: 3px 0;
  107. }
  108. .card.active {
  109. background-color: #F5F5F5;
  110. }
  111. .content {
  112. font-size: 16pt;
  113. line-height: 250%;
  114. }
  115. .content .tag {
  116. font-size: 16pt;
  117. height: 1.5em;
  118. padding-left: .5em;
  119. padding-right: .5em;
  120. }
  121. .content .text {
  122. white-space: pre-wrap; /* Rendering newlines for classification and seq2seq tasks */
  123. }
  124. .content .text-sequence {
  125. white-space: normal; /* Not render newlines for sequence labelling */
  126. height: auto;
  127. }
  128. :focus {
  129. outline: 0;
  130. }
  131. .hidden {
  132. display: none;
  133. }
  134. .todoapp {
  135. background: #fff;
  136. margin: 30px 0 0 0;
  137. position: relative;
  138. box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .1)
  139. }
  140. .todoapp input::-webkit-input-placeholder {
  141. font-style: italic;
  142. font-weight: 300;
  143. color: #e6e6e6;
  144. }
  145. .todoapp input::-moz-placeholder {
  146. font-style: italic;
  147. font-weight: 300;
  148. color: #e6e6e6;
  149. }
  150. .todoapp input::input-placeholder {
  151. font-style: italic;
  152. font-weight: 300;
  153. color: #e6e6e6;
  154. }
  155. .new-todo,
  156. .edit {
  157. position: relative;
  158. margin: 0;
  159. width: 100%;
  160. font-size: 16pt;
  161. font-family: inherit;
  162. font-weight: inherit;
  163. line-height: 1.4em;
  164. border: 0;
  165. color: inherit;
  166. padding: 6px;
  167. border: 1px solid #999;
  168. box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
  169. box-sizing: border-box;
  170. -webkit-font-smoothing: antialiased;
  171. -moz-osx-font-smoothing: grayscale;
  172. }
  173. .new-todo {
  174. padding: 1.5rem;
  175. border: none;
  176. background: rgba(0, 0, 0, 0.003);
  177. box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
  178. }
  179. .todo-list {
  180. margin: 0;
  181. padding: 0;
  182. list-style: none;
  183. }
  184. .todo-list li {
  185. position: relative;
  186. font-size: 16pt;
  187. border-bottom: 1px solid #ededed;
  188. }
  189. .todo-list li:last-child {
  190. border-bottom: none;
  191. }
  192. .todo-list li.editing {
  193. border-bottom: none;
  194. padding: 0;
  195. }
  196. .todo-list li.editing .edit {
  197. display: block;
  198. padding: 12px 16px;
  199. }
  200. .todo-list li.editing .view {
  201. display: none;
  202. }
  203. .todo-list li label {
  204. word-break: break-all;
  205. padding: 1.5rem 60px 1.5rem 1.5rem;
  206. display: block;
  207. line-height: 1.2;
  208. transition: color 0.4s;
  209. }
  210. .todo-list li .destroy {
  211. display: none;
  212. position: absolute;
  213. top: 0;
  214. right: 10px;
  215. bottom: 0;
  216. margin: auto 0;
  217. }
  218. .todo-list li:hover .destroy {
  219. display: block;
  220. }
  221. .todo-list li .edit {
  222. display: none;
  223. }
  224. .todo-list li.editing:last-child {
  225. margin-bottom: -1px;
  226. }
  227. .modal-card-body-footer {
  228. border-bottom: 1px solid #dbdbdb;
  229. border-bottom-left-radius: 6px;
  230. border-bottom-right-radius: 6px;
  231. }
  232. .is-vertical-center {
  233. align-items: center;
  234. }
  235. [v-cloak] { display: none; }