A Pen by Isaac LaComb on CodePen.
Created
April 27, 2018 08:17
-
-
Save LeetCodes/0807ded2afced1baa97f9cfc7602d56d to your computer and use it in GitHub Desktop.
zGpyGO
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
| <button class="white huge bold italic">Button</button> | |
| <!--red,yellow,green,cyan,blue,pink,white,black,one,tiny,small,normal,big,huge,giant,too-big,bold--> |
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
| /*.color {color: #xxx;background: #xxx;}*/ | |
| /*size {font-size: x;}*/ | |
| .red {color: #fff;background: #f00;} | |
| .yellow {color: #000;background: #ff0} | |
| .green {color: #000;background: #0f0;} | |
| .cyan {color: #000;background: #0ff} | |
| .blue {color: #000;background: #00f;} | |
| .pink {color: #000;background: #f0f;} | |
| .white {color: #000;background: #fff;} | |
| .black {color: #fff;background: #000;} | |
| .one {font-size: 1px} | |
| .tiny {font-size: 4px;} | |
| .small {font-size: 7px;} | |
| .normal {font-size: 13px} | |
| .big {font-size: 26px;} | |
| .huge {font-size: 52px;} | |
| .giant {font-size: 100px} | |
| .too-big {font-size: 520px} | |
| .bold {font-weight: bold;} | |
| .italic {font-style: italic;} | |
| button {border: 2px #000 solid} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment