style.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .light-container1, .light-container2 {
  2. background:rgb(51, 51, 51);
  3. width: 150px;
  4. height: 440px;
  5. border-radius: 10px;
  6. font-size: 70px;
  7. text-align:center;
  8. padding: 1px 0;
  9. border: 6px solid #000;
  10. margin: 30px 30px;
  11. }
  12. .light-container3, .light-container4 {
  13. background:rgb(51, 51, 51);
  14. width: 150px;
  15. height: 380px;
  16. border-radius: 10px;
  17. font-size: 70px;
  18. text-align:center;
  19. padding: 5px 0;
  20. border: 6px solid #000;
  21. margin: 30px 30px;
  22. }
  23. .circle, .round, .series {
  24. background:grey;
  25. width: 120px;
  26. height: 120px;
  27. border-radius: 50%;
  28. margin-left: 15px;
  29. margin-top: 20px;
  30. line-height: 120px;
  31. -webkit-transition: background-color 0.5s ease-out;
  32. -o-transition: background-color 0.5s ease-out;
  33. transition: background-color 0.5s ease-out;
  34. }
  35. /*Добавляем фоновый цвет*/
  36. .circleBGColor1, .roundBGColor1 {
  37. background-color: #f00;
  38. }
  39. .circleBGColor2 {
  40. background-color: #ff0;
  41. }
  42. .circleBGColor3, .roundBGColor3 {
  43. background-color: #0f0;
  44. }
  45. /*Добавляем текстовый цвет*/
  46. .circleColor1 {
  47. color: #f00;
  48. }
  49. .circleColor2 {
  50. color: #0f0;
  51. }
  52. .roundColor1 {
  53. color: rgb(245, 209, 209);
  54. }
  55. .roundColor2 {
  56. color: rgb(91, 128, 96);
  57. }
  58. .btn, #btn {
  59. display: inline-block;
  60. padding: 16px 12px;
  61. font-size: 16px;
  62. font-weight: 600;
  63. cursor: pointer;
  64. text-align: center;
  65. text-decoration: none;
  66. outline: none;
  67. color: #fff;
  68. background-color: #4CAF50;
  69. border: none;
  70. border-radius: 15px;
  71. box-shadow: 0 6px #999;
  72. }
  73. .btn, #btn:active {
  74. background-color: #3e8e41;
  75. box-shadow: 0 5px #666;
  76. transform: translateY(4px);
  77. }
  78. button[disabled]{
  79. background: #D4D4D4;
  80. }
  81. #btn[disabled]{
  82. background: #D4D4D4;
  83. }