Created
July 15, 2023 07:34
-
-
Save nathan-roberts/36a17518e30d7c5b08d0130947602e14 to your computer and use it in GitHub Desktop.
Test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
span.number span { | |
padding: 10px 5px; | |
/* border: 1px solid #ccc; */ | |
/* border-radius: 5px; */ | |
display: inline-block; | |
/* cursor: move; */ | |
} | |
.popup { | |
width: 100%; | |
} | |
.copy-btn, | |
.add-option-control button { | |
display: block; | |
margin-top: 10px; | |
padding: 5px 10px; | |
background-color: #4CAF50; | |
color: #fff; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
} | |
.copy-btn:hover { | |
background-color: #45a049; | |
} | |
.option, | |
.add-option-control, | |
.output-preview-container { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
text-align: center; | |
margin-bottom: 10px; | |
} | |
/* .firstDiv .sortable-container {} */ | |
.popup textarea { | |
max-width: 800px; | |
max-height: 90px !important; | |
min-height: 90px !important; | |
height: 90px !important; | |
background-color: #5f5f5f; | |
color: #c9d1d9; | |
border-radius: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment