gojuuonn.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .container {
  2. position: relative;
  3. }
  4. .container,
  5. .mojicontainer {
  6. display: flex;
  7. flex-direction: row;
  8. flex-wrap: wrap;
  9. align-items: flex-start;
  10. justify-content: flex-start;
  11. box-sizing: border-box;
  12. padding: 0;
  13. }
  14. .mojicontainer {
  15. background-color: #e0dac2;
  16. width: 100vw;
  17. align-content: flex-start;
  18. overflow-y: auto;
  19. overflow-x: hidden;
  20. }
  21. .mojidiv {
  22. width: 20%;
  23. border: 2rpx solid #ccc;
  24. box-sizing: border-box;
  25. }
  26. .mojidiv.sannbunn {
  27. width: 33.3333%;
  28. }
  29. .mojidiv view {
  30. text-align: center;
  31. }
  32. .mojidiv .moji-gana {
  33. height: 60rpx;
  34. line-height: 60rpx;
  35. color: #ac7346;
  36. }
  37. .moji-roomaji {
  38. background-color: #e4bfb6;
  39. height: 40rpx;
  40. color: #fff;
  41. }
  42. .footTabBar {
  43. display: flex;
  44. position: absolute;
  45. bottom: 0;
  46. left: 0;
  47. height: 100rpx;
  48. width: 100%;
  49. border-top: 2rpx solid #ccc;
  50. justify-content: space-around;
  51. align-items: center;
  52. background-color: #e4bfb6;
  53. color: #ac7346;
  54. }
  55. .tabnow {
  56. color: #fff;
  57. }