index.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. @import url("../static/css/bootstrap.min.css");
  2. #pageContainer > .panel-body {
  3. margin: 0 auto;
  4. }
  5. body {
  6. overflow: hidden;
  7. }
  8. #base {
  9. padding: 15px;
  10. position: relative;
  11. }
  12. /*header*/
  13. #header {
  14. width: 300px;
  15. overflow: auto;
  16. }
  17. #header a {
  18. color: #99FFFF;
  19. }
  20. #description p {
  21. margin-bottom: 18px;
  22. }
  23. #header h3 {
  24. font-size: 16px;
  25. margin: 15px 0 10px 0;
  26. padding: 15px 0 0 0;
  27. border-top: solid 1px #CCC;
  28. text-transform: uppercase;
  29. }
  30. h1 {
  31. color: #DEDEDE;
  32. font-family: palatino, Georgia;
  33. font-size: 40px;
  34. line-height: 40px;
  35. font-weight: bold;
  36. margin-bottom: 8px;
  37. text-shadow: 1px 1px 3px #000;
  38. }
  39. p {
  40. font-size: 15px;
  41. line-height: 22px;
  42. }
  43. /*settings*/
  44. #settings {
  45. font-size:12px;
  46. line-height: 30px;
  47. }
  48. #settings h5 {
  49. line-height: 24px;
  50. }
  51. #settings p {
  52. line-height: 24px;
  53. }
  54. #settings .settingsGroup p {
  55. padding-left: 20px;
  56. }
  57. /*converter*/
  58. #converter {
  59. position: absolute;
  60. top: 15px;
  61. left: 330px;
  62. border:1px solid #ccc;
  63. }
  64. p.dataHeaders {
  65. height: 30px;
  66. padding: 15px 15px 10px;
  67. }
  68. .textInputs {
  69. border: none;
  70. color: #664D63;
  71. font-family: monospace;
  72. font-size: 12px;
  73. height: 300px;
  74. line-height: 18px;
  75. padding: 10px;
  76. text-shadow: #DED4DD 0px 1px 0px;
  77. outline: none;
  78. resize: none;
  79. }
  80. .groupHeader {
  81. width: 100%;
  82. color: #000;
  83. height: 45px;
  84. background-color: #f1f1f1;
  85. }
  86. p.groupHeadline {
  87. padding: 10px;
  88. }
  89. .groupHeader span.subhead {
  90. opacity: 0.7;
  91. font-size: 12px;
  92. }
  93. .groupHeader a {
  94. color: #FF66FF;
  95. }
  96. #outputHeader {
  97. border-top:1px solid #ccc;
  98. }
  99. #dataInput, #dataOutput {
  100. width: 100% !important;
  101. }
  102. #dataSelector {
  103. width: 200px;
  104. line-height: 22px;
  105. font-size: 12px;
  106. position: relative;
  107. top: -2px;
  108. left: 10px;
  109. }
  110. #dataSelector option {
  111. }
  112. .form-control {
  113. display: inline-block;
  114. width:200px;
  115. height:28px;
  116. }