You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exer_41.css 1003B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .alpha {
  2. color: white;
  3. background-color: royalblue;
  4. border: 10px solid green;
  5. padding: 2em;
  6. }
  7. .bravo {
  8. background-color: cornsilk;
  9. margin: 3em;
  10. border-top: 10px solid magenta;
  11. border-left: 10px solid red;
  12. /* the color of the border is gold*/
  13. }
  14. .charlie {
  15. background-color: lightsalmon;
  16. margin-top: 1em;
  17. margin-left: 1em;
  18. border: 10px solid brown;
  19. padding: 2em;
  20. /* the color of the is darkred*/
  21. }
  22. .delta {
  23. background-color: palegreen;
  24. border: 10px dotted darkblue;
  25. border-top: 10px solid darkblue;
  26. padding: 2em;
  27. /* the color of the is limegreen and seagreen*/
  28. }
  29. .echo {
  30. background-color: pink;
  31. margin-left: 3em;
  32. margin-right: 9em;
  33. border: 10px solid red;
  34. /* the color of the is hotpink, deeppink, mediumvioletred, palevioletred*/
  35. /* ------ NOT PART OF THE EXERCISE ------ */
  36. /* added CSS to add nicer visuals */
  37. body {
  38. background-color: #efefef;
  39. font-family: roboto;
  40. width: 500px;
  41. margin: 0 auto;
  42. }
  43. html {
  44. background-color: black;
  45. }
  46. div {
  47. text-align: justify;
  48. }