小程序蓝牙通信例子
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.

41 lines
726 B

  1. page {
  2. color: #333;
  3. }
  4. .devices_summary {
  5. margin-top: 30px;
  6. padding: 10px;
  7. font-size: 16px;
  8. }
  9. .device_list {
  10. height: 300px;
  11. margin: 50px 5px;
  12. margin-top: 0;
  13. border: 1px solid #EEE;
  14. border-radius: 5px;
  15. width: auto;
  16. }
  17. .device_item {
  18. border-bottom: 1px solid #EEE;
  19. padding: 10px;
  20. color: #666;
  21. }
  22. .device_item_hover {
  23. background-color: rgba(0, 0, 0, .1);
  24. }
  25. .connected_info {
  26. position: fixed;
  27. bottom: 0;
  28. width: 100%;
  29. background-color: #F0F0F0;
  30. padding: 10px;
  31. padding-bottom: 20px;
  32. margin-bottom: env(safe-area-inset-bottom);
  33. font-size: 14px;
  34. min-height: 100px;
  35. box-shadow: 0px 0px 3px 0px;
  36. }
  37. .connected_info .operation {
  38. position: absolute;
  39. display: inline-block;
  40. right: 30px;
  41. }