options.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*sticky footer*/
  2. html, body {
  3. height: 100%;
  4. padding: 0;
  5. margin: 0;
  6. }
  7. #wrapper {
  8. min-height: 100%;
  9. height: auto !important;
  10. height: 100%;
  11. margin: 0 auto -52px;
  12. }
  13. footer, #footer-push {
  14. height: 20px;
  15. text-align: center;
  16. }
  17. /*center content on large screens*/
  18. .mdc-toolbar__row,
  19. main {
  20. max-width: 1200px;
  21. margin: 0 auto;
  22. }
  23. /*content*/
  24. main { padding: 90px 0 30px 0; }
  25. #options { letter-spacing: 0.2px; }
  26. /*header*/
  27. header .mdc-toolbar__title { margin: 0; }
  28. header nav { float: right; margin: 0 !important; }
  29. header nav a { color: #fff !important; min-width: auto !important; }
  30. /*footer*/
  31. footer {
  32. font-size: 14px;
  33. line-height: 20px;
  34. color: #9e9e9e;
  35. text-align: center;
  36. background: #424242;
  37. padding: 16px 40px;
  38. }
  39. footer a {
  40. color: #9e9e9e;
  41. text-decoration: none;
  42. }
  43. footer .icon-chrome { margin-right: 10px; }
  44. footer .icon-chrome:before { font-size: 17px; }
  45. footer .icon-firefox { margin-right: 10px; }
  46. footer .icon-firefox:before {
  47. font-size: 18px; position: relative; top: 1px;
  48. }
  49. footer .icon-github:before {
  50. font-size: 20px; position: relative; top: 1px;
  51. }
  52. footer .icon-hidden {
  53. display: none;
  54. }
  55. /*custom scrollbars in WebKit*/
  56. ::-webkit-scrollbar {
  57. width: 13px;
  58. height: 13px;
  59. }
  60. ::-webkit-scrollbar-track-piece {
  61. background: #ececec;
  62. -webkit-border-radius: 2px;
  63. }
  64. ::-webkit-scrollbar-thumb {
  65. height: 50px;
  66. background: #afbdc3;
  67. -webkit-border-radius: 8px;
  68. outline: 2px solid #333;
  69. outline-offset: -2px;
  70. border: 2px solid #ececec;
  71. }
  72. ::-webkit-scrollbar-thumb:hover {
  73. height: 50px;
  74. background-color: #607d8b;
  75. -webkit-border-radius: 8px;
  76. }
  77. /*bootstrap callout*/
  78. .bs-callout {
  79. border: 1px solid #eee;
  80. border-left-width: 5px;
  81. border-left-color: #607d8b;
  82. border-radius: 3px;
  83. background: #fcfcfc;
  84. padding: 20px;
  85. margin: 0 0 30px 0;
  86. }
  87. /*button*/
  88. .m-button {
  89. background-color: #ececec !important;
  90. color: #000 !important;
  91. }
  92. .m-button:before {
  93. background-color: rgba(96, 125, 139, 0.56) !important;
  94. }
  95. .m-button:after {
  96. background-color: rgba(96, 125, 139, 0.56) !important;
  97. }
  98. /*switch*/
  99. .m-switch {
  100. cursor: pointer;
  101. display: table;
  102. margin: 7px 0;
  103. }
  104. .m-switch .mdc-switch__background {
  105. display: inline-block;
  106. bottom: 5px;
  107. left: 15px;
  108. }
  109. .m-switch .mdc-switch-label {
  110. font-size: 1rem;
  111. line-height: 1.5rem;
  112. white-space: nowrap;
  113. overflow: hidden;
  114. text-overflow: ellipsis;
  115. display: inline-block;
  116. padding: 0 0 0 30px;
  117. }
  118. .m-switch .mdc-switch-label code {
  119. font-size: 16px;
  120. }
  121. /*select*/
  122. .m-select {
  123. font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  124. font-size: 14px;
  125. line-height: 17px;
  126. text-transform: uppercase;
  127. letter-spacing: 0.2px;
  128. background-color: #ececec;
  129. border: none;
  130. border-radius: 2px;
  131. cursor: pointer;
  132. padding: 9px 12px;
  133. }
  134. /*textfield*/
  135. .m-textfield {
  136. font-size: 1rem;
  137. line-height: 1.5rem;
  138. height: auto;
  139. margin: 0;
  140. }
  141. /*list*/
  142. .m-list {
  143. list-style: none;
  144. clear: both;
  145. background: #fff;
  146. padding: 0;
  147. margin: 0;
  148. }
  149. .m-list li {
  150. transition-duration: .28s;
  151. transition-timing-function: cubic-bezier(.4,0,.2,1);
  152. transition-property: background-color box-shadow;
  153. height: auto;
  154. min-height: 36px;
  155. border-bottom: 1px solid #ececec;
  156. padding: 10px 20px;
  157. }
  158. .m-list li:last-child { border: 0; }
  159. .m-list li:hover { background: #eee; }
  160. .m-list li:after { content: ''; display: block; clear: both; }
  161. .m-list li > * { display: inline-block; }
  162. .m-list li span {
  163. font-size: 1rem;
  164. line-height: 36px;
  165. }
  166. .m-list .m-textfield input { color: #a9a9a9; }
  167. .m-list .m-textfield input:focus { color: #1b1b1b; }
  168. .m-list button {
  169. transition-duration: .28s;
  170. transition-timing-function: cubic-bezier(.4,0,.2,1);
  171. transition-property: background-color;
  172. min-width: auto;
  173. padding: 0 9px;
  174. border-radius: 50%;
  175. }
  176. .m-list button:hover { background: #cacaca; }
  177. /*file access*/
  178. .m-file h4 {
  179. margin: 0 0 16px 0;
  180. }
  181. .m-file img {
  182. display: block;
  183. margin-bottom: 20px;
  184. }
  185. /*allowed origins*/
  186. .m-origins h4 {
  187. line-height: 36px;
  188. float: left;
  189. padding: 0 100px 0 0;
  190. margin: 0 !important;
  191. }
  192. .m-origins > .m-textfield:first-of-type {
  193. width: 400px;
  194. margin: 0 10px !important;
  195. }
  196. .m-origins button:nth-of-type(2) { float: right; }
  197. .m-origins .m-select { width: 110px; }
  198. .m-origins .m-switch {
  199. margin: 20px 0 0 0;
  200. }
  201. .m-origins .m-list {
  202. clear: both;
  203. margin: 20px 0 0 0;
  204. }
  205. .m-origins .m-list li > * { overflow: hidden; text-overflow: ellipsis; }
  206. .m-origins .m-list li > *:nth-child(1) { width: 7%; }
  207. .m-origins .m-list li > *:nth-child(2) { width: 22%; }
  208. .m-origins .m-list li > *:nth-child(3) { width: 62%; }
  209. .m-origins .m-list li > *:nth-child(4) { width: 9%; text-align: right; }