Added text set option (userID)

This commit is contained in:
Ajay Ramachandran
2019-12-30 01:20:20 -05:00
parent 91f4d7f669
commit fcb6ed7676
3 changed files with 103 additions and 16 deletions

View File

@@ -3,11 +3,42 @@ body {
font-family: Sans-Serif;
}
.smallDescription {
.hidden {
display: none;
}
.small-description {
color: white;
font-size: 13;
}
.option-text-box {
width: 300px;
}
.option-button {
cursor: pointer;
background-color: #c00000;
padding: 10px;
color: white;
border-radius: 5px;
font-size: 14px;
width: fit-content;
}
.option-button:hover {
background-color: #fc0303;
}
.option-button.disabled {
cursor: default;
background-color: #520000;
color: grey;
}
#options {
max-width: 60%;
text-align: left;