Sprankelprachtig aan/afmeldsysteem

application.scss 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * This is a manifest file that'll be compiled into application.css, which will include all the files
  3. * listed below.
  4. *
  5. * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
  6. * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
  7. *
  8. * You're free to add application-wide styles to this file and they'll appear at the bottom of the
  9. * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
  10. * files in this directory. Styles in this file should be added after the last require_* statement.
  11. * It is generally better to create a new file per style scope.
  12. *
  13. *= require_self
  14. *= require_tree .
  15. */
  16. @import "bootstrap-sprockets";
  17. @import "bootstrap";
  18. @import "font-awesome-sprockets";
  19. @import "font-awesome";
  20. /* Horizontally distribute ul items.
  21. *
  22. * Adapted from the following StackOverflow answer:
  23. * http://stackoverflow.com/a/13505797 , by user 'joshnh'
  24. * Licensed under CC-BY-SA 3.0 as per the StackOverflow TOS.
  25. *
  26. */
  27. ul.hdis {
  28. text-align: justify;
  29. padding-left: 0 !important;
  30. }
  31. ul.hdis:after {
  32. content: '';
  33. display: inline-block;
  34. width: 100%;
  35. }
  36. ul.hdis:before {
  37. content: '';
  38. display: block;
  39. margin-top: -1.25em;
  40. }
  41. ul.hdis li {
  42. display: inline-block;
  43. margin-right: -.25em;
  44. position: relative;
  45. top: 1.25em;
  46. }
  47. /* End of CC-BY-SA code. */
  48. /* Don't overlap with the menu. */
  49. body {
  50. padding-top: 70px;
  51. }