options.css 4.4 KB

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