network.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .network-menu {
  2. background: #0A0101;
  3. padding: 20px;
  4. min-width: 360px;
  5. transition: all 0.3s ease-in;
  6. }
  7. .title {
  8. font-size: 24px;
  9. font-weight: 700;
  10. margin-bottom: 8px;
  11. color: #ffffff;
  12. }
  13. .subtitle {
  14. font-size: 11px;
  15. color: #999999;
  16. margin-bottom: 16px;
  17. font-weight: 500;
  18. }
  19. button {
  20. background: transparent;
  21. border: none;
  22. padding: 0;
  23. margin: 0;
  24. all: unset;
  25. }
  26. button:hover {
  27. opacity: 0.8;
  28. }
  29. .network-item {
  30. background: #140202;
  31. border-radius: 20px;
  32. padding: 12px 16px;
  33. transition: all 0.2s ease;
  34. }
  35. .network-item:hover {
  36. background: #190202;
  37. }
  38. .network-item.active {
  39. background: #3a0505;
  40. border: 1px solid #1A0909;
  41. }
  42. .network-item.active:hover {
  43. background: #450707;
  44. }
  45. .network-header {
  46. }
  47. .network-info {
  48. }
  49. .network-name {
  50. font-size: 13px;
  51. font-weight: 600;
  52. color: #ffffff;
  53. }
  54. .network-subtext {
  55. font-size: 11px;
  56. color: #999999;
  57. }
  58. .network-signal {
  59. font-size: 12px;
  60. color: #aaaaaa;
  61. }
  62. .network-icon {
  63. font-size: 24px;
  64. font-family: "Material Symbols Outlined";
  65. }
  66. .device-item {
  67. padding: 12px 16px;
  68. transition: all 0.2s ease;
  69. }
  70. .device-icon {
  71. font-size: 20px;
  72. font-family: "Material Symbols Outlined";
  73. }
  74. .device-subtext {
  75. font-size: 11px;
  76. color: #999999;
  77. }