bluetoothClock.wxss 710 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* page {
  2. height: 97%;
  3. } */
  4. .body-content{
  5. width: 100%;
  6. height: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. }
  10. .info_list_box{
  11. width: 100%;
  12. height: 100%;
  13. position: relative;
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. }
  18. .info_list {
  19. width: 98%;
  20. height: 98%;
  21. margin-top: 8px;
  22. margin-bottom: 8px;
  23. }
  24. .info_text_line_inline{
  25. width: 100%;
  26. display: flex;
  27. flex-direction: row;
  28. align-items: flex-start;
  29. color: black;
  30. }
  31. .info_text_line_inline_title{
  32. width: 50%;
  33. }
  34. .info_text_line_inline_content{
  35. width: 50%;
  36. text-align: left;
  37. color:#669999;
  38. font-size: small;
  39. }
  40. .info_text_line_center{
  41. text-align: center;
  42. }
  43. .datetime_font{
  44. color:#669999;
  45. }