| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- :host {
- margin: 5px;
- }
- h2 {
- color: #f90;
- }
- input {
- background: #222222;
- border: solid 1px #222222;
- border-radius: 3px;
- height: 20px;
- color: #bdbdbd;
- }
- button {
- background: #4e4e4e;
- border: solid 1px #252525;
- color: #bdbdbd;
- border-radius: 3px;
- }
- button:hover {
- background: #585858;
- cursor: pointer;
- }
- canvas {
- border: dashed 1px #585858;
- margin: 0 auto;
- }
- #imageList {
- border: solid 2px red;
- border-radius: 10px;
- width: 96%;
- margin: 0 auto;
- flex-wrap: wrap;
- }
- .overflow {
- width: auto;
- height: auto;
- max-height: 300px;
- overflow-x: scroll;
- }
- .mini {
- font-size: 12px;
- }
|