| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .test-card {
- height: 200px;
- width: 340px;
- }
- .test-card__header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 40px;
- }
- .test-card__name {
- font-size: 20px;
- font-weight: 500;
- width: 80%;
- }
- /*.test-card__status {*/
- /* font-size: 16px;*/
- /*}*/
- .test-card__tag {
- font-size: 12px;
- border-radius: 10px;
- margin-bottom: 4px;
- padding: 2px 6px;
- }
- .not-start{
- color: #409EFF;
- background: #ecf5ff;
- border-color: #b3d8ff;
- }
- .has-started{
- color: #67C23A;
- background-color: #f0f9eb;
- border-color: #c2e7b0;
- }
- .finished{
- color: #606266;
- background-color: #DCDFE6;
- }
- .test-card__option{
- /*display: flex;*/
- justify-content: space-between;
- }
- .test-card__time {
- margin-top: 16px;
- font-size: 15px;
- color: #999999;
- }
- .test-card__btn{
- margin-top: 10px;
- display: flex;
- /*flex-direction: column;*/
- align-items: center;
- /*height: 90px;*/
- justify-content: left;
- }
- .test-card__btn >>> .el-button{
- margin-left: 0;
- width: 72px;
- padding-left: 0;
- padding-right: 0;
- }
- .test-card__btn >>> .el-button:first-of-type{
- margin-right: 10px;
- }
- /*.test-card__invigilate{*/
- /* color: #333333;*/
- /* font-weight: 400;*/
- /* font-size: 18px;*/
- /* margin-top: 16px;*/
- /*}*/
|