style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .graphic_pane{
  2. background: #50597B;
  3. width:100%;
  4. list-style-type: none;
  5. margin:0;
  6. }
  7. .graphic_pane li{
  8. background: #50597B;
  9. margin:0;
  10. display: inline-block;
  11. vertical-align: top;
  12. padding: 10px;
  13. margin-right: 1px;
  14. }
  15. .graphic_pane li h2{
  16. color: #ffffff;
  17. font-size: 16px;
  18. margin:0;
  19. padding: 0;
  20. }
  21. .graphic_pane li h1{
  22. color: #8B95B8;
  23. font-size: 11px;
  24. margin:0 0 10px 0;
  25. padding: 0;
  26. }
  27. .graphic_pane li.pane_red{
  28. border-top: 3px solid #EF4D66;
  29. }
  30. .graphic_pane li.pane_blue{
  31. border-top: 3px solid #0AB4B3;
  32. }
  33. .graphic_pane li.pane_orange{
  34. border-top: 3px solid #FFBF4C;
  35. }
  36. .graphic_pane li.pane_cyan{
  37. border-top: 3px solid #4F92BD;
  38. }
  39. .gpio_container{
  40. background:#393939;
  41. width:100%;
  42. height:100%;
  43. border-collapse:collapse;
  44. border-top:5px solid #636363;
  45. border-bottom:5px solid #636363;
  46. margin:0;
  47. padding:0;
  48. }
  49. .gpio_container tr td {
  50. margin:0;
  51. padding:0;
  52. }
  53. .gpio_container tr td div{
  54. padding:3px 10px 3px 10px;
  55. line-height:20px;
  56. height:20px;
  57. background-color:#393939;
  58. transition: all 0.2s ease-in-out;
  59. }
  60. .gpio_container small{
  61. font-size:9px;
  62. }
  63. .gpio_container span:before{
  64. font-size:20px;
  65. }
  66. .gpio_container tr td div:hover{
  67. background:#222222;
  68. }
  69. .gpio_state_on,.gpio_state_waiting,.gpio_state_off,.gpio_power,.gpio_ground{
  70. background:#222222;
  71. padding:5px;
  72. color:#ffffff;
  73. cursor:help;
  74. transition:all 0.4s ease-in-out;
  75. }
  76. .gpio_state_on,.gpio_state_waiting,.gpio_state_off{
  77. cursor:pointer;
  78. }
  79. .gpio_state_on span,.gpio_state_waiting span,.gpio_state_off span{
  80. text-shadow:0 0 5px #ED0808;
  81. transition:all 0.4s ease-in-out;
  82. }
  83. .gpio_state_on span:before,.gpio_state_waiting span:before,.gpio_state_off span:before{
  84. content: "\f192";
  85. font-family: FontAwesome;
  86. }
  87. .gpio_state_on span{
  88. text-shadow:0 0 5px #ED0808;
  89. }
  90. .gpio_state_waiting span{
  91. text-shadow:0 0 5px #08D2ED;
  92. }
  93. .gpio_state_on span{
  94. text-shadow:0 0 5px #0AED08;
  95. }
  96. .gpio_power span:before{
  97. content: "\f0e7";
  98. text-shadow:0px 0px 5px #ED0808;
  99. color:#FFDC00;
  100. font-family: FontAwesome;
  101. }
  102. .gpio_ground span:before{
  103. content: "\f011";
  104. font-family: FontAwesome;
  105. }