ieee-style.less 857 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @import 'style.less';
  2. @import 'core/ol-ieee-variables.less';
  3. @is-overleaf-light: false;
  4. @show-rich-text: true;
  5. @ieee-wedge: 30px;
  6. body > .portal-ieee {
  7. padding-top: @header-height;
  8. }
  9. .portal-ieee {
  10. .ieee-header {
  11. background-color: @ieee-blue;
  12. margin-bottom: @margin-xl;
  13. padding-bottom: @padding-sm;
  14. padding-top: @padding-sm;
  15. h1 {
  16. margin: 0;
  17. }
  18. .ieee-logo {
  19. width: @navbar-brand-width;
  20. }
  21. }
  22. .ieee-subheader {
  23. background-color: @ieee-blue;
  24. color: #ffffff;
  25. line-height: 1;
  26. padding: @padding-md @ieee-wedge;
  27. position: relative;
  28. &:after {
  29. content: '';
  30. display: block;
  31. position: absolute;
  32. border-style: solid;
  33. left: -1px;
  34. top: -1px;
  35. border-color: @content-alt-bg-color transparent;
  36. border-width: @ieee-wedge @ieee-wedge 0 0;
  37. }
  38. }
  39. }