Skip to content

Commit

Permalink
Responsive UI Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joswinemmanuel committed Jan 13, 2025
1 parent d0ada2a commit 5680371
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ Checkbox Style From: https://codepen.io/wilder_taype/pen/pNXwMW
outline: none;
position: relative;
}
.option-input:hover {
background: #bdc3c9;
}

.option-input:checked {
background: rgb(255, 136, 1);
}
Expand All @@ -54,8 +52,16 @@ Checkbox Style From: https://codepen.io/wilder_taype/pen/pNXwMW
z-index: 100;
}

.option-input:checked:hover {
background: #ffa74f;


@media screen and (min-width:500px) {
.option-input:checked:hover {
background: #ffa74f;
}

.option-input:hover {
background: #bdc3c9;
}
}

body {
Expand Down Expand Up @@ -107,17 +113,18 @@ button {
transition: all 0.5s ease;
}

button:hover {
background: #ffa74f;
}


.btn-submit {
margin-top: 30px;
}

.btn-submit:focus {
background-color: rgb(238, 222, 193);
@media screen and (min-width:500px) {
button:hover {
background: #ffa74f;
}

.btn-submit:focus {
background-color: rgb(238, 222, 193);
}
}

.copy-cell {
Expand Down Expand Up @@ -269,6 +276,7 @@ table td:last-child {
}

@media screen and (max-width:500px) {

.container {
padding: 0 10px;
}
Expand Down Expand Up @@ -297,17 +305,13 @@ table td:last-child {
padding: 1rem 1rem;
}

.th-name {
padding-left: 15px;
}

.copy-cell {
gap: 10px;
}

.repo-name {
font-size: 14px;
word-break: break-word;
}

.copy-button {
Expand Down Expand Up @@ -383,7 +387,7 @@ Error Page Style From: https://codepen.io/akashrajendra/pen/JKKRvQ
border: 15px solid #dddddd;
border-top-color: #ff7e14;
border-radius: 50%;
animation: loading 1s ease infinite;
animation: loading 0.75s ease infinite;
}

@keyframes loading {
Expand Down

0 comments on commit 5680371

Please sign in to comment.