style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .control {
  2. padding: 5px;
  3. }
  4. .control > label {
  5. display: inline-block;
  6. width: 250px;
  7. }
  8. .control > input {
  9. margin-right: 4px;
  10. }
  11. .row {
  12. padding: 4px;
  13. }
  14. .row .title {
  15. display: inline-block;
  16. min-width: 250px;
  17. font-weight: bold;
  18. }
  19. .radio-option {
  20. border: 1px solid #bada55;
  21. margin-top: 4px;
  22. background-color: #000000;
  23. }
  24. .radio-option legend {
  25. background-color: #223322;
  26. color: #bada55;
  27. padding: 0 8;
  28. border-left: 1px solid #bada55;
  29. border-right: 1px solid #bada55;
  30. padding-left: 4px;
  31. padding-right: 6px;
  32. cursor: pointer;
  33. border-radius: 4px;
  34. }
  35. .control.radio {
  36. border: 1px solid #bada55;
  37. background-color: #223322;
  38. }
  39. .control.radio legend {
  40. background-color: #223322;
  41. color: #bada55;
  42. border-left: 1px solid #bada55;
  43. border-right: 1px solid #bada55;
  44. padding-left: 4px;
  45. padding-right: 6px;
  46. border-radius: 4px;
  47. }
  48. legend > input[type="radio"] {
  49. display: inline-block;
  50. margin-right: 8px;
  51. }
  52. .tab-bar > .tab-bar-tab.active {
  53. background-color: #bada55;
  54. font-weight: bold;
  55. color: #000000;
  56. }
  57. .tab-bar > .tab-bar-tab {
  58. float: left;
  59. border: 1px solid green;
  60. padding: 8px;
  61. cursor: pointer;
  62. }