You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
1.6 KiB

  1. /*
  2. * What follows is the result of much research on cross-browser styling.
  3. * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
  4. * Kroc Camen, and the H5BP dev community and team.
  5. */
  6. /* ==========================================================================
  7. Base styles: opinionated defaults
  8. ========================================================================== */
  9. html {
  10. color: #222;
  11. font-size: 1em;
  12. line-height: 1.4;
  13. }
  14. /*
  15. * Remove text-shadow in selection highlight:
  16. * https://twitter.com/miketaylr/status/12228805301
  17. *
  18. * These selection rule sets have to be separate.
  19. * Customize the background color to match your design.
  20. */
  21. ::selection {
  22. background: #b3d4fc;
  23. text-shadow: none;
  24. }
  25. /*
  26. * A better looking default horizontal rule
  27. */
  28. hr {
  29. display: block;
  30. height: 1px;
  31. border: 0;
  32. border-top: 1px solid #ccc;
  33. margin: 1em 0;
  34. padding: 0;
  35. }
  36. /*
  37. * Remove the gap between audio, canvas, iframes,
  38. * images, videos and the bottom of their containers:
  39. * https://github.com/h5bp/html5-boilerplate/issues/440
  40. */
  41. audio,
  42. canvas,
  43. iframe,
  44. img,
  45. svg,
  46. video {
  47. vertical-align: middle;
  48. }
  49. /*
  50. * Remove default fieldset styles.
  51. */
  52. fieldset {
  53. border: 0;
  54. margin: 0;
  55. padding: 0;
  56. }
  57. /*
  58. * Allow only vertical resizing of textareas.
  59. */
  60. textarea {
  61. resize: vertical;
  62. }
  63. /* ==========================================================================
  64. Browser Upgrade Prompt
  65. ========================================================================== */
  66. .browserupgrade {
  67. margin: 0.2em 0;
  68. background: #ccc;
  69. color: #000;
  70. padding: 0.2em 0;
  71. }