aboutsummaryrefslogtreecommitdiff
path: root/platformio/common/static/style.css
blob: 32bd02c86fbba9202996e06039ac7ad59ea95cd9 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body, html {
    padding: 0;
    margin: 0;
}
body, button, input[type="text"], input[type="password"] {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
}

.title {
    padding: 10px 10px 6px;
    font-weight: 600;
    background-color: #eff2f5;
    border-bottom: 1px #d9e0e7 solid;
    color: #276eb4;
    font-size: 15px;
}
.block {
    padding: 10px;
}
.full-width {
    width: 100%;
    box-sizing: border-box;
}

.form_label {
    padding: 0 0 3px;
    font-weight: 600;
}
.form_input {
    margin-bottom: 15px;
}
.form_sublabel {
    padding-top: 3px;
}

input[type="text"],
input[type="password"],
select {
    border-radius: 4px;
    border: 1px #c9cccf solid;
    padding: 7px 9px;
    outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
select:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
input[type="text"]:disabled,
input[type="password"]:disabled,
select:disabled {
    background-color: #f1f2f3;
    border-color: #f1f2f3;
}

button {
    border-radius: 4px;
    border: 1px #c9cccf solid;
    padding: 7px 15px;
    outline: none;
    background: #fff;
    color: #000; /* fix for iOS */
    position: relative;
    line-height: 18px;
    font-weight: 600;
}
button:disabled {
    background-color: #f1f2f3;
    border-color: #f1f2f3;
}
button:not(:disabled):hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border-color: #b5cce3;
    color: #276eb4;
}
button:not(:disabled):active {
    top: 1px;
}

button.is_reset,
button.is_reset:not(:disabled):hover {
    color: #e63917;
}