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

Mng 34&67 style results modal&add cursor on dropdown #52

Merged
merged 2 commits into from
Jan 17, 2021
Merged
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
39 changes: 36 additions & 3 deletions styles/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,6 @@ ul.bottomOfThePageOptions li img {
padding: 1vh 0vw;
}



.popUpImgArea {
height: 15%;
width: 100%;
Expand Down Expand Up @@ -272,6 +270,20 @@ ul.bottomOfThePageOptions li img {
list-style-position: inside;
}

.mainHelpTextSection::-webkit-scrollbar {
width: 2vh;
}

.mainHelpTextSection::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}

.mainHelpTextSection::-webkit-scrollbar-thumb {
background: var(--yellow);
border-radius: 10px;
}


/* leaderboard modal */

Expand Down Expand Up @@ -320,12 +332,14 @@ ul.bottomOfThePageOptions li img {
background: none;
border: none;
font-size: 2.8vh;
cursor: pointer;
}

#chooseModeLeaderboard option {
color: rgb(121, 121, 241);
font-size: 2.8vh;
background-color: black;
cursor: pointer;
}

#leaderboardResults {
Expand Down Expand Up @@ -598,15 +612,34 @@ li.quiz-answer img {

#tableWithResults {
overflow-y: scroll;
border-bottom: 2px solid darkgray;
margin: 1.5vh;
}

#tableWithResults::-webkit-scrollbar {
width: 2vh;
}

#tableWithResults::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}

#tableWithResults::-webkit-scrollbar-thumb {
background: var(--optionBlue);
border-radius: 10px;
}

#tableWithResults table {
width: 100%;
}

#tableWithResults th {
border-bottom: 2px solid darkgray;
color: black
color: black;
position: sticky;
top: 0;
background-color: white;
}

.tableWithResultsQA {
Expand Down