edittable.css 1.2 KB
Newer Older
1 2 3 4
body{
    overflow: hidden;
    width: 540px;
}
5 6 7
.wrapper {
    margin: 10px auto 0;
    font-size: 12px;
许恒 已提交
8
    overflow: hidden;
9 10
    width: 520px;
    height: 275px;
许恒 已提交
11 12 13 14
}

.clear {
    clear: both;
15 16 17 18 19 20 21 22 23 24 25 26 27 28
}

.wrapper .left {
    float: left;
    margin-left: 10px;;
}

.wrapper .right {
    float: right;
    border-left: 2px dotted #EDEDED;
    padding-left: 15px;
}

.section {
29 30
    margin-bottom: 15px;
    width: 240px;
许恒 已提交
31
    overflow: hidden;
32 33 34 35 36 37 38 39 40 41 42 43 44
}

.section h3 {
    font-weight: bold;
    padding: 5px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #EDEDED;
    font-size: 12px;
}

.section ul {
    list-style: none;
    overflow: hidden;
45 46
    clear: both;

47 48 49 50
}

.section li {
    float: left;
51
    width: 120px;;
52 53
}

许恒 已提交
54
.section .tone {
55 56 57
    width: 80px;;
}

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
.section .preview {
    width: 220px;
}

.section .preview table {
    text-align: center;
    vertical-align: middle;
    color: #666;
}

.section .preview caption {
    font-weight: bold;
}

.section .preview td {
许恒 已提交
73 74
    border-width: 1px;
    border-style: solid;
75 76 77 78 79 80 81 82 83 84
    height: 22px;
}

.section .preview th {
    border-style: solid;
    border-color: #DDD;
    border-width: 2px 1px 1px 1px;
    height: 22px;
    background-color: #F7F7F7;
}