garage_door_opener.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. html, body {
  2. height:100%;
  3. margin: 0;
  4. overflow: hidden;
  5. }
  6. body {
  7. text-align: center;
  8. background-color: black;
  9. min-height: 100%;
  10. color: black;
  11. }
  12. #remote {
  13. background-color: #666;
  14. width: 90%;
  15. border-radius: 30px;
  16. margin: 5% 5% 0;
  17. height: 90%;
  18. padding: 0;
  19. }
  20. #spacer {
  21. clear: both;
  22. border-top: 1px solid rgba(0, 0, 0, 0.5);
  23. -moz-box-shadow: 1px 1px 1px;
  24. box-shadow: 1px 1px 1px;
  25. margin-right: 30px;
  26. margin-left: 30px;
  27. }
  28. .button {
  29. display: inline-block;
  30. width: 43%;
  31. margin: 20px 0 30px;
  32. padding: 40px 0;
  33. border-style: none;
  34. color: rgba(192, 192, 192, 0.5);
  35. text-decoration: none;
  36. border-radius: 20px;
  37. text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  38. font-size: 130px;
  39. font-weight: bold;
  40. background-color: #CCC;
  41. -moz-box-shadow: 0 10px rgba(0, 0, 0, 0.25);
  42. box-shadow: 0 10px rgba(0, 0, 0, 0.25);
  43. position: relative;
  44. }
  45. .button-1 {
  46. float: left;
  47. margin-left: 5%;
  48. }
  49. .button-2 {
  50. float: right;
  51. margin-right: 5%;
  52. }
  53. .button span {
  54. }
  55. .button:hover span {
  56. }
  57. .button:active, .button:focus {
  58. }
  59. .button:active span {
  60. }
  61. #label {
  62. font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
  63. background-color: rgba(0, 0, 0, 0.1);
  64. width: 12px;
  65. height: 12px;
  66. display: block;
  67. margin: 20px auto;
  68. -webkit-border-radius: 20px;
  69. -moz-border-radius: 20px;
  70. border-radius: 20px;
  71. text-indent: -99999px;
  72. top: 20px;
  73. position: relative;
  74. }
  75. #label.start {
  76. }
  77. #label.initalizing {
  78. }
  79. #label.connection {
  80. background-color: orange;
  81. }
  82. #label.received {
  83. background-color: orange;
  84. }
  85. #label.processing {
  86. background-color: orange;
  87. }
  88. #label.ok {
  89. background-color: green;
  90. }
  91. #label.bad {
  92. background-color: red;
  93. }