You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_connection-status.scss 985B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .con-status {
  2. position: absolute;
  3. top: 40px;
  4. width: 100%;
  5. z-index: $toolbarZ + 3;
  6. &-container {
  7. background: rgba(28, 32, 37, .5);
  8. border-radius: 3px;
  9. color: #fff;
  10. font-size: 13px;
  11. line-height: 20px;
  12. margin: 0 auto;
  13. width: 304px;
  14. }
  15. &-header {
  16. align-items: center;
  17. display: flex;
  18. justify-content: space-between;
  19. padding: 8px;
  20. }
  21. &-circle {
  22. border-radius: 50%;
  23. display: inline-block;
  24. padding: 4px;
  25. }
  26. &--good {
  27. background: #31B76A;
  28. }
  29. &--poor {
  30. background: #E12D2D;
  31. }
  32. &--non-optimal {
  33. background: #E39623;
  34. }
  35. &-arrow {
  36. &--up {
  37. transform: rotate(180deg);
  38. }
  39. &>svg {
  40. cursor: pointer;
  41. }
  42. }
  43. &-text {
  44. text-align: center;
  45. }
  46. &-details {
  47. border-top: 1px solid #5E6D7A;
  48. padding: 16px;
  49. }
  50. }