123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- // mytodo页面专用样式
- #home {
- // 第一行
- .firstLine {
- .userImg {
- width: 50px;
- height: 50px;
- img {
- border-radius: 50%;
- width: 100%;
- }
- }
- .userInfo {
- line-height: 20px;
- color: #333;
- p {
- margin-top: 20px;
- }
- em {
- font-style: normal;
- }
- }
- // 消息
- .msgBox {
- text-align: center;
- background-color: rgba(236, 232, 232, 0.4);
- border-radius: 2px;
- span {
- font-size: 28px;
- color: orangered;
- }
- p {
- color: gray;
- }
- }
- // OA工作台
- .oaBig {
- background-color: rgb(97, 190, 167);
- text-align: center;
- justify-content: space-between;
- .oaItem {
- margin-bottom: 20px;
- width: calc((100% - 10px) / 3);
- h4 {
- font-size: 12px;
- margin-top: 4px;
- }
- }
- }
- }
- // 第二行
- .secondLine {
- // 友情链接
- .links {
- button {
- border-radius: 2px;
- border: none;
- margin-right: 10px;
- background-color: rgba(102, 155, 188, 0.7);
- margin-bottom: 10px;
- a {
- color: white;
- font-size: 18px;
- padding: 10px 14px;
- }
- }
- button:hover {
- background-color: #003049;
- color: white;
- box-shadow: 1px 1px 3px #333;
- }
- }
- }
- // card 标题颜色
- /deep/ .ant-card-head-title {
- color: #1890ff;
- }
- /deep/ .ant-tabs {
- border-radius: 2px;
- }
- // 日历
- .ccfullCalendar {
- background-image: url('../date03.jpg');
- opacity: 0.8;
- background-size: cover;
- background-repeat: no-repeat;
- // 不需要日历头部选择按钮
- /deep/ .fc-header-toolbar {
- display: none !important;
- }
- //整个历真实高度
- /deep/ .fc .fc-scrollgrid-liquid {
- height: 290px;
- }
- //控制日历不要占位
- /deep/ .fc-view-harness-active {
- height: 290px !important;
- }
- // 日历行高字体颜色
- /deep/ .fc-scrollgrid-sync-inner {
- line-height: 30px;
- a {
- color: white;
- }
- }
- /deep/ .fc-col-header-cell-cushion {
- color: #333 !important;
- font-weight: 400 !important;
- }
- // 今天日历显示
- /deep/ .fc-day-today {
- // background-color: #bc4749;
- background-color: #70a288;
- border-radius: 2px;
- a {
- color: white;
- font-weight: 700;
- }
- }
- /deep/ .fc-daygrid-day-bottom {
- margin-top: -24px !important;
- }
- /deep/ .fc .fc-button-primary {
- background-color: #1890ff;
- margin-top: 4px;
- border: none;
- }
- /deep/ .fc .fc-toolbar-title {
- color: #333;
- font-size: 16px;
- letter-spacing: 1px;
- }
- }
- .dataStyle {
- /deep/ .ant-card-body {
- padding: 12px 10px;
- }
- }
- }
|