Skip to content

Commit

Permalink
rebranding to purple
Browse files Browse the repository at this point in the history
  • Loading branch information
HannahGuo committed Aug 11, 2021
1 parent bac647a commit e80ede8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions client/src/Dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

#greenGradiant {
background-image: linear-gradient(#006931, black);
background-image: linear-gradient(#4c3285, black);
height: 5em;
width: 100%;
top: 0;
Expand All @@ -28,7 +28,7 @@

#createRP:hover {
background: black;
color: #1DD05D;
color: white;
transition: all 0.4s ease;
}

Expand Down Expand Up @@ -138,14 +138,14 @@ ol {
}

#generateButton, #loginButton {
color: #006931;
background-color: white;
border: 2px solid #006931;
color: #5e4791;
background-color: #ffffff;
border: 2px solid #5e4791;
}

#generateButton:hover, #loginButton:hover {
transition: all 0.3s ease;
background-color: #006931;
background-color: #5e4791;
color: white;
}

Expand Down
2 changes: 1 addition & 1 deletion landing/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function addHTMLFormatting(array) {
let newArr = [];

for(let i = 0; i < array.length; i++) {
let color = i % 2 === 0 ? "green" : "white";
let color = i % 2 === 0 ? "purple" : "white";
newArr.push(`<span class="${color}">${array[i].replace(/\s+/g, '')}</span>`)
}

Expand Down
12 changes: 6 additions & 6 deletions landing/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ a:active {

.whiteButton:hover {
cursor: pointer;
background-color: black;
color: #1DD05D;
background-color: #5e4791;
color: white;
transition: all 0.4s ease;
}

Expand All @@ -153,15 +153,15 @@ a:active {

.colorHover:hover {
cursor: pointer;
color: black;
color: #5e4791;
transition: all 0.4s ease;
}

/* because the github icon isn't really a circle */
.colorHover:hover .imGreen {
position: absolute;
z-index: -1;
background-color: #1DD05D;
background-color: white;
height: 2.8em;
width: 2.7em;
margin: 0.1em 0.1em;
Expand All @@ -180,8 +180,8 @@ a:active {
opacity: 0.15;
}

.green {
color: #1DD05D;
.purple {
color: #5e4791;
}

.white {
Expand Down

0 comments on commit e80ede8

Please sign in to comment.