Created
June 11, 2019 21:29
-
-
Save NilsonLima/0fbf83bc34d78a38724f12e28636f322 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| .container { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| height: 100vh; | |
| background-color: #e2e2e2; | |
| } | |
| .footer { | |
| display: flex; | |
| width: 50vw; | |
| max-height: 20vh; | |
| justify-content: space-evenly; | |
| padding: 5px 10px; | |
| background-color: #efefef; | |
| vertical-align: baseline; | |
| } | |
| .button { | |
| border: none; | |
| outline: none; | |
| padding: 5px 10px; | |
| background-color: transparent; | |
| align-self: flex-end; | |
| cursor: pointer; | |
| } | |
| .icon { | |
| width: 26px; | |
| height: 42px; | |
| } | |
| .editorContainer { | |
| display: flex; | |
| flex-direction: column; | |
| width: 85%; | |
| margin: 5px 10px; | |
| padding: 9px 12px 11px 12px; | |
| border: 1px solid white; | |
| background-color: white; | |
| border-radius: 21px; | |
| box-sizing: border-box; | |
| } | |
| .editor { | |
| overflow-y: auto; | |
| width: 100%; | |
| } | |
| .editor::-webkit-scrollbar { | |
| width: 6px; | |
| height: 6px; | |
| } | |
| .editor::-webkit-scrollbar-thumb { | |
| background-color: rgba(0, 0, 0, 0.2); | |
| } | |
| .editor::-webkit-scrollbar-track { | |
| background-color: hsla(0, 0%, 100%, 0.08); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment