Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fixes and improvements #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
108 changes: 69 additions & 39 deletions src/css/modules/_header.scss
Original file line number Diff line number Diff line change
@@ -1,45 +1,75 @@
.fd-header {
align-items: center;
background: $color-headerBG;
box-sizing: border-box;
display: flex;
padding: 15px 0 15px 100px;
position: relative;
justify-content: flex-start;
@mixin size 100vw, 55px;
align-items: center;
background: $color-headerBG;
box-sizing: border-box;
display: flex;
padding: 15px 0 15px 100px;
position: relative;
justify-content: flex-start;
height: fit-content !important;
@mixin size 100vw, 55px;

img, h1 {
align-items: center;
display: flex;
flex-direction: row;
}
img,
h1 {
align-items: center;
display: flex;
flex-direction: row;
}

img { max-height: 100%; }
img {
max-height: 100%;
height: 30px;
}

h1 {
color: $color-off-white;
display: inline-block;
margin: 0 0 0 15px;
left: 10%;
@mixin font-sansN3;
@mixin font-size 18;
}
h1 {
color: #ffffff;
display: inline-block;
margin: 5px 0 0 0;
left: 10%;
@mixin font-sansN3;
@mixin font-size 13;
}

&--updated {
color: #9e9e9e;
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
@mixin font-sansN3;
@mixin font-size 14;
&--updated {
color: #9e9e9e;
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
@mixin font-sansN3;
@mixin font-size 14;

span { @mixin font-sansN7; }
}
@media screen and (--wide) {
padding-left: 20px;
}
@media screen and (--mobile) {
h1 { display: none; }
}
}
span {
@mixin font-sansN7;
}
}
@media screen and (--wide) {
padding-left: 20px;
}
@media screen and (--mobile) {
h1 {
display: none;
}
}
}

.logo-text {
color: #f8f8f8;
display: inline-block;
margin: 5px 0 0 0;
left: 10%;
font-size: 14px !important;
font-family: "Roboto", sans-serif;
font-weight: 300;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 1.125rem;
letter-spacing: 0em;
}

.regular-checkbox {
height: 18px !important;
width: 18px !important;
margin-left: 5px;
cursor: pointer;
}
87 changes: 49 additions & 38 deletions src/css/modules/_projectList.scss
Original file line number Diff line number Diff line change
@@ -1,46 +1,57 @@
.fd-projectList {
padding-left: 50px;
text-align: center;
padding-left: 25px;
text-align: center;

&-container {
@mixin list-reset;
display: flex;
justify-content: flex-start;
text-align: left;
&-container {
@mixin list-reset;
display: flex;
justify-content: flex-start;
text-align: left;

li {
align-items: center;
display: flex;
flex-direction: row;
margin-left: 10px;
justify-content: flex-start;
li {
align-items: center;
display: inline;
flex-direction: row;
margin-left: 0px;
justify-content: flex-start;

&:first-child, &:first-child .fd-projectList--color { margin-left: 0; }
}
&:first-child,
&:first-child .fd-projectList--color {
margin-left: 0;
}
}

.fd-projectList--color {
background: #d0d2d5;
border: 1px solid #d0d2d5;
box-sizing: border-box;
border-radius: 50%;
display: inline-block;
margin: 0 10px;
@mixin size 20px, 20px;
}
.fd-projectList--color {
background: #d0d2d5;
border: 1px solid #d0d2d5;
box-sizing: border-box;
border-radius: 50%;
display: inline-block;
margin: 0;
@mixin size 20px, 20px;
}

.fd-projectList--name {
color: $color-projectListText;
@mixin font-sansN4;
}
}
.fd-projectList--name {
color: $color-projectListText;
display: inline;
margin-left: 5px;
margin-right: 10px;
vertical-align: top;
@mixin font-sansN4;
}
}

@media screen and (--desktop) {
padding-left: 20px;
@mixin font-size 14, 0, 0;
@media screen and (--desktop) {
padding-left: 20px;
@mixin font-size 14, 0, 0;

&-container {
.fd-projectList--color { @mixin size 14px, 14px; }
}
}
@media screen and (--mid) { display: none; }
}
&-container {
.fd-projectList--color {
@mixin size 14px, 14px;
}
}
}
@media screen and (--mid) {
display: none;
}
}
Loading