My Marlin configs for Fabrikator Mini and CTC i3 Pro B
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.

configurator.css 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* configurator.css */
  2. /* Styles for Marlin Configurator */
  3. body { margin: 0; padding: 0; background: #56A; color: #FFC; font-family: sans-serif; }
  4. #main { max-width: 1000px; margin: 0 auto; }
  5. #main { padding: 0 4%; width: 92%; }
  6. #main { font-family: monospace; }
  7. h1, #message { text-align: center; }
  8. #message { width: 80%; margin: 0 auto 0.25em; color: #FF0; }
  9. #message p { padding: 2px 0; }
  10. #message p.error, #message p.message { color: #F00; background: #FF4; font-weight: bold; border-radius: 0.8em; }
  11. #message p.message { color: #080; background: #CFC; }
  12. .info { color: #AAF; }
  13. .info span { color: #FFF; }
  14. .info span span { color: #000; font-weight: bold; }
  15. #help strong { color: #0DD; }
  16. img { display: none; }
  17. label, input, select, textarea { display: block; float: left; margin: 1px 0; }
  18. label.newline, textarea, fieldset { clear: both; }
  19. label { width: 130px; height: 1em; padding: 10px 480px 10px 1em; margin-right: -470px; text-align: right; }
  20. input[type="text"], select { margin: 0.75em 0 0; }
  21. input[type="checkbox"], input[type="radio"], input[type="file"] { margin: 1em 0 0; }
  22. #config_form { display: block; background: #DDD; padding: 20px; color: #000; position: relative; }
  23. /*#config_text, #config_adv_text { font-family: "Andale mono", monospace; clear: both; }*/
  24. #config_text, #config_adv_text { height: 25em; overflow: auto; background-color: #FFF; color: #888; padding: 10px; }
  25. input[type="checkbox"], input[type="radio"].enabler { margin-left: 1em; }
  26. input:disabled { color: #BBB; }
  27. .clear { clear: both; }
  28. h1, h2, h3, h4, h5, h6 { clear: both; }
  29. h2 { margin: 0; padding: 1em 0 0; }
  30. ul.tabs { display: inline; list-style: none; }
  31. ul.tabs li { display: inline; }
  32. ul.tabs li a,
  33. ul.tabs li a.active:hover,
  34. ul.tabs li a.active:active {
  35. display: block;
  36. float: left;
  37. background: #666;
  38. color: #CCC;
  39. font-size: 150%;
  40. border-radius: 0.25em 0.25em 0 0;
  41. margin: 0 4px 0 0;
  42. padding: 2px 4px;
  43. text-decoration: none;
  44. }
  45. ul.tabs li a.active:link,
  46. ul.tabs li a.active:visited {
  47. background: #DDD;
  48. color: #900;
  49. cursor: default;
  50. }
  51. ul.tabs li a:hover,
  52. ul.tabs li a:active {
  53. background: #777;
  54. color: #DDD;
  55. }
  56. fieldset { display: none; border: 1px solid #AAA; border-radius: 1em; }
  57. fieldset legend { display: none; }
  58. .hilightable span {
  59. display: block;
  60. float: left;
  61. width: 100%;
  62. height: 1.3em;
  63. background: rgba(225,255,0,1);
  64. margin: 0 -100% -1em 0;
  65. }
  66. #serial_stepper { padding-top: 0.75em; display: block; float: left; }
  67. #SERIAL_PORT { display: none; }
  68. #tooltip {
  69. display: none;
  70. max-width: 30em;
  71. padding: 8px;
  72. border: 2px solid #73d699;
  73. border-radius: 1em;
  74. position: absolute;
  75. z-index: 999;
  76. font-family: sans-serif;
  77. font-size: 85%;
  78. color: #000;
  79. line-height: 1.1;
  80. background: #e2ff99; /* Old browsers */
  81. background: -moz-linear-gradient(top, #e2ff99 0%, #73d699 100%); /* FF3.6+ */
  82. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2ff99), color-stop(100%,#73d699)); /* Chrome,Safari4+ */
  83. background: -webkit-linear-gradient(top, #e2ff99 0%,#73d699 100%); /* Chrome10+,Safari5.1+ */
  84. background: -o-linear-gradient(top, #e2ff99 0%,#73d699 100%); /* Opera 11.10+ */
  85. background: -ms-linear-gradient(top, #e2ff99 0%,#73d699 100%); /* IE10+ */
  86. background: linear-gradient(to bottom, #e2ff99 0%,#73d699 100%); /* W3C */
  87. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2ff99', endColorstr='#73d699',GradientType=0 ); /* IE6-9 */
  88. -webkit-box-shadow: 0px 6px 25px -4px rgba(0,0,0,0.75);
  89. -moz-box-shadow: 0px 6px 25px -4px rgba(0,0,0,0.75);
  90. box-shadow: 0px 6px 25px -4px rgba(0,0,0,0.75);
  91. }
  92. #tooltip>span {
  93. position: absolute;
  94. content: "";
  95. width: 0;
  96. height: 0;
  97. border-left: 8px solid transparent;
  98. border-right: 8px solid transparent;
  99. border-top: 8px solid #73d699;
  100. z-index: 999;
  101. bottom: -10px;
  102. left: 20px;
  103. }