Merge pull request #1195 from sharelatex/jel-portal-ieee

Add IEEE portal

GitOrigin-RevId: 7f3ba43be0874791cfd32bb8bf3004aac61b22d3
This commit is contained in:
Jessica Lawshe 2018-11-29 09:09:14 -06:00 committed by sharelatex
parent 1070cd36bb
commit e8b7ab1f8a
4 changed files with 49 additions and 0 deletions

View file

@ -132,6 +132,9 @@ compile_full:
$(MAKE) compile_modules_full
$(MAKE) compile # ide.js, main.js, share.js, and anything missed
compile_css_full:
$(MAKE) css_full
compile_modules: $(MODULE_MAKEFILES)
@set -e; \
for dir in $(MODULE_DIRS); \

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

View file

@ -42,3 +42,11 @@
@editor-toggler-hover-bg-color: @ieee-blue;
@toggle-switch-highlight-color: @ieee-blue;
@footer-link-color : @link-color;
@footer-link-hover-color : @link-hover-color;
@navbar-subdued-hover-color : @ieee-blue;
@navbar-default-link-hover-bg : @ieee-blue;
@navbar-default-link-hover-color: @ieee-blue;
@navbar-default-link-active-bg : @ieee-blue;

View file

@ -4,3 +4,41 @@
@is-overleaf : true;
@is-overleaf-light: false;
@show-rich-text : true;
@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;
}
}
}