Created
July 13, 2021 19:32
-
-
Save discatte/d0706f1cb55f4cce0b639794720f1fce to your computer and use it in GitHub Desktop.
RAINBOW SASS
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
| // Last tested with dart-sass v1.32.12 | |
| // on https://www.sassmeister.com/ | |
| $selector: "*"; | |
| $selector_rule: "*"; | |
| $selector_join: " + "; // change to " " for depth rainbows | |
| $hsl_degree: 0; | |
| $hsl_step: 34; | |
| @for $depth from 1 through 100 { | |
| #{$selector} { | |
| $clr: hsl(random(360), 75%, 75%); | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: $clr !important; | |
| border-color: darken($clr, 25%) !important; | |
| color: darken($clr, 55%) !important; | |
| } | |
| $hsl_degree: $hsl_degree + $hsl_step; | |
| $selector: $selector + $selector_join + $selector_rule; | |
| } |
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
| * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efe28f !important; | |
| border-color: #dfc620 !important; | |
| color: #594f0d !important; | |
| } | |
| * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fe7ef !important; | |
| border-color: #20cfdf !important; | |
| color: #0d5359 !important; | |
| } | |
| * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fc9 !important; | |
| border-color: #df2093 !important; | |
| color: #590d3b !important; | |
| } | |
| * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fbc !important; | |
| border-color: #df2079 !important; | |
| color: #590d30 !important; | |
| } | |
| * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ae8fef !important; | |
| border-color: #5c20df !important; | |
| color: #250d59 !important; | |
| } | |
| * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefa6 !important; | |
| border-color: #20df4d !important; | |
| color: #0d591f !important; | |
| } | |
| * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #a9ef8f !important; | |
| border-color: #53df20 !important; | |
| color: #21590d !important; | |
| } | |
| * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefd1 !important; | |
| border-color: #20dfa3 !important; | |
| color: #0d5941 !important; | |
| } | |
| * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efb48f !important; | |
| border-color: #df6920 !important; | |
| color: #592a0d !important; | |
| } | |
| * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefba !important; | |
| border-color: #20df76 !important; | |
| color: #0d592f !important; | |
| } | |
| * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #e28fef !important; | |
| border-color: #c620df !important; | |
| color: #4f0d59 !important; | |
| } | |
| * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #b98fef !important; | |
| border-color: #7320df !important; | |
| color: #2e0d59 !important; | |
| } | |
| * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c18fef !important; | |
| border-color: #8320df !important; | |
| color: #340d59 !important; | |
| } | |
| * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #99ef8f !important; | |
| border-color: #33df20 !important; | |
| color: #14590d !important; | |
| } | |
| * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8f96 !important; | |
| border-color: #df202d !important; | |
| color: #590d12 !important; | |
| } | |
| * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efb38f !important; | |
| border-color: #df6620 !important; | |
| color: #59290d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8f9f !important; | |
| border-color: #df2040 !important; | |
| color: #590d1a !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #9eef8f !important; | |
| border-color: #3ddf20 !important; | |
| color: #18590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fa7 !important; | |
| border-color: #df2050 !important; | |
| color: #590d20 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fd2ef !important; | |
| border-color: #20a6df !important; | |
| color: #0d4259 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fac !important; | |
| border-color: #df2059 !important; | |
| color: #590d24 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d6ef8f !important; | |
| border-color: #acdf20 !important; | |
| color: #45590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefa1 !important; | |
| border-color: #20df43 !important; | |
| color: #0d591b !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efca8f !important; | |
| border-color: #df9620 !important; | |
| color: #593c0d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efa78f !important; | |
| border-color: #df5020 !important; | |
| color: #59200d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fd2 !important; | |
| border-color: #df20a6 !important; | |
| color: #590d42 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fc4ef !important; | |
| border-color: #2089df !important; | |
| color: #0d3759 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efbf8f !important; | |
| border-color: #df8020 !important; | |
| color: #59330d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c9ef8f !important; | |
| border-color: #93df20 !important; | |
| color: #3b590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efb18f !important; | |
| border-color: #df6320 !important; | |
| color: #59280d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #af8fef !important; | |
| border-color: #6020df !important; | |
| color: #260d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efed8f !important; | |
| border-color: #dfdc20 !important; | |
| color: #59580d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8feaef !important; | |
| border-color: #20d6df !important; | |
| color: #0d5559 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8facef !important; | |
| border-color: #2059df !important; | |
| color: #0d2459 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ea8fef !important; | |
| border-color: #d620df !important; | |
| color: #550d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efaf8f !important; | |
| border-color: #df6020 !important; | |
| color: #59260d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #b48fef !important; | |
| border-color: #6920df !important; | |
| color: #2a0d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efdc8f !important; | |
| border-color: #dfb920 !important; | |
| color: #594a0d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fdfef !important; | |
| border-color: #20bfdf !important; | |
| color: #0d4d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #bcef8f !important; | |
| border-color: #79df20 !important; | |
| color: #30590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c4ef8f !important; | |
| border-color: #89df20 !important; | |
| color: #37590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ceef8f !important; | |
| border-color: #9cdf20 !important; | |
| color: #3e590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #9f8fef !important; | |
| border-color: #4020df !important; | |
| color: #1a0d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fef94 !important; | |
| border-color: #20df29 !important; | |
| color: #0d5911 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #b18fef !important; | |
| border-color: #6320df !important; | |
| color: #280d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fdfef !important; | |
| border-color: #20bfdf !important; | |
| color: #0d4d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefc6 !important; | |
| border-color: #20df8c !important; | |
| color: #0d5938 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefd4 !important; | |
| border-color: #20dfa9 !important; | |
| color: #0d5944 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fea !important; | |
| border-color: #df20d6 !important; | |
| color: #590d55 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #e48fef !important; | |
| border-color: #c920df !important; | |
| color: #500d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fc2ef !important; | |
| border-color: #2086df !important; | |
| color: #0d3659 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #da8fef !important; | |
| border-color: #b620df !important; | |
| color: #490d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efac8f !important; | |
| border-color: #df5920 !important; | |
| color: #59240d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efe78f !important; | |
| border-color: #dfcf20 !important; | |
| color: #59530d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #cc8fef !important; | |
| border-color: #9920df !important; | |
| color: #3d0d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fd4ef !important; | |
| border-color: #20a9df !important; | |
| color: #0d4459 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefba !important; | |
| border-color: #20df76 !important; | |
| color: #0d592f !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #96ef8f !important; | |
| border-color: #2ddf20 !important; | |
| color: #12590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefd6 !important; | |
| border-color: #20dfac !important; | |
| color: #0d5945 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fc6 !important; | |
| border-color: #df208c !important; | |
| color: #590d38 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fc1 !important; | |
| border-color: #df2083 !important; | |
| color: #590d34 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efe98f !important; | |
| border-color: #dfd220 !important; | |
| color: #59540d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fb3 !important; | |
| border-color: #df2066 !important; | |
| color: #590d29 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefac !important; | |
| border-color: #20df59 !important; | |
| color: #0d5924 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8f96ef !important; | |
| border-color: #202ddf !important; | |
| color: #0d1259 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef9f8f !important; | |
| border-color: #df4020 !important; | |
| color: #591a0d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ec8fef !important; | |
| border-color: #d920df !important; | |
| color: #570d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #e18fef !important; | |
| border-color: #c220df !important; | |
| color: #4e0d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d48fef !important; | |
| border-color: #a920df !important; | |
| color: #440d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fc7ef !important; | |
| border-color: #208fdf !important; | |
| color: #0d3959 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d18fef !important; | |
| border-color: #a320df !important; | |
| color: #410d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefbf !important; | |
| border-color: #20df80 !important; | |
| color: #0d5933 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #df8fef !important; | |
| border-color: #bf20df !important; | |
| color: #4d0d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #978fef !important; | |
| border-color: #3020df !important; | |
| color: #130d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efda8f !important; | |
| border-color: #dfb620 !important; | |
| color: #59490d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fac !important; | |
| border-color: #df2059 !important; | |
| color: #590d24 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efd18f !important; | |
| border-color: #dfa320 !important; | |
| color: #59410d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #caef8f !important; | |
| border-color: #96df20 !important; | |
| color: #3c590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fef9f !important; | |
| border-color: #20df40 !important; | |
| color: #0d591a !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ab8fef !important; | |
| border-color: #5620df !important; | |
| color: #220d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efc68f !important; | |
| border-color: #df8c20 !important; | |
| color: #59380d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d6ef8f !important; | |
| border-color: #acdf20 !important; | |
| color: #45590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d68fef !important; | |
| border-color: #ac20df !important; | |
| color: #450d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c7ef8f !important; | |
| border-color: #8fdf20 !important; | |
| color: #39590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ea8fef !important; | |
| border-color: #d620df !important; | |
| color: #550d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efaf8f !important; | |
| border-color: #df6020 !important; | |
| color: #59260d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #edef8f !important; | |
| border-color: #dcdf20 !important; | |
| color: #58590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #a18fef !important; | |
| border-color: #4320df !important; | |
| color: #1b0d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8f9b !important; | |
| border-color: #df2036 !important; | |
| color: #590d16 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efbf8f !important; | |
| border-color: #df8020 !important; | |
| color: #59330d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #bf8fef !important; | |
| border-color: #8020df !important; | |
| color: #330d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fa7ef !important; | |
| border-color: #2050df !important; | |
| color: #0d2059 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c1ef8f !important; | |
| border-color: #83df20 !important; | |
| color: #34590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fd4 !important; | |
| border-color: #df20a9 !important; | |
| color: #590d44 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fe7ef !important; | |
| border-color: #20cfdf !important; | |
| color: #0d5359 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fe7 !important; | |
| border-color: #df20cf !important; | |
| color: #590d53 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #df8fef !important; | |
| border-color: #bf20df !important; | |
| color: #4d0d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d6ef8f !important; | |
| border-color: #acdf20 !important; | |
| color: #45590d !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ed8fef !important; | |
| border-color: #dc20df !important; | |
| color: #580d59 !important; | |
| } | |
| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fca !important; | |
| border-color: #df2096 !important; | |
| color: #590d3c !important; | |
| } |
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
| * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fbaef !important; | |
| border-color: #2076df !important; | |
| color: #0d2f59 !important; | |
| } | |
| * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efc18f !important; | |
| border-color: #df8320 !important; | |
| color: #59340d !important; | |
| } | |
| * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefc9 !important; | |
| border-color: #20df93 !important; | |
| color: #0d593b !important; | |
| } | |
| * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fb9ef !important; | |
| border-color: #2073df !important; | |
| color: #0d2e59 !important; | |
| } | |
| * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efb48f !important; | |
| border-color: #df6920 !important; | |
| color: #592a0d !important; | |
| } | |
| * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efcf8f !important; | |
| border-color: #df9f20 !important; | |
| color: #59400d !important; | |
| } | |
| * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #cf8fef !important; | |
| border-color: #9f20df !important; | |
| color: #400d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fa6 !important; | |
| border-color: #df204d !important; | |
| color: #590d1f !important; | |
| } | |
| * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fb3 !important; | |
| border-color: #df2066 !important; | |
| color: #590d29 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fb9 !important; | |
| border-color: #df2073 !important; | |
| color: #590d2e !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefb7 !important; | |
| border-color: #20df70 !important; | |
| color: #0d592d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefab !important; | |
| border-color: #20df56 !important; | |
| color: #0d5922 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efef8f !important; | |
| border-color: #dfdf20 !important; | |
| color: #59590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #cf8fef !important; | |
| border-color: #9f20df !important; | |
| color: #400d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8f91ef !important; | |
| border-color: #2023df !important; | |
| color: #0d0e59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efdc8f !important; | |
| border-color: #dfb920 !important; | |
| color: #594a0d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fde !important; | |
| border-color: #df20bc !important; | |
| color: #590d4b !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efef8f !important; | |
| border-color: #dfdf20 !important; | |
| color: #59590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ed8fef !important; | |
| border-color: #dc20df !important; | |
| color: #580d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8f9cef !important; | |
| border-color: #2039df !important; | |
| color: #0d1759 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c2ef8f !important; | |
| border-color: #86df20 !important; | |
| color: #36590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fd1 !important; | |
| border-color: #df20a3 !important; | |
| color: #590d41 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8f8f !important; | |
| border-color: #df2020 !important; | |
| color: #590d0d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8f93 !important; | |
| border-color: #df2026 !important; | |
| color: #590d0f !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefe6 !important; | |
| border-color: #20dfcc !important; | |
| color: #0d5952 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fe1 !important; | |
| border-color: #df20c2 !important; | |
| color: #590d4e !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fbf !important; | |
| border-color: #df2080 !important; | |
| color: #590d33 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efe98f !important; | |
| border-color: #dfd220 !important; | |
| color: #59540d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fbeef !important; | |
| border-color: #207cdf !important; | |
| color: #0d3259 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fef9e !important; | |
| border-color: #20df3d !important; | |
| color: #0d5918 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efb18f !important; | |
| border-color: #df6320 !important; | |
| color: #59280d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefaf !important; | |
| border-color: #20df60 !important; | |
| color: #0d5926 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefbc !important; | |
| border-color: #20df79 !important; | |
| color: #0d5930 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efec8f !important; | |
| border-color: #dfd920 !important; | |
| color: #59570d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef918f !important; | |
| border-color: #df2320 !important; | |
| color: #590e0d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d98fef !important; | |
| border-color: #b320df !important; | |
| color: #470d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efdc8f !important; | |
| border-color: #dfb920 !important; | |
| color: #594a0d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fdfef !important; | |
| border-color: #20bfdf !important; | |
| color: #0d4d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fc1 !important; | |
| border-color: #df2083 !important; | |
| color: #590d34 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #e48fef !important; | |
| border-color: #c920df !important; | |
| color: #500d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efa98f !important; | |
| border-color: #df5320 !important; | |
| color: #59210d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #deef8f !important; | |
| border-color: #bcdf20 !important; | |
| color: #4b590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #a18fef !important; | |
| border-color: #4320df !important; | |
| color: #1b0d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fe4ef !important; | |
| border-color: #20c9df !important; | |
| color: #0d5059 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d48fef !important; | |
| border-color: #a920df !important; | |
| color: #440d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #deef8f !important; | |
| border-color: #bcdf20 !important; | |
| color: #4b590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efc48f !important; | |
| border-color: #df8920 !important; | |
| color: #59370d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #a7ef8f !important; | |
| border-color: #50df20 !important; | |
| color: #20590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefdc !important; | |
| border-color: #20dfb9 !important; | |
| color: #0d594a !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ab8fef !important; | |
| border-color: #5620df !important; | |
| color: #220d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c6ef8f !important; | |
| border-color: #8cdf20 !important; | |
| color: #38590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefd4 !important; | |
| border-color: #20dfa9 !important; | |
| color: #0d5944 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fe1ef !important; | |
| border-color: #20c2df !important; | |
| color: #0d4e59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #caef8f !important; | |
| border-color: #96df20 !important; | |
| color: #3c590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8f9e !important; | |
| border-color: #df203d !important; | |
| color: #590d18 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fc4 !important; | |
| border-color: #df2089 !important; | |
| color: #590d37 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefd7 !important; | |
| border-color: #20dfaf !important; | |
| color: #0d5946 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #afef8f !important; | |
| border-color: #60df20 !important; | |
| color: #26590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8f9e !important; | |
| border-color: #df203d !important; | |
| color: #590d18 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefb4 !important; | |
| border-color: #20df69 !important; | |
| color: #0d592a !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #a18fef !important; | |
| border-color: #4320df !important; | |
| color: #1b0d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fd9 !important; | |
| border-color: #df20b3 !important; | |
| color: #590d47 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefc1 !important; | |
| border-color: #20df83 !important; | |
| color: #0d5934 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fdc !important; | |
| border-color: #df20b9 !important; | |
| color: #590d4a !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefc7 !important; | |
| border-color: #20df8f !important; | |
| color: #0d5939 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #a68fef !important; | |
| border-color: #4d20df !important; | |
| color: #1f0d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ab8fef !important; | |
| border-color: #5620df !important; | |
| color: #220d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #938fef !important; | |
| border-color: #2620df !important; | |
| color: #0f0d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8f91ef !important; | |
| border-color: #2023df !important; | |
| color: #0d0e59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #deef8f !important; | |
| border-color: #bcdf20 !important; | |
| color: #4b590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fb7ef !important; | |
| border-color: #2070df !important; | |
| color: #0d2d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efac8f !important; | |
| border-color: #df5920 !important; | |
| color: #59240d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8f8f !important; | |
| border-color: #df2020 !important; | |
| color: #590d0d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefef !important; | |
| border-color: #20dfdf !important; | |
| color: #0d5959 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fa4ef !important; | |
| border-color: #2049df !important; | |
| color: #0d1d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efa98f !important; | |
| border-color: #df5320 !important; | |
| color: #59210d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #efcf8f !important; | |
| border-color: #df9f20 !important; | |
| color: #59400d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fba !important; | |
| border-color: #df2076 !important; | |
| color: #590d2f !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fef8f !important; | |
| border-color: #20df20 !important; | |
| color: #0d590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fc7 !important; | |
| border-color: #df208f !important; | |
| color: #590d39 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #d18fef !important; | |
| border-color: #a320df !important; | |
| color: #410d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fe4 !important; | |
| border-color: #df20c9 !important; | |
| color: #590d50 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fcf !important; | |
| border-color: #df209f !important; | |
| color: #590d40 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fb9ef !important; | |
| border-color: #2073df !important; | |
| color: #0d2e59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fc4ef !important; | |
| border-color: #2089df !important; | |
| color: #0d3759 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefe9 !important; | |
| border-color: #20dfd2 !important; | |
| color: #0d5954 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef8fde !important; | |
| border-color: #df20bc !important; | |
| color: #590d4b !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #b6ef8f !important; | |
| border-color: #6cdf20 !important; | |
| color: #2b590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefa1 !important; | |
| border-color: #20df43 !important; | |
| color: #0d591b !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #aeef8f !important; | |
| border-color: #5cdf20 !important; | |
| color: #25590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #938fef !important; | |
| border-color: #2620df !important; | |
| color: #0f0d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #b3ef8f !important; | |
| border-color: #66df20 !important; | |
| color: #29590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fafef !important; | |
| border-color: #2060df !important; | |
| color: #0d2659 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c9ef8f !important; | |
| border-color: #93df20 !important; | |
| color: #3b590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8f99ef !important; | |
| border-color: #2033df !important; | |
| color: #0d1459 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefc6 !important; | |
| border-color: #20df8c !important; | |
| color: #0d5938 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #c98fef !important; | |
| border-color: #9320df !important; | |
| color: #3b0d59 !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #ef9e8f !important; | |
| border-color: #df3d20 !important; | |
| color: #59180d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #9fef8f !important; | |
| border-color: #40df20 !important; | |
| color: #1a590d !important; | |
| } | |
| * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * { | |
| font-size: 14px !important; | |
| font-family: cursive !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: 1px outset !important; | |
| border-radius: 0 !important; | |
| background-color: #8fefd2 !important; | |
| border-color: #20dfa6 !important; | |
| color: #0d5942 !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment