index.scss
670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.menuMonitor {
position: relative;
background-color: #f0f2f5;
width: 100%;
}
.selectNone {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.menuFixed {
position: fixed;
top: 0;
width: 80%;
left: 10%;
background-color: #f0f2f5;
z-index: 3;
}
.btnFixed {
position: fixed;
top: 60px;
z-index: 4;
width: calc(80% - 20px);
left: 10%;
margin-left: 20px;
background-color: #FFFFFF;
padding-top: 20px;
}
.table_title {
/*padding-top 绝对定位后的元素距离顶部的距离*/
padding-top: 150px;
/*对应内边距,消除内边距撑开的距离*/
margin-top: -150px;
}