options.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*sticky footer*/
  2. html, body {
  3. height: 100%;
  4. }
  5. #wrapper {
  6. min-height: 100%;
  7. height: auto !important;
  8. height: 100%;
  9. margin: 0 auto -52px;
  10. }
  11. footer, #footer-push {
  12. height: 20px;
  13. text-align: center;
  14. }
  15. /*center content on large screens*/
  16. .mdl-layout__header-row,
  17. .mdl-layout__content,
  18. .mdl-mega-footer__bottom-section {
  19. max-width: 1200px;
  20. margin: 0 auto;
  21. }
  22. .mdl-layout__content {
  23. display: block;
  24. }
  25. /*header*/
  26. .mdl-layout__header-row { padding: 0 20px; }
  27. /*content*/
  28. .mdl-layout__content { padding-bottom: 60px; }
  29. /*footer*/
  30. .mdl-mega-footer__bottom-section { padding: 0; }
  31. .mdl-mega-footer__link-list { display: flex; justify-content: center; margin: 0 auto; }
  32. .mdl-mega-footer__link-list li:last-child { margin: 0; }
  33. .mdl-mega-footer__link-list li:nth-of-type(1) a:before { font-size: 17px; }
  34. .mdl-mega-footer__link-list li:nth-of-type(2) a { position: relative; top: -2px; }
  35. .mdl-mega-footer__link-list li:nth-of-type(2) a:before {
  36. font-size: 20px; position: relative; top: 1px;
  37. }
  38. /*markdown-viewer*/
  39. /*form*/
  40. select {
  41. font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  42. font-size: 14px; line-height: 17px;
  43. text-transform: uppercase;
  44. background-color: #ececec;
  45. border: none; border-radius: 2px;
  46. cursor: pointer;
  47. width: 110px; padding: 9px 12px;
  48. }
  49. .mdl-js-textfield:nth-of-type(1) {
  50. width: 400px;
  51. position: relative; top: 5px;
  52. padding: 0;
  53. margin: 0 10px;
  54. }
  55. .mdl-textfield:nth-of-type(1) .mdl-textfield__label:after { bottom: 0; }
  56. /*table*/
  57. .mdl-data-table {
  58. width: 100%;
  59. }
  60. .mdl-data-table tr {
  61. transition-duration: .28s;
  62. transition-timing-function: cubic-bezier(.4,0,.2,1);
  63. transition-property: background-color;
  64. }
  65. .mdl-data-table tr:hover { background: #eee; }
  66. .mdl-data-table td { font-size: 16px; line-height: 17px; }
  67. .mdl-data-table td:nth-of-type(1) { width: 5%; }
  68. .mdl-data-table td:nth-of-type(2) { width: 20%; }
  69. .mdl-data-table td:nth-of-type(3) { width: 70%; }
  70. .mdl-data-table td:nth-of-type(4) { width: 5%; }
  71. .mdl-data-table i { font-size: 10px; }
  72. .mdl-data-table .mdl-textfield {
  73. width: 100%; color: #a9a9a9;
  74. position: relative; top: -1px;
  75. padding: 0;
  76. }
  77. .mdl-data-table .mdl-textfield.is-focused { color: #272727; }
  78. .mdl-data-table .mdl-textfield__label:after { bottom: 0; }
  79. /*file url*/
  80. .bs-callout { background: #fcfcfc; }
  81. .bs-callout img { display: block; margin-bottom: 20px; }
  82. .bs-callout button { background: #d9534f; color: #fff; }
  83. .bs-callout button:hover { background: #e57471; }
  84. /*bootstrap callout*/
  85. .bs-callout {
  86. padding: 20px;
  87. margin: 20px 0 0;
  88. border: 1px solid #eee;
  89. border-left-width: 5px;
  90. border-radius: 3px;
  91. }
  92. .bs-callout h4 {
  93. margin-top: 0;
  94. }
  95. .bs-callout p:last-child {
  96. margin-bottom: 0;
  97. }
  98. .bs-callout code {
  99. border-radius: 3px;
  100. }
  101. .bs-callout+.bs-callout {
  102. margin-top: -5px;
  103. }
  104. .bs-callout-danger {
  105. border-left-color: #d9534f;
  106. }
  107. .bs-callout-danger h4 {
  108. color: #d9534f;
  109. }