network.scss 533 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .network-menu {
  2. background: #0A0101;
  3. padding: 16px;
  4. min-width: 320px;
  5. transition: all 0.3s ease-in;
  6. }
  7. .title {
  8. font-size: 22px;
  9. margin-bottom: 12px;
  10. }
  11. button {
  12. background: #0A0101;
  13. border-radius: 14px;
  14. padding: 10px;
  15. margin: 4px 0;
  16. }
  17. button:hover {
  18. background: #190202;
  19. }
  20. button.active-wifi {
  21. background: #140202;
  22. }
  23. button.active-wifi:hover {
  24. background: #190202;
  25. }
  26. button.inactive-wifi {
  27. background: #0A0101;
  28. }
  29. button.inactive-wifi:hover {
  30. background: #261616;
  31. }