This repository has been archived by the owner on Nov 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css_global.h
172 lines (139 loc) · 2.27 KB
/
css_global.h
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
const char HTTP_ALL_STYLE[] PROGMEM = R"=====(
<style>
div {
white-space: nowrap;
}
input[type=text] {
width:95%;
}
.green {
color:green;
}
.red {
color:red;
}
.tdr {
float:right;
}
.tdl {
width: 1px;
}
.ckb{
float: right;
width: 18px;
text-align: right;
}
.cob {
border: 1px solid #ccc;
width: 180px;
border-radius: 3px;
overflow: hidden;
background: #fafafa no-repeat 90% 50%;
}
.cob select {
padding: 5px 8px;
border: none;
box-shadow: none;
background: transparent;
background-image: none;
webkit-appearance: none;
font-size: 1em;
}
.cob select:focus {
outline: none;
}
input.lnkbtn,input.fwbtn {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
}
body {
background-color: #303030;
}
.stpbtn {
color: #fff;
background-color: #FF0000;
}
input.lnkbtn,button,input.fwbtn{
cursor: pointer;
color:#fff;
line-height:2.4rem;
font-size:1.2rem;
width:100%;
padding:5px;
}
input,button,input.lnkbtn,input.fwbtn {
border: 0;
border-radius: 0.3rem;
}
.c{
text-align: center;
}
.k{
font-style:italic;
}
.fbg {
background-color: #eee;
}
div,input{
padding:5px;
font-size:1em;
}
.i {
text-align: right;
float: right;
width: 25% !important;
padding: 13px;
}
.btnWert {
width: 65%;
}
body{
text-align: center;
font-family:verdana;
}
.l{
no-repeat left center;
background-size: 1em;
}
.q{
float: right;
width: 64px;
text-align: right;
}
.ls {
font-weight: bold;
text-align: center;
font-size: 300%;
}
.lt{
font-size: 150%;
text-align: center;
}
table{
width:100%;
}
td{
max-width:50%;
font-weight: bold;
}
input.fwbtn {
display: none;
background-color: #ff0000;
}
</style>
)=====";
const char HTTP_HM_STYLE[] PROGMEM = R"=====(
<style>
input.lnkbtn,button{
background-color:#1fa3ec;
}
</style>
)=====";
const char HTTP_LOX_STYLE[] PROGMEM = R"=====(
<style>
input.lnkbtn,button{
background-color:#83b817;
}
</style>
)=====";