Skip to content

Commit

Permalink
Update the style.css file
Browse files Browse the repository at this point in the history
  • Loading branch information
Brightgman committed Mar 8, 2023
1 parent dcb7089 commit 9915c23
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 40 additions & 3 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ body {
margin-left: 2px;
margin-right: 2px;
padding: 0;
height: 100vh;
border-top: 3px solid black;
height: 100%;
font-family: cursive;
background-image: -webkit-linear-gradient(65deg, #3bd6c9 40%, #46dd39 60%);
}

.heading {
text-align: center;
color: #f31f2d;
}

.nav-link {
Expand Down Expand Up @@ -40,6 +42,7 @@ li {
.head-word {
font-size: 3rem;
padding-left: 20px;
color: rgb(6, 18, 14);
}

.new {
Expand Down Expand Up @@ -78,6 +81,7 @@ td {
padding: 5px;
width: 80px;
box-shadow: 3px 3px 3px 3px;
background-color: rgba(238, 19, 194, 0.876);
}

.submit {
Expand All @@ -86,26 +90,55 @@ td {
margin-right: 10px;
padding: 5px;
box-shadow: 3px 3px 3px 3px;
background-color: rgb(219, 9, 174);
}

#link {
width: 55%;
padding: 10px;
}

button {
cursor: pointer;
}

button:hover {
color: white;
border-radius: 35%;
background-color: rgb(70, 23, 239);
}

#footer {
height: 30px;
width: 100%;
background-color: rgb(84, 164, 228);
border-top: 2px black solid;
}

#add-name {
border-radius: 10%;
border-color: rgb(145, 24, 197);
}

input {
color: rgb(149, 27, 27);
}

#add-score {
border-radius: 10%;
border-color: rgb(145, 24, 197);
}

.fa-search {
padding: 16px;
}

table > tbody > tr:nth-of-type(even) {
background-color: rgb(210, 220, 229);
background-color: rgb(90, 246, 78);
}

table > tbody > tr:nth-of-type(odd) {
background-color: rgb(0, 221, 255);
}

.input-mark > input {
Expand All @@ -121,3 +154,7 @@ table > tbody > tr:nth-of-type(even) {
.adding-head {
padding-left: 10px;
}

header {
background-color: rgb(8, 153, 117);
}

0 comments on commit 9915c23

Please sign in to comment.