Blame view

src/assets/css/base.css 540 Bytes
d4283687   梁保满   首页布局完成,页面顶部返回组件
1
2
3
4
  * {
    margin: 0px;
    padding: 0px;
  }
65f592b6   梁保满   答题卡列表页
5
  
d4283687   梁保满   首页布局完成,页面顶部返回组件
6
7
  html,
  body {
65f592b6   梁保满   答题卡列表页
8
    height: 100%;
d4283687   梁保满   首页布局完成,页面顶部返回组件
9
10
11
12
13
14
15
16
17
18
19
20
    overflow: hidden;
    background-color: #fff;
    font-size: 14px;
    color: #333333;
  }
  
  li {
    list-style: none;
  }
  
  a {
    text-decoration: none;
65f592b6   梁保满   答题卡列表页
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  }
  
  /* element-style */
  .el-button--default{
    color: #667ffd;
    border-color: #667ffd;
  }
  .el-button--primary {
    background-color: #667ffd;
    border-color: #667ffd;
  }
  .el-radio__input.is-checked+.el-radio__label{
    color: #667ffd;
  }
  .el-radio__input.is-checked .el-radio__inner{
    border-color: #667ffd;
      background: #667ffd;
d4283687   梁保满   首页布局完成,页面顶部返回组件
38
  }