index.wxss 460 B

123456789101112131415161718192021222324252627
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .content .one {
  9. text-align: center;
  10. }
  11. .content .one .one_1 {
  12. margin: 2vw 0;
  13. }
  14. .content .one .one_1 text {
  15. display: inline-block;
  16. width: 50vw;
  17. height: 50vw;
  18. text-align: center;
  19. line-height: 50vw;
  20. border-radius: 90%;
  21. background-color: #000000;
  22. color: #ffffff;
  23. font-weight: bold;
  24. font-size: 30px;
  25. font-family: cursive;
  26. }