mytodo.less 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. // mytodo页面专用样式
  2. ul li {
  3. list-style: none;
  4. }
  5. a {
  6. text-decoration: none;
  7. }
  8. .fl {
  9. float: left;
  10. }
  11. .fr {
  12. float: right;
  13. }
  14. .clearfix:before,
  15. .clearfix:after {
  16. content: '';
  17. display: table;
  18. }
  19. .clearfix:after {
  20. clear: both;
  21. overflow: hidden;
  22. }
  23. .clearfix {
  24. *zoom: 1;
  25. }
  26. /deep/ .ant-card-head-title {
  27. color: #1890ff;
  28. }
  29. //包着card
  30. .fullCard {
  31. height: 380px;
  32. /deep/ .ant-card-body {
  33. padding: 0 4px;
  34. }
  35. }
  36. // 日历
  37. .ccfullCalendar {
  38. height: 274px !important;
  39. // 年月选择消失
  40. /deep/ .ant-fullcalendar-header {
  41. display: none;
  42. }
  43. // 线消息
  44. /deep/ .ant-fullcalendar {
  45. border-top: none;
  46. }
  47. /deep/ .ant-fullcalendar-calendar-body {
  48. padding: 0;
  49. }
  50. /deep/ .fc .fc-toolbar.fc-header-toolbar {
  51. margin-bottom: 6px;
  52. }
  53. /deep/ .fc .fc-scrollgrid-liquid {
  54. height: 274px !important;
  55. }
  56. /deep/ .fc .fc-toolbar-title {
  57. font-size: 14px;
  58. letter-spacing: 1px;
  59. }
  60. /deep/ .fc-scrollgrid-sync-table {
  61. height: 274px !important;
  62. }
  63. /deep/ .fc-daygrid-day-bottom {
  64. margin-top: -10px !important;
  65. }
  66. /deep/ .fc .fc-button-primary {
  67. background-color: #1890ff;
  68. margin-top: 4px;
  69. border: none;
  70. }
  71. /deep/ .fc .fc-toolbar-title {
  72. color: #333;
  73. font-size: 16px;
  74. }
  75. }
  76. #home {
  77. // 第一行
  78. .topCard {
  79. // 等高设置
  80. .topColItem {
  81. // height: 380px;
  82. }
  83. .userImg {
  84. width: 80px;
  85. height: 80px;
  86. line-height: 30px;
  87. margin-right: 20px;
  88. img {
  89. border-radius: 6px;
  90. width: 100%;
  91. }
  92. }
  93. .userInfo {
  94. span {
  95. margin-left: 40px;
  96. display: block;
  97. line-height: 26px;
  98. .department {
  99. font-size: 14px;
  100. color: rgb(71, 70, 70);
  101. }
  102. }
  103. }
  104. // 消息
  105. .msgBox {
  106. text-align: center;
  107. background-color: rgba(236, 232, 232, 0.4);
  108. border-radius: 10px;
  109. em {
  110. margin: 0 10px;
  111. font-style: normal;
  112. margin-right: 50px;
  113. span {
  114. font-size: 30px;
  115. color: #fa6b5c;
  116. font-weight: 700;
  117. }
  118. p {
  119. font-size: 16px;
  120. }
  121. }
  122. }
  123. }
  124. // OA工作台
  125. .oaIcon {
  126. text-align: center;
  127. margin-right: 30px;
  128. float: left;
  129. h4 {
  130. margin-top: 10px;
  131. }
  132. }
  133. }
  134. // 公告
  135. .news {
  136. .notice {
  137. ul {
  138. margin: 0;
  139. padding: 0;
  140. li {
  141. line-height: 30px;
  142. a {
  143. font-size: 14px;
  144. color: #444;
  145. .department {
  146. margin-right: 10px;
  147. }
  148. .createBy {
  149. color: #333;
  150. }
  151. .createTime {
  152. color: rgb(164, 164, 164);
  153. margin: 0 4px 0 20px;
  154. }
  155. }
  156. a:hover {
  157. color: #1890ff;
  158. }
  159. }
  160. }
  161. }
  162. // 我的计划
  163. .total {
  164. span {
  165. display: block;
  166. line-height: 40px;
  167. strong {
  168. color: #fa6b5c;
  169. text-decoration: underline;
  170. margin-right: 4px;
  171. }
  172. }
  173. }
  174. // 友情链接
  175. .links {
  176. /deep/ .ant-card-body {
  177. padding: 20px;
  178. }
  179. button {
  180. border-radius: 2px;
  181. border: none;
  182. margin-right: 4px;
  183. background-color: rgba(102, 155, 188, 0.7);
  184. margin-bottom: 10px;
  185. a {
  186. color: white;
  187. font-size: 18px;
  188. padding: 10px 14px;
  189. }
  190. }
  191. button:hover {
  192. background-color: #003049;
  193. color: white;
  194. box-shadow: 1px 1px 3px #333;
  195. }
  196. }
  197. }