You are here

extra.css in YAML Form 8

Documentation styles.

File

docs/extra.css
View source
  1. /**
  2. * @file
  3. * Documentation styles.
  4. */
  5. h3 {
  6. clear: both;
  7. }
  8. .thumbnail {
  9. float: right;
  10. width: 300px;
  11. height: 200px;
  12. overflow: hidden;
  13. margin: 0 0 10px 20px;
  14. }
  15. @media only screen and (max-width: 600px) {
  16. .thumbnail {
  17. float: none;
  18. width: 100%;
  19. height: 300px;
  20. overflow: hidden;
  21. margin: 20px 0;
  22. }
  23. }
  24. @media only screen and (max-width: 480px) {
  25. .thumbnail {
  26. height: 200px;
  27. }
  28. }
  29. /**
  30. * Lightbox
  31. */
  32. .modal-dialog {
  33. width: 1024px;
  34. }
  35. @media only screen and (max-width: 1023px) {
  36. .modal-dialog {
  37. width: 95%;
  38. }
  39. }
  40. .modal-lightbox .img-responsive {
  41. margin: 0 auto;
  42. }
  43. /**
  44. * Sidebar
  45. */
  46. @media only screen and (max-width: 991px) {
  47. .col-md-3 {
  48. display: none;
  49. }
  50. }
  51. /**
  52. * Footer
  53. */
  54. footer center {
  55. display: none;
  56. }
  57. footer hr + center {
  58. display: block;
  59. }