student.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. .stu-box {
  2. --h: 128px;
  3. display: flex;
  4. flex-direction: column;
  5. }
  6. .stu-box .box-h {
  7. color: #fff;
  8. height: var(--h);
  9. width: 100%;
  10. background-image: linear-gradient(45deg, #005f61, #007f61);
  11. /*background-image: url('../../Image/Stu/bg-2.png');
  12. background-size: 100% 100%;
  13. background-repeat: no-repeat;*/
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. .stu-box .box-h .title {
  19. width: 100%;
  20. }
  21. .stu-box .box-h .title h3 {
  22. text-align: center;
  23. }
  24. .stu-box .box-h .title button {
  25. margin-top: 10px;
  26. min-width: 250px;
  27. border-radius: 25px;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. margin: 5px auto;
  32. }
  33. .stu-box .box-b {
  34. background: #f0faf9;
  35. width: 100%;
  36. height: calc(100vh - var(--h));
  37. }
  38. .stu-box .box-b .card .card-header a {
  39. color: #049e9a;
  40. }
  41. .stu-box .box-b .card .card-header a.active {
  42. color: #fff;
  43. background: #049e9a;
  44. }
  45. .stu-box .box-b .card .card-header a.active + .iwb-checkbox {
  46. color: #fff;
  47. }
  48. .stu-box .box-b .card .card-body {
  49. height: calc(100vh - var(--h) - 40px);
  50. padding: 10px;
  51. }
  52. .stu-box .box-b .card .card-body .content-box {
  53. display: flex;
  54. flex-wrap: wrap;
  55. }
  56. .stu-box .box-b .card .card-body .role-info {
  57. border: 1px solid #049e9a;
  58. background: #e2ebd7;
  59. border-radius: 4px;
  60. --h: 50px;
  61. height: var(--h);
  62. min-width: 150px;
  63. max-width: 190px;
  64. margin: 5px;
  65. padding: 0;
  66. display: flex;
  67. cursor: none;
  68. }
  69. .stu-box .box-b .card .card-body .role-info .image {
  70. width: var(--h);
  71. height: var(--h);
  72. padding: 8px;
  73. }
  74. .stu-box .box-b .card .card-body .role-info .image img {
  75. width: 100%;
  76. height: 100%;
  77. border-radius: 50%;
  78. }
  79. .stu-box .box-b .card .card-body .role-info .name {
  80. color: #3cb371;
  81. width: calc(100% - var(--h));
  82. padding: 0 8px;
  83. white-space: normal;
  84. display: flex;
  85. justify-content: center;
  86. align-items: center;
  87. }
  88. .stu-box .box-b .card .card-body .role-info.self {
  89. max-width: 200px;
  90. }
  91. .stu-box .box-b .card .card-body .role-info.self .input {
  92. width: calc(100% - 100px);
  93. }
  94. .stu-box .box-b .card .card-body .role-info.self .input input {
  95. color: #3cb371;
  96. width: 100%;
  97. background: transparent;
  98. line-height: var(--h);
  99. padding: 0 0 0 5px;
  100. border: none;
  101. outline: none;
  102. }
  103. .stu-box .box-b .card .card-body .role-info.self .image.add {
  104. cursor: pointer;
  105. }
  106. .stu-box .box-b .card .check-group {
  107. color: red;
  108. background: #e2ebd7;
  109. border: 1px solid #049e9a;
  110. border-radius: 20px;
  111. text-align: center;
  112. margin: 0 auto 5px;
  113. width: 60%;
  114. line-height: 30px;
  115. transition: background-color 0.5s;
  116. }
  117. .stu-box .box-b .card .check-group.hasCheck {
  118. color: #fff;
  119. background: #049e9a;
  120. }
  121. .stu-box .box-b .handle-box {
  122. display: flex;
  123. border: 1px solid #049e9a;
  124. border-radius: 5px;
  125. padding: 5px;
  126. margin: 15px 10px;
  127. background: rgba(255, 255, 255, 0.4);
  128. }
  129. .stu-box .box-b .handle-box .handle-role, .stu-box .box-b .handle-box .handle-content, .stu-box .box-b .handle-box .handle-button {
  130. padding: 5px 8px;
  131. display: flex;
  132. justify-content: center;
  133. align-items: center;
  134. }
  135. .stu-box .box-b .handle-box .handle-role .text, .stu-box .box-b .handle-box .handle-content .text, .stu-box .box-b .handle-box .handle-button .text {
  136. user-select: none;
  137. }
  138. .stu-box .box-b .handle-box .handle-role {
  139. width: 200px;
  140. }
  141. .stu-box .box-b .handle-box .handle-role.text-role {
  142. width: 150px;
  143. }
  144. .stu-box .box-b .handle-box .handle-role .form-control {
  145. font-size: 0.875rem;
  146. }
  147. .stu-box .box-b .handle-box .handle-role .text {
  148. text-align: right;
  149. width: 100%;
  150. font-size: 18px;
  151. font-weight: 600;
  152. word-break: break-word;
  153. }
  154. .stu-box .box-b .handle-box .handle-content {
  155. width: calc(100% - 350px);
  156. padding: 5px;
  157. }
  158. .stu-box .box-b .handle-box .handle-content .form-control {
  159. border: 1px solid #049e9a;
  160. border-radius: 5px;
  161. font-size: 0.875rem;
  162. }
  163. .stu-box .box-b .handle-box .handle-button {
  164. padding: 10px 5px;
  165. width: 150px;
  166. }
  167. .stu-box .box-b .handle-box .handle-button .btn {
  168. min-height: 50px;
  169. border-radius: 5px;
  170. }
  171. .stu-box .box-b .handle-box.leader {
  172. margin: 5px 10px;
  173. }
  174. .stu-box .box-b .handle-box.leader.has-send .role-text, .stu-box .box-b .handle-box.leader.has-send .text, .stu-box .box-b .handle-box.leader.has-send .content-text {
  175. color: #666;
  176. }
  177. .stu-box .box-b .handle-box.leader .handle-content {
  178. width: calc(100% - 150px);
  179. padding: 5px 10px 5px 5px;
  180. justify-content: left;
  181. color: #3c3c3c;
  182. }
  183. .stu-box .box-b .handle-box.leader .handle-content .role-text, .stu-box .box-b .handle-box.leader .handle-content .text {
  184. font-size: 18px;
  185. font-weight: 600;
  186. white-space: nowrap;
  187. }
  188. .stu-box .box-b .handle-box.leader .handle-content .text {
  189. padding: 0 5px;
  190. }
  191. .stu-box .box-b .handle-box.leader .handle-content .content-text {
  192. font-size: 16px;
  193. word-break: break-word;
  194. }
  195. .stu-box .box-b .handle-box.leader .handle-button {
  196. padding: 6px 5px;
  197. width: 150px;
  198. }
  199. .stu-box .box-b .handle-box.leader .handle-button .btn {
  200. min-height: 30px;
  201. border-radius: 5px;
  202. }
  203. .stu-box .box-b .handle-box .select2-container .select2-selection--single {
  204. height: 38px;
  205. }
  206. .stu-box .box-b .handle-box .select2-container--default .select2-selection--single .select2-selection__arrow {
  207. top: 6px;
  208. }