You are here

bartlett.css in Panels Extra Layouts 7.2

Bartlett panel layout

File

plugins/layouts/bartlett/bartlett.css
View source
  1. /**
  2. * @file
  3. * Bartlett panel layout
  4. **/
  5. .bartlett-container,
  6. .bartlett-content-header {
  7. margin-bottom: 1em;
  8. }
  9. .bartlett-column {
  10. width: 34.043%;
  11. float: left;
  12. }
  13. .bartlett-column-inner {
  14. margin-right: 20px;
  15. }
  16. .bartlett-content-container { /* This is floated to the left of the sidebar,
  17. which is styled by the generic "bartlett-column" class */
  18. float: left;
  19. width: 65.957%;
  20. }
  21. .bartlett-content-container .bartlett-content-column1 {
  22. width: 51.613%;
  23. }
  24. .bartlett-content-container .bartlett-content-column2 {
  25. width: 48.387%;
  26. }
  27. .bartlett-content-column2-inner {
  28. margin-right: 0;
  29. }
  30. /* iPhone [portrait + landscape] */
  31. @media only screen and (max-width: 480px) {
  32. .bartlett-column,
  33. .bartlett-content-container,
  34. .bartlett-content-container .bartlett-content-column1,
  35. .bartlett-content-container .bartlett-content-column2 {
  36. width: 100%;
  37. float: none;
  38. }
  39. .bartlett-column-inner {
  40. margin-right: 0;
  41. }
  42. }