Advertisement
Patrikrizek

Lesson5-main.css

Mar 15th, 2022
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.62 KB | None | 0 0
  1. /* CSS */
  2. /* Here you can input your own styling */
  3.  
  4. /* Typography */
  5. h1,
  6. h2,
  7. h3,
  8. h4,
  9. h5,
  10. h6,
  11. p,
  12. small {
  13.   font-family: 'Courier New', Courier, monospace;
  14. }
  15.  
  16. a {
  17.   font-family: 'Courier New', Courier, monospace;
  18. }
  19.  
  20. /* Text colours */
  21.  
  22. .white {
  23.   color: white;
  24. }
  25.  
  26. .red {
  27.   color: red;
  28. }
  29.  
  30. .blue {
  31.   color: blue;
  32. }
  33.  
  34. .green {
  35.   color: green;
  36. }
  37.  
  38. /* Background colours */
  39.  
  40. .body-color {
  41.   background-color: lightgray;
  42. }
  43.  
  44. .bg-gray {
  45.     background-color: lightgray;
  46. }
  47.  
  48. .bg-red {
  49.   background-color: red;
  50. }
  51.  
  52. .bg-blue {
  53.   background-color: blue;
  54. }
  55.  
  56. .bg-green {
  57.   background-color: green;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement