地质所 沉降监测网建设项目
zmk
2024-05-15 9e3afc6d0fa514f986d3fea40fa23124e6fb5070
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
@charset "utf-8";
 
.editormd-grid-table {
    width: 99%;
    display: table;
    border: 1px solid #ddd;
    border-collapse: collapse;
}
 
.editormd-grid-table-row {
    width: 100%;
    display: table-row;
 
    a {
        font-size: 1.4em;
        width: 5%;
        height: 36px;
        color: #999;
        text-align: center;
        display: table-cell;
        vertical-align: middle;
        border: 1px solid #ddd;
        text-decoration: none;
        @include transition(background-color 300ms ease-out, color 100ms ease-in);
 
        &.selected {
            color: #666;
            background-color: #eee;                
        }
 
        &:hover {
            color: #777;
            background-color: #f6f6f6;
        }
    }
}