style.css 492 B

1234567891011121314151617181920212223242526272829
  1. body {
  2. font-size: 10px;
  3. line-height: 10px;
  4. box-sizing: border-box;
  5. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  6. }
  7. .container {
  8. max-width: 1200px;
  9. padding: 15px;
  10. text-align: center;
  11. }
  12. #box {
  13. width: 100%;
  14. height: 35vh;
  15. border: 1px solid #000000;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. font-size: 2em;
  20. }
  21. img {
  22. border-radius: 50%;
  23. overflow: hidden;
  24. }
  25. span {
  26. background-color: #fff;
  27. padding: 0 10px;
  28. line-height: 2em;
  29. }