mirror of https://github.com/arendst/Tasmota.git
12 lines
747 B
C
12 lines
747 B
C
const char HTTP_HEAD_STYLE2[] PROGMEM =
|
|
"button{border:0;border-radius:0.3rem;background:#%06x;color:#%06x;line-height:2.4rem;font-size:1.2rem;width:100%%;-webkit-transition-duration:0.4s;transition-duration:0.4s;cursor:pointer;}" // COLOR_BUTTON, COLOR_BUTTON_TEXT
|
|
"button:hover{background:#%06x;}" // COLOR_BUTTON_HOVER
|
|
".bred{background:#%06x;}" // COLOR_BUTTON_RESET
|
|
".bred:hover{background:#%06x;}" // COLOR_BUTTON_RESET_HOVER
|
|
".bgrn{background:#%06x;}" // COLOR_BUTTON_SAVE
|
|
".bgrn:hover{background:#%06x;}" // COLOR_BUTTON_SAVE_HOVER
|
|
"a{color:#%06x;text-decoration:none;}" // COLOR_BUTTON
|
|
".p{float:left;text-align:left;}"
|
|
".q{float:right;text-align:right;}"
|
|
".r{border-radius:0.3em;padding:2px;margin:6px 2px;}";
|