Blame view

src/assets/css/index.scss 1.88 KB
13b58a42   梁保满   备题组卷部分前端页面基本完成
1
2
3
4
5
  .answer-header {
    padding: 16px 40px 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
6
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
7
8
9
    .btn-box {
      display: flex;
    }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
10
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
11
    .sel-box {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
12
13
14
15
16
17
18
19
20
21
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
  
      .sel {
        width: 8%;
        min-width: 160px;
        margin-right: 20px;
      }
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
22
23
      .el-input__inner {
        border-radius: 20px;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
24
25
        border: 1px solid #e2e2e2;
        height: 36px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
26
27
        line-height: 34px;
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
28
29
30
  
      .el-input__icon {
        line-height: 34px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
31
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  
      .el-date-editor.el-input,
      .el-date-editor.el-input__inner {
        width: 160px;
      }
  
      .input-with-select {
        width: 200px;
        height: 36px;
        margin-right: 50px;
        border-radius: 20px;
        border: 1px solid #e2e2e2;
        box-sizing: border-box;
  
        .el-input__inner {
          border-radius: 20px;
          border: none;
          height: 34px;
          line-height: 34px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
51
        }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
52
53
54
55
56
  
        .el-input-group__append,
        .el-input-group__prepend {
          border: none;
          background: transparent;
13b58a42   梁保满   备题组卷部分前端页面基本完成
57
58
        }
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  
      .p1 {
        flex: 1;
  
        .s1 {
          margin-left: 36px;
          cursor: pointer;
          color: #7f7f7f;
  
          &:hover {
            color: #409eff;
          }
  
          &.active {
            color: #667ffd;
          }
        }
      }
    }
  }
  .answer-box {
    .answer-s {
      display: inline-block;
      width: 30px;
      height: 30px;
      border: 1px solid #e2e2e2;
      border-radius: 3px;
      margin: 0 6px;
      font-size: 16px;
      color: #333;
      text-align: center;
      line-height: 30px;
      &.active {
        background: #5e78fa;
        border-color: #5e78fa;
        color: #fff;
      }
13b58a42   梁保满   备题组卷部分前端页面基本完成
96
97
    }
  }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
  .el-menu-item i {
    width: 12px;
    text-align: center;
    margin-right: 8px;
  }
  
  .el-table thead th.el-table__cell {
    background: #f5f7fa;
  }
  
  .el-menu--popup {
    min-width: 160px;
  }
  .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
13b58a42   梁保满   备题组卷部分前端页面基本完成
115
  }