123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .color-red {
- color: red;
- }
- .color-blue {
- color: blue;
- }
- .color-green {
- color: green;
- }
- .color-yellow {
- color: yellow;
- }
- .bg-green {
- background: green;
- }
- .bg-yellow {
- background: yellow;
- }
- .bg-black {
- background: black;
- }
- .text-center {
- text-align: center;
- }
- .button {
- display: inline-block;
- padding: .75em 1.5em;
- background: dodgerblue;
- color: white;
- border-radius: .5em;
- cursor: pointer;
- text-decoration: none;
- }
|