Merge pull request #112 from MaxRobinsonTheGreat/input-style

Input style
This commit is contained in:
Max Robinson
2022-01-22 12:42:27 -06:00
committed by GitHub
2 changed files with 29 additions and 1 deletions

View File

@@ -1,5 +1,19 @@
# Changelog # Changelog
## 1.0.3 (current dev)
### UI Enhancements:
- Improved input box styling
### Simulation Enhancements:
-
### Bug Fixes:
- charste changed to charset
Thanks to contributors:
## 1.0.2 (12/21/2021) ## 1.0.2 (12/21/2021)
### UI Enhancements: ### UI Enhancements:

14
dist/css/style.css vendored
View File

@@ -88,6 +88,20 @@ button:active{
background-color: #595e77; background-color: #595e77;
} }
input,select {
border-radius: 5px;
border: 2px solid #9099c2;
padding: 2px;
background-color: white;
outline: none;
}
input {
max-width: 100px;
}
input:hover,input:active {
background-color: rgb(250,250,250);
}
.icon-links { .icon-links {
font-size: 35px; font-size: 35px;
position: fixed; position: fixed;