| * { |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| user-select: none; |
| cursor: default; |
| padding: 0; |
| margin: 0; |
| } |
|
|
| body { |
| background-color: hsla(215, 100%, 95%, 1); |
| } |
|
|
| html, |
| body { |
| overflow: hidden; |
| height: 100%; |
| width: 100%; |
| } |
|
|
| #display { |
| height: calc(100% - 50px); |
| display: flex; |
| width: 100%; |
| } |
|
|
| #sideBar { |
| background-color: hsl(30, 100%, 65%); |
| height: 50px; |
| width: 100%; |
| } |
|
|
| #sideBar>div { |
| height: fit-content; |
| width: fit-content; |
| margin: 0 auto; |
| display: flex; |
| } |
|
|
| #blocklyDiv { |
| width: calc(100% - 125px); |
| height: 100%; |
| } |
|
|
| .createVar>rect { |
| width: 160px; |
| height: 40px; |
| } |
|
|
| .blocklyFlyoutButtonShadow { |
| fill: transparent; |
| } |
|
|
| .blocklyFlyoutButton, |
| #costumes::-webkit-scrollbar { |
| fill: none; |
| } |
|
|
| .blocklyFlyoutButtonBackground { |
| pointer-events: all; |
| stroke: #c6c6c6; |
| } |
|
|
| .createVar>.blocklyText { |
| transform: translateX(35px); |
| dominant-baseline: central; |
| text-anchor: middle; |
| font-weight: 500; |
| fill: #575E75; |
| font-size: 12pt; |
| width: 160px; |
| height: 40px; |
| } |
|
|
| .blocklyTreeRow { |
| line-height: 27.5px; |
| height: 30px; |
| } |
|
|
| .blocklyFlyout, |
| .blocklyToolboxDiv { |
| border-right: 1px solid hsla(0, 0%, 0%, 0.15); |
| } |
|
|
| .sideBtn { |
| padding: 13px 15px 4px 15px; |
| width: fit-content; |
| font-weight: bold; |
| font-size: 13.6px; |
| line-height: 24px; |
| cursor: pointer; |
| color: white; |
| height: 33px; |
| } |
|
|
| .sideBtn:hover { |
| background-color: hsl(30, 64%, 55%); |
| } |
|
|
| #costumes { |
| overflow-y: scroll; |
| height: 100%; |
| width: 125px; |
| } |
|
|
| .cos { |
| border: 2px solid hsla(0, 0%, 0%, 0.15); |
| box-sizing: border-box; |
| flex-direction: column; |
| border-radius: 0.5rem; |
| margin: 0.5rem auto; |
| text-align: center; |
| position: relative; |
| cursor: pointer; |
| display: flex; |
| height: 5rem; |
| width: 5rem; |
| } |
|
|
| .cos>div:nth-child(1) { |
| color: hsla(225, 15%, 40%, 1); |
| font-size: 0.625rem; |
| position: absolute; |
| font-weight: bold; |
| left: 0.15rem; |
| top: 0.15rem; |
| } |
|
|
| .cos>div:nth-child(2) { |
| justify-content: center; |
| align-items: center; |
| display: flex; |
| height: 100%; |
| width: 100%; |
| } |
|
|
| .cos>div:nth-child(2)>img { |
| filter: drop-shadow(0 0 2px hsla(0, 0%, 0%, 0.15)); |
| max-height: 50px; |
| max-width: 50px; |
| } |
|
|
| #costumes::-webkit-scrollbar { |
| width: 0; |
| } |
|
|
| #cosBtn { |
| box-shadow: 0 0 0 3px hsla(30, 60%, 60%, 0.35); |
| background-color: hsla(30, 60%, 60%, 1); |
| border-radius: 7.5px; |
| margin: 7.5px; |
| width: 110px; |
| height: 30px; |
| border: 0; |
| } |
|
|
| #cosBtn>img { |
| position: relative; |
| top: 2px; |
| } |