You are here

formatter_suite.branding.css in Formatter Suite 8

Styles for module branding.

File

css/formatter_suite.branding.css
View source
  1. /**
  2. * @file
  3. * Styles for module branding.
  4. */
  5. /*
  6. * Style a branding banner, typically added to the help page and
  7. * an "About" tab on the module settings form.
  8. */
  9. .formatter_suite-banner-branding {
  10. padding: 6px;
  11. margin-left: 1em;
  12. float: right;
  13. width: 400px;
  14. border: 1px solid #eee;
  15. border-radius: 4px;
  16. box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.1);
  17. background: linear-gradient(#f8f8f8, #e8e8e8);
  18. text-align: center;
  19. color: #666;
  20. }
  21. .formatter_suite-banner-branding a {
  22. font-weight: 900;
  23. font-variant: small-caps;
  24. }
  25. .formatter_suite-banner-branding img {
  26. float: none;
  27. }
  28. /*
  29. * Style the branding banner on a module settings form.
  30. */
  31. details.formatter_suite-settings-tab .formatter_suite-banner-branding {
  32. margin-left: auto;
  33. margin-right: auto;
  34. float: none;
  35. }
  36. /*
  37. * Style the branding logo and background for a field formatter form.
  38. */
  39. .formatter_suite-field-formatter-settings {
  40. border: 1px solid #eee;
  41. border-radius: 4px;
  42. box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.1);
  43. background: linear-gradient(#f8f8f8, #e8e8e8);
  44. color: #666;
  45. }