styles.css 482 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .color-red {
  2. color: red;
  3. }
  4. .color-blue {
  5. color: blue;
  6. }
  7. .color-green {
  8. color: green;
  9. }
  10. .color-yellow {
  11. color: yellow;
  12. }
  13. .bg-green {
  14. background: green;
  15. }
  16. .bg-yellow {
  17. background: yellow;
  18. }
  19. .bg-black {
  20. background: black;
  21. }
  22. .text-center {
  23. text-align: center;
  24. }
  25. .button {
  26. display: inline-block;
  27. padding: .75em 1.5em;
  28. background: dodgerblue;
  29. color: white;
  30. border-radius: .5em;
  31. cursor: pointer;
  32. text-decoration: none;
  33. }