-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(space_time_shape): color for deciders
- Loading branch information
1 parent
4876458
commit fb2e235
Showing
2 changed files
with
57 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#stp_ui { | ||
position: absolute; | ||
display: grid; | ||
left: 0%; | ||
top: 0%; | ||
z-index: 10; | ||
background-color: #f5f5f5c2; | ||
} | ||
|
||
#stp_ui > div label { | ||
display: block; | ||
font-weight: bold; | ||
margin-bottom: 0.5rem; | ||
} | ||
|
||
#stp_ui > div input[type='text'], | ||
#stp_ui > div select { | ||
padding: 0.5rem; | ||
border: 1px solid #ccc; | ||
border-radius: 0.25rem; | ||
font-size: 1rem; | ||
text-transform: capitalize; | ||
} | ||
|
||
#stp_ui > div select { | ||
appearance: none; | ||
background-repeat: no-repeat; | ||
background-position: right 0.5rem center; | ||
background-size: 1rem; | ||
padding-right: 2rem; | ||
} | ||
|
||
#stp_ui > div input[type='checkbox'] { | ||
margin-right: 0.5rem; | ||
} | ||
|
||
#stp_ui > div input[type='text']:focus, | ||
#stp_ui > div select:focus { | ||
outline: none; | ||
border-color: #666; | ||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); | ||
} |
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