summaryrefslogtreecommitdiff
path: root/editor/forms.css
blob: a75de928622e740276982639a973839c15475eeb (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
form .row::after {

    content: "";
    display: table;
    clear: both;

}

form .col-25 {
    float: left;
    width: 25%;
}

form .col-75 {
    float: left;
    width: 75%;
}

form label {
    padding: 12px 12px 12px 0px;
    display: inline-block;

}

form input[type="text"] {
    padding: 12px 0px;
    width: 100%;
}

input[type=submit] {
    float: right;
}