Created
July 18, 2019 19:42
-
-
Save elyosemite/dbe8a880332203e08d9137c09407176f 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
| .modal { | |
| padding: 20px; | |
| text-align: center; | |
| background-color: #9999; | |
| } | |
| .content { | |
| display: inline-grid; | |
| justify-content: left; | |
| border: 1px solid white; | |
| grid-template-columns: repeat(auto-fit, minmax(0, max-content)); | |
| margin: 0 auto; | |
| max-width: 1200px; | |
| width: 100%; | |
| } | |
| .message { | |
| text-align: left; | |
| } | |
| .group { | |
| display: flex; | |
| flex-direction: row; | |
| grid-template-columns: repeat(auto-fit, minmax(50px, max-content)); | |
| column-gap: 10px; | |
| row-gap: 10px; | |
| justify-content: center; | |
| align-content: center; | |
| margin-left: 10px; | |
| } | |
| .alignLinks { | |
| display: flex; | |
| flex-direction: row; | |
| justify-content: flex-start; | |
| align-items: center; | |
| width: 100%; | |
| padding-left: 5px; | |
| } | |
| .link { | |
| margin-left: 10px; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment