Created
June 16, 2019 02:16
-
-
Save PrimeTimeTran/4484b44cbe0927478a4182cd9f1ec079 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
| body { | |
| background-color: #160507; | |
| } | |
| .App { | |
| height: 95%; | |
| width: 93vw; | |
| margin: 10px; | |
| display: flex; | |
| padding: 10px; | |
| text-align: center; | |
| position: absolute; | |
| border-radius: 20px; | |
| align-items: center; | |
| border: 3px solid #AA4465; | |
| background-color: #160507; | |
| justify-content: space-around | |
| } | |
| .sibling { | |
| width: 40%; | |
| height: 90%; | |
| display: flex; | |
| border-radius: 20px; | |
| align-items: center; | |
| flex-direction: column; | |
| justify-content: center; | |
| border: 3px solid #AA4465; | |
| background-color: #160507; | |
| } | |
| .counter { | |
| width: 40%; | |
| height: 90%; | |
| padding: 10px; | |
| border-radius: 20px; | |
| align-items: center; | |
| flex-direction: column; | |
| justify-content: center; | |
| border: 3px solid #AA4465; | |
| background-color: #160507; | |
| } | |
| .counterChildren { | |
| display: flex; | |
| align-items: center; | |
| flex-direction: column; | |
| justify-content: center; | |
| } | |
| .child { | |
| width: 80%; | |
| height: 570px; | |
| display: flex; | |
| margin-top: 10px; | |
| border-radius: 20px; | |
| align-items: center; | |
| flex-direction: column; | |
| justify-content: center; | |
| border: 3px solid #AA4465; | |
| background-color: #271514; | |
| } | |
| .grandChild { | |
| width: 80%; | |
| height: 420px; | |
| display: flex; | |
| border-radius: 20px; | |
| align-items: center; | |
| flex-direction: column; | |
| justify-content: center; | |
| border: 3px solid #AA4465; | |
| background-color: #292524; | |
| } | |
| .greatGrandChild { | |
| width: 80%; | |
| height: 260px; | |
| display: flex; | |
| border-radius: 20px; | |
| align-items: center; | |
| flex-direction: column; | |
| justify-content: center; | |
| border: 3px solid #AA4465; | |
| background-color: #2B3031; | |
| } | |
| .icon { | |
| font-size: 40px; | |
| margin-bottom: 10px; | |
| color: #244F26; | |
| } | |
| .icon-big { | |
| margin: 5; | |
| font-size: 100; | |
| } | |
| .number { | |
| color: white; | |
| font-family: Georgia, 'Times New Roman', Times, serif; | |
| font-size: 80px; | |
| font-weight: bold; | |
| } | |
| .img { | |
| margin-top: 10px; | |
| } | |
| h3 { | |
| color: white; | |
| margin: 0px; | |
| } | |
| button { | |
| margin-top: 5px; | |
| font-size: 20px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment