site.css 652 B

123456789101112131415161718192021222324252627282930313233343536
  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. /* Carousel */
  12. .carousel-caption p {
  13. font-size: 20px;
  14. line-height: 1.4;
  15. }
  16. /* Make .svg files in the carousel display properly in older browsers */
  17. .carousel-inner .item img[src$=".svg"] {
  18. width: 100%;
  19. }
  20. /* QR code generator */
  21. #qrCode {
  22. margin: 15px;
  23. }
  24. /* Hide/rearrange for smaller screens */
  25. @media screen and (max-width: 767px) {
  26. /* Hide captions */
  27. .carousel-caption {
  28. display: none;
  29. }
  30. }