index.wxss 733 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**index.wxss**/
  2. .userinfo {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. color: #aaa;
  7. }
  8. .userinfo-avatar {
  9. overflow: hidden;
  10. width: 128rpx;
  11. height: 128rpx;
  12. margin: 20rpx;
  13. border-radius: 50%;
  14. }
  15. .usermotto {
  16. margin-top: 200px;
  17. }
  18. .header{
  19. width: 100%;
  20. height: 35px;
  21. border-bottom: 1px solid gray;
  22. display: flex;
  23. align-items: center;
  24. font-size: 16px;
  25. padding: 0 5px;
  26. }
  27. .header .state-info{
  28. font-size: 18px;
  29. width: 120px;
  30. padding-left: 10px;
  31. border-right: 1px solid gray;
  32. display: flex;
  33. align-items: center;
  34. }
  35. .led{
  36. width: 5px;
  37. height: 5px;
  38. }
  39. .header .state-msg{
  40. width: 100%;
  41. overflow:hidden;
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. }