1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- const char PAGE_Style_css[] PROGMEM = R"=====(
- body { color: #000000; font-family: avenir, helvetica, arial, sans-serif; letter-spacing: 0.15em;}
- hr { background-color: #eee; border: 0 none; color: #eee; height: 1px; }
- .btn, .btn:link, .btn:visited {
- border-radius: 0.3em;
- border-style: solid;
- border-width: 1px;
- color:
- display: inline-block;
- font-family: avenir, helvetica, arial, sans-serif;
- letter-spacing: 0.15em;
- margin-bottom: 0.5em;
- padding: 1em 0.75em;
- text-decoration: none;
- text-transform: uppercase;
- -webkit-transition: color 0.4s, background-color 0.4s, border 0.4s;
- transition: color 0.4s, background-color 0.4s, border 0.4s;
- }
- .btn:hover, .btn:focus {
- color:
- border: 1px solid
- -webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
- transition: background-color 0.3s, color 0.3s, border 0.3s;
- }
- .btn:active {
- color:
- border: 1px solid
- -webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
- transition: background-color 0.3s, color 0.3s, border 0.3s;
- }
- .btn--s
- {
- font-size: 12px;
- }
- .btn--m {
- font-size: 14px;
- }
- .btn--l {
- font-size: 20px; border-radius: 0.25em !important;
- }
- .btn--full, .btn--full:link {
- border-radius: 0.25em;
- display: block;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- width: 100%;
- }
- .btn--blue:link, .btn--blue:visited {
- color:
- background-color:
- }
- .btn--blue:hover, .btn--blue:focus {
- color:
- background-color:
- border-color:
- }
- .btn--blue:active {
- color:
- background-color:
- }
- @media screen and (min-width: 32em) {
- .btn--full {
- max-width: 16em !important; }
- }
- )=====";
-
|