Changed the theme of the website to be darker

This commit is contained in:
Camerin Figueroa 2021-09-24 13:59:17 -04:00
parent b5fe69b9c4
commit 69164959d9
4 changed files with 19 additions and 6 deletions

View File

@ -20,6 +20,6 @@
], ],
"start_url": ".", "start_url": ".",
"display": "standalone", "display": "standalone",
"theme_color": "#000000", "theme_color": "#3F3F4A",
"background_color": "#ffffff" "background_color": "#3F3F4A"
} }

View File

@ -1,3 +1,8 @@
.Github {
background-color: #3F3F4A;
color: #AA9AA0;
}
.repo-list { .repo-list {
display:flex; display:flex;
flex-direction: column; flex-direction: column;
@ -10,6 +15,7 @@
border-top-style: solid; border-top-style: solid;
border-top-color: #A4A4A1; border-top-color: #A4A4A1;
border-top-width:2px; border-top-width:2px;
font-size: x-large;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: left; align-items: left;
@ -17,8 +23,9 @@
} }
.repo .title { .repo .title {
color: #BF8D8C !important;
font-size: 48px;
margin-top: 10px; margin-top: 10px;
color: #3A4ADC;
font-weight:bold; font-weight:bold;
width:fit-content; width:fit-content;
width:-moz-fit-content; width:-moz-fit-content;
@ -35,6 +42,7 @@
display:flex; display:flex;
flex-direction: row; flex-direction: row;
align-items:center; align-items:center;
font-size: x-large;
} }
.repo .website { .repo .website {
@ -47,6 +55,7 @@
align-items:center; align-items:center;
text-align: center; text-align: center;
width: 88px; width: 88px;
font-size: large;
} }
.repo .description { .repo .description {
@ -68,5 +77,6 @@
margin: 2px; margin: 2px;
margin-left: 5px; margin-left: 5px;
border-radius: 10px; border-radius: 10px;
background-color: #AAAAAA; background-color: #756B6A;
color: #DAD4DF;
} }

View File

@ -17,6 +17,7 @@ a:visited {
html, body { html, body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; margin:0; font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; margin:0;
width:100%; width:100%;
background-color: #3F3F4A;
} }
.App { .App {

View File

@ -44,11 +44,13 @@
.modal form button { .modal form button {
padding: 10px; padding: 10px;
font-size: medium;
font-weight: bold;
width:fit-content; width:fit-content;
height: fit-content; height: fit-content;
} }
.modal input.large { .modal input.large {
height: 100px; height: 10rem;
width: 300px; width: 20rem;
} }