learning-complete.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .completed-body{
  2. width: 100%;
  3. height: calc(100vh - var(--height-header));
  4. overflow: auto;
  5. display: flex;
  6. padding-bottom: 150px;
  7. background: #f0f0f0;
  8. }
  9. .main-body-container{
  10. box-shadow: none;
  11. max-width: 100%;
  12. }
  13. .completed-body .body-cover{
  14. display: inline-block;
  15. padding: 30px 15px 10px;
  16. text-align: center;
  17. margin: auto;
  18. }
  19. .completed-title{
  20. font-family: opensanslight;
  21. font-size: 20px;
  22. margin: 0px auto ;
  23. max-width: 350px;
  24. }
  25. .completed-topic-name{
  26. font-family: opensanssemibold;
  27. font-size: 20px;
  28. margin-bottom: 20px;
  29. }
  30. .completed-icon img{
  31. height: 200px;
  32. }
  33. .completed-detail{
  34. font-family: opensanslight;
  35. font-size: 15px;
  36. line-height: 21px;
  37. text-align: center;
  38. max-width: 265px;
  39. margin: auto;
  40. margin-top: 15px;
  41. }
  42. .completed-bottom{
  43. position: fixed;
  44. width: 100%;
  45. height: 140px;
  46. left: 0px;
  47. bottom: 0px;
  48. right: 0px;
  49. background: #E7E7E7;
  50. padding: 0px 30px;
  51. }
  52. .completed-bottom-cover{
  53. display: flex;
  54. width: 100%;
  55. height: 100%;
  56. max-width: 1140px;
  57. margin: auto;
  58. }
  59. .completed-bottom .completed-button{
  60. display: inline-block;
  61. width: 150px;
  62. height: 50px;
  63. line-height: 48px;
  64. text-align: center;
  65. text-decoration: none;
  66. border: 1px solid;
  67. outline: 0px;
  68. border-radius: 30px;
  69. font-size: 13px;
  70. font-family: opensanssemibold;
  71. margin: auto;
  72. }
  73. .completed-button.button-relearn{
  74. color: var(--color-main-white);
  75. border-color: var(--color-main-red);
  76. background: var(--color-main-red);
  77. margin-left: 0px;
  78. }
  79. .completed-button.button-test{
  80. color: var(--color-main-white);
  81. background: var(--color-main-green);
  82. border-color: var(--color-main-green);
  83. margin-right: 0px;
  84. }
  85. @media (max-width: 500px){
  86. .completed-bottom{
  87. display: grid;
  88. padding: 15px;
  89. }
  90. .completed-button.button-relearn{
  91. margin: auto;
  92. }
  93. .completed-button.button-test{
  94. margin: auto;
  95. }
  96. }