You are here

boxout.css in Boxout 8

/* CSS for admin interface and front-end */
.boxout.default {
  float: right;
  width: 45%;
  margin: .4em 0 .4em 1em;
  background: #e6ecef;
  padding: 0.5em;
  border-top: 6px solid #f2b250;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  line-height: 1.4;
}
.boxout.default p {
  line-height: 1.4;
}
.boxout.default p:last-child {
  margin-bottom: 0;
}
.boxout.plain {
  float: none;
  margin: .4em 0 .4em 0;
  background: #efefef;
  padding: 0.4em;
  border: 1px solid #ccc;
  width: 100%;
}

File

css/boxout.css
View source
  1. /* CSS for admin interface and front-end */
  2. .boxout.default {
  3. float: right;
  4. width: 45%;
  5. margin: .4em 0 .4em 1em;
  6. background: #e6ecef;
  7. padding: 0.5em;
  8. border-top: 6px solid #f2b250;
  9. -webkit-border-radius: 3px;
  10. -moz-border-radius: 3px;
  11. border-radius: 3px;
  12. line-height: 1.4;
  13. }
  14. .boxout.default p {
  15. line-height: 1.4;
  16. }
  17. .boxout.default p:last-child {
  18. margin-bottom: 0;
  19. }
  20. .boxout.plain {
  21. float: none;
  22. margin: .4em 0 .4em 0;
  23. background: #efefef;
  24. padding: 0.4em;
  25. border: 1px solid #ccc;
  26. width: 100%;
  27. }