Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ bower_components
tmp
dist
.env
public/index.html.bak
public/index_chinese/index.html.bak
public/standards/index.html.bak
public/team/index.html.bak
60 changes: 59 additions & 1 deletion app/styles/components/navbar.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
.section--nav {
padding: 1rem;
z-index:100;
}


.nav {
display: flex;
justify-content: space-between;
align-items: center;
align-items: flex-start;

&__left {
margin: 0;
Expand Down Expand Up @@ -57,18 +58,75 @@
}
}
}

&__dropdown {

&__list {
padding-top:8px;
margin:0;
padding-bottom:8px;
position:absolute;
text-align:right;
list-style:none;
display:flex;
flex-direction: column;
padding-left:4.121rem;

}

&__list {
display:none;
}

&:hover &__list, &__list:hover{
display:block;
}

&__item {
position:relative;
line-height: 30px;
font-size: 1.125rem;
color: $c-black;
cursor: pointer;
transition: color $transition-speed;

&:hover {
color: $c-blue;
display: block;
}

&.active {
position: relative;
color: $c-blue;

&::before {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -0.5rem;
width: 65%;
height: 1px;
background-color: $c-blue;
content: '';
}
}
}
}

}


@media screen and (max-width: $screen-tablet) {
.section--nav {
padding-right: 2rem;
//z-index:100;
}
}


@media screen and (max-width: $screen-mobile) {
.section--nav {
padding-right: 1.25rem;
//z-index:100;
}
}
137 changes: 108 additions & 29 deletions public/index.html
100755 → 100644

Large diffs are not rendered by default.

448 changes: 316 additions & 132 deletions public/index_chinese/index.html
100755 → 100644

Large diffs are not rendered by default.

471 changes: 332 additions & 139 deletions public/standards/index.html
100755 → 100644

Large diffs are not rendered by default.

155 changes: 115 additions & 40 deletions public/team/index.html
100755 → 100644

Large diffs are not rendered by default.

Empty file added public/use-case/use-case.html
Empty file.