Navigation.css 982 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .body{
  2. position: absolute;
  3. transform: translate(-50%,-50%);
  4. top: 50%;
  5. left: 50%;
  6. width: 30rem;
  7. height: 30rem;
  8. }
  9. .back-hall{
  10. position:absolute;
  11. top: -3rem;
  12. left: 0rem;
  13. }
  14. .back-hall button {
  15. height: 2rem;
  16. width: 6rem;
  17. }
  18. .nav-grid{
  19. display: grid;
  20. grid-template-columns: repeat(3, 1fr);
  21. grid-template-rows: 4rem;
  22. position: relative;
  23. bottom: 2rem;
  24. border: 1px solid black;
  25. }
  26. /* .nav-item{
  27. border: 0.01rem solid red;
  28. } */
  29. .beginGame{
  30. width: 8rem;
  31. margin: 0 auto;
  32. display: inherit;
  33. margin-top: 1rem;
  34. height: 2rem;
  35. border-radius: 5%;
  36. }
  37. .avatar{
  38. height: 100%;
  39. width: 4rem;
  40. }
  41. .right-avatar{
  42. float: right;
  43. }
  44. .user-text{
  45. width: 5.9rem;
  46. display: inline-block;
  47. font-size: .8rem;
  48. text-align: center;
  49. line-height: 1.2rem;
  50. overflow: hidden;
  51. }
  52. .text-box{
  53. width: 5.9rem;
  54. height: 100%;
  55. display: inline-block;
  56. vertical-align:top;
  57. padding-top: .5rem;
  58. }