styles.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* Mostly cherrypicked from bootstrap https://getbootstrap.com/css/ */
  2. .btn {
  3. display: inline-block;
  4. margin-bottom: 0;
  5. font-weight: normal;
  6. text-align: center;
  7. vertical-align: middle;
  8. border-right: none;
  9. border-bottom: none;
  10. color: #666;
  11. text-decoration: none;
  12. transition: all .2s;
  13. touch-action: manipulation;
  14. cursor: pointer;
  15. border: 1px solid transparent;
  16. white-space: nowrap;
  17. padding: 6px 16px;
  18. font-size: 13px;
  19. line-height: 1.846;
  20. border-radius: 3px;
  21. -webkit-user-select: none;
  22. -moz-user-select: none;
  23. }
  24. .btn:hover, .btn:focus, .btn.focus {
  25. color: #666;
  26. text-decoration: none;
  27. }
  28. textarea, textarea.form-control, input.form-control, input[type="text"], input[type="password"], input[type="email"], input[type="number"], .form-control[type="text"], .form-control[type="password"], .form-control[type="email"], .form-control[type="tel"] {
  29. padding: 0;
  30. border: none;
  31. border-radius: 0;
  32. -webkit-box-shadow: inset 0 -1px 0 #ddd;
  33. box-shadow: inset 0 -1px 0 #ddd;
  34. font-size: 1.1em;
  35. }
  36. .form-control {
  37. display: block;
  38. width: 100%;
  39. height: 37px;
  40. line-height: 1.846;
  41. color: #666;
  42. background-color: transparent;
  43. background-image: none;
  44. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  45. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  46. -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  47. transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  48. }
  49. input, button {
  50. -webkit-font-smoothing: antialiased;
  51. letter-spacing: .1px;
  52. text-rendering: optimizeLegibility;
  53. }
  54. a {
  55. text-decoration: none;
  56. }
  57. a:hover, a:focus {
  58. color: #165d16;
  59. text-decoration: underline;
  60. }