index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. @charset "utf-8";
  2. #exercise {
  3. .code-module {
  4. padding: 80px 250px;
  5. text-align: center;
  6. .title {
  7. font-size: 18px;
  8. margin-bottom: 24px;
  9. }
  10. .input-block {
  11. margin-bottom: 24px;
  12. .input {
  13. width: 350px;
  14. input {
  15. border-top-left-radius: 22px;
  16. border-bottom-left-radius: 22px;
  17. }
  18. }
  19. .button {
  20. width: 150px;
  21. height: 44px;
  22. line-height: 28px;
  23. border-top-right-radius: 22px;
  24. border-bottom-right-radius: 22px;
  25. }
  26. .error {
  27. color: #ff7554;
  28. text-align: left;
  29. }
  30. }
  31. .tip {
  32. .left {
  33. float: left;
  34. }
  35. .right {
  36. float: right;
  37. }
  38. }
  39. }
  40. .work-body {
  41. .work-nav {
  42. margin-bottom: 20px;
  43. .left {
  44. display: inline-block;
  45. padding-left: 5px;
  46. font-size: 16px;
  47. font-weight: 600;
  48. }
  49. .right {
  50. float: right;
  51. }
  52. }
  53. }
  54. .sentence-code {
  55. margin-top: -10px;
  56. margin-bottom: 10px;
  57. a {
  58. margin: 3px;
  59. }
  60. }
  61. }
  62. .code-module-modal {
  63. .title {
  64. height: 38px;
  65. line-height: 38px;
  66. font-size: 18px;
  67. border-bottom: 1px solid #fff;
  68. font-weight: bold;
  69. }
  70. .desc {
  71. text-align: center;
  72. margin-top: 20px;
  73. margin-bottom: 20px;
  74. height: 100px;
  75. .input {
  76. width: 100%;
  77. background: #fff;
  78. input {
  79. background: #f7f7f7;
  80. border: none;
  81. }
  82. }
  83. .tip {
  84. .left {
  85. float: left;
  86. }
  87. .right {
  88. float: right;
  89. }
  90. }
  91. .error {
  92. color: #ff7554;
  93. text-align: left;
  94. width: 50%;
  95. float: left;
  96. }
  97. }
  98. .btn-list {
  99. text-align: center;
  100. margin-bottom: 15px;
  101. .btn {
  102. display: inline-block;
  103. width: 70px;
  104. line-height: 35px;
  105. height: 35px;
  106. border: 1px solid #fff;
  107. background: #006DAA;
  108. cursor: pointer;
  109. }
  110. .btn:hover {
  111. background: darken(#006DAA, 5);
  112. }
  113. }
  114. }