Page_Style.css.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. const char PAGE_Style_css[] PROGMEM = R"=====(
  2. body { color: #000000; font-family: avenir, helvetica, arial, sans-serif; letter-spacing: 0.15em;}
  3. hr { background-color: #eee; border: 0 none; color: #eee; height: 1px; }
  4. .btn, .btn:link, .btn:visited {
  5. border-radius: 0.3em;
  6. border-style: solid;
  7. border-width: 1px;
  8. color: #111;
  9. display: inline-block;
  10. font-family: avenir, helvetica, arial, sans-serif;
  11. letter-spacing: 0.15em;
  12. margin-bottom: 0.5em;
  13. padding: 1em 0.75em;
  14. text-decoration: none;
  15. text-transform: uppercase;
  16. -webkit-transition: color 0.4s, background-color 0.4s, border 0.4s;
  17. transition: color 0.4s, background-color 0.4s, border 0.4s;
  18. }
  19. .btn:hover, .btn:focus {
  20. color: #7FDBFF;
  21. border: 1px solid #7FDBFF;
  22. -webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
  23. transition: background-color 0.3s, color 0.3s, border 0.3s;
  24. }
  25. .btn:active {
  26. color: #0074D9;
  27. border: 1px solid #0074D9;
  28. -webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
  29. transition: background-color 0.3s, color 0.3s, border 0.3s;
  30. }
  31. .btn--s
  32. {
  33. font-size: 12px;
  34. }
  35. .btn--m {
  36. font-size: 14px;
  37. }
  38. .btn--l {
  39. font-size: 20px; border-radius: 0.25em !important;
  40. }
  41. .btn--full, .btn--full:link {
  42. border-radius: 0.25em;
  43. display: block;
  44. margin-left: auto;
  45. margin-right: auto;
  46. text-align: center;
  47. width: 100%;
  48. }
  49. .btn--blue:link, .btn--blue:visited {
  50. color: #fff;
  51. background-color: #0074D9;
  52. }
  53. .btn--blue:hover, .btn--blue:focus {
  54. color: #fff !important;
  55. background-color: #0063aa;
  56. border-color: #0063aa;
  57. }
  58. .btn--blue:active {
  59. color: #fff;
  60. background-color: #001F3F; border-color: #001F3F;
  61. }
  62. @media screen and (min-width: 32em) {
  63. .btn--full {
  64. max-width: 16em !important; }
  65. }
  66. )=====";