mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
c8f0885316
GitOrigin-RevId: 812d3b5f1df7e769c8be732ccb31653e8e9a8aa3
42 lines
838 B
Text
42 lines
838 B
Text
@import 'main-style.less';
|
|
@import 'variables/themes/ieee.less';
|
|
|
|
@is-overleaf-light: false;
|
|
|
|
@ieee-wedge: 30px;
|
|
|
|
body > .portal-ieee {
|
|
padding-top: @header-height;
|
|
}
|
|
|
|
.portal-ieee {
|
|
.ieee-header {
|
|
background-color: @ieee-blue;
|
|
margin-bottom: @margin-xl;
|
|
padding-bottom: @padding-sm;
|
|
padding-top: @padding-sm;
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
.ieee-logo {
|
|
width: @navbar-brand-width;
|
|
}
|
|
}
|
|
.ieee-subheader {
|
|
background-color: @ieee-blue;
|
|
color: #ffffff;
|
|
line-height: 1;
|
|
padding: @padding-md @ieee-wedge;
|
|
position: relative;
|
|
&:after {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
border-style: solid;
|
|
left: -1px;
|
|
top: -1px;
|
|
border-color: @content-alt-bg-color transparent;
|
|
border-width: @ieee-wedge @ieee-wedge 0 0;
|
|
}
|
|
}
|
|
}
|