scanHandle.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .header{
  2. width: 100%;
  3. height: 39px;
  4. border-bottom: 1px solid gray;
  5. display: flex;
  6. align-items: center;
  7. font-size: 16px;
  8. padding: 0 5px;
  9. }
  10. .header .state-info{
  11. font-size: 18px;
  12. width: 120px;
  13. padding-left: 10px;
  14. border-right: 1px solid gray;
  15. display: flex;
  16. align-items: center;
  17. }
  18. .led{
  19. width: 5px;
  20. height: 5px;
  21. }
  22. .header .state-msg{
  23. width: 100%;
  24. overflow:hidden;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. padding: 0 10px;
  29. box-sizing: border-box;
  30. }
  31. .header .connected{
  32. width: 100%;
  33. display: flex;
  34. justify-content: space-between;
  35. }
  36. .btn{
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. box-sizing: border-box;
  41. border-radius: 3px;
  42. background-color: #00a790;
  43. color: white;
  44. padding: 5px 25px;
  45. width: auto;
  46. height: auto;
  47. box-shadow: 1px 1px 5px rgb(119, 119, 119);
  48. }
  49. .btn:active{
  50. background-color: #00a790;
  51. box-shadow: 1px 1px 3px black;
  52. }