You are here

panel.css in Zircon Profile 8

Panel styling. Panels are used to visually group items together.

File

themes/zircon/css/components/panel.css
View source
  1. /**
  2. * @file
  3. * Panel styling. Panels are used to visually group items together.
  4. */
  5. .panel {
  6. background: #fbfbfb;
  7. border: 1px solid #ccc;
  8. margin: 10px 0;
  9. padding: 0 5px 5px;
  10. }
  11. .panel__title {
  12. margin: 16px 7px;
  13. }
  14. .panel__content {
  15. padding: 0 4px 2px 8px; /* LTR */
  16. }
  17. [dir="rtl"] .panel__content {
  18. padding-right: 8px;
  19. padding-left: 4px;
  20. }