Advertisement
makispaiktis

Codecademy - 18th Exercise - ToDoApp(CSS)

Dec 9th, 2019 (edited)
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. /* Universal Styles */
  2.  
  3. body {
  4. margin: 0px;
  5. background-color: WhiteSmoke;
  6. font-family: 'Rock Salt', cursive;
  7. text-align: center;
  8. }
  9.  
  10. .secondary-background {
  11. background-color: Snow;
  12. }
  13.  
  14. .tagline {
  15. font-family: 'Quicksand', sans-serif;
  16. color: LightSlateGrey;
  17. line-height: 125px;
  18. }
  19.  
  20. /* Header */
  21.  
  22. h1 {
  23. margin: 0;
  24. background-color: SkyBlue;
  25. line-height: 100px;
  26. color: Khaki;
  27. }
  28.  
  29. h2 {
  30. margin: 10px;
  31. }
  32.  
  33. /* App Container */
  34.  
  35. .container {
  36. border: 2px solid Snow;
  37. display: flex;
  38. }
  39.  
  40. /* To Do Section */
  41.  
  42. .week {
  43. display: flex;
  44. flex-grow: 3;
  45. flex-direction: column;
  46. }
  47.  
  48. .row {
  49. min-height: 200px;
  50. display: flex;
  51. flex-wrap: wrap;
  52. justify-content: space-around;
  53. align-items: center;
  54. }
  55.  
  56. .square {
  57. width: 125px;
  58. height: 125px;
  59. padding: 10px;
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. }
  64.  
  65. .day.square {
  66. background-color: SkyBlue;
  67. border: 1px solid white;
  68. }
  69.  
  70. .task.square {
  71. background-color: Khaki;
  72. border: 1px solid white;
  73. }
  74.  
  75. .task p {
  76. font-family: 'Quicksand', sans-serif;
  77. font-weight: 700;
  78. font-size: 12px;
  79. }
  80.  
  81. /* Reminders */
  82.  
  83. .reminders {
  84. background-color: Khaki;
  85. display: flex;
  86. flex-grow: 2;
  87. }
  88.  
  89. .reminders h3 {
  90. width: 100%;
  91. margin: 10px;
  92. color: black;
  93. line-height: 90px;
  94. font-size: 24px;
  95. }
  96.  
  97. /* Footer */
  98.  
  99. footer {
  100. font-size: 24px;
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement