site.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. body {
  2. padding-top: 50px;
  3. padding-bottom: 20px;
  4. }
  5. /* Wrapping element */
  6. /* Set some basic padding to keep content from hitting the edges */
  7. .body-content {
  8. padding-left: 15px;
  9. padding-right: 15px;
  10. }
  11. /* Set widths on the form inputs since otherwise they're 100% wide */
  12. input,
  13. select,
  14. textarea {
  15. max-width: 280px;
  16. }
  17. /* Carousel */
  18. .carousel-caption p {
  19. font-size: 20px;
  20. line-height: 1.4;
  21. }
  22. /* buttons and links extension to use brackets: [ click me ] */
  23. .btn-bracketed::before {
  24. display: inline-block;
  25. content: "[";
  26. padding-right: 0.5em;
  27. }
  28. .btn-bracketed::after {
  29. display: inline-block;
  30. content: "]";
  31. padding-left: 0.5em;
  32. }
  33. /* Make .svg files in the carousel display properly in older browsers */
  34. .carousel-inner .item img[src$=".svg"] {
  35. width: 100%;
  36. }
  37. /* Hide/rearrange for smaller screens */
  38. @media screen and (max-width: 767px) {
  39. /* Hide captions */
  40. .carousel-caption {
  41. display: none;
  42. }
  43. }