blob: 16dfb5aef5860e7bec4ff40f55ec9e97068648f5 (
plain)
| 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
 | ul {
    list-style-type: none;
    padding-left: 0px;
}
ul li span {
    float: left;
    width: 120px;
    margin-top: 6px;
}
div .left {
    float: left;
    align-items: stretch;
    width: 40%;
}
div .center {
    width: 50%;
    align-content: space-between;
}
div .center button {
    align-self: stretch;
}
div .right {
    float: right;
    align-items: stretch;
    width: 40%;
}
div .bottom {
    clear:both;
}
 |