Advertisement
Guest User

Untitled

a guest
Jul 30th, 2020
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. margin: 0;
  4. padding: 0;
  5. }
  6.  
  7. :root {
  8. --deep-dark: rgb(26, 26, 26);
  9. --light-dark: rgb(79, 82, 92);
  10. --light-blue: rgb(0, 132, 255);
  11. --dark-blue: rgb(2, 84, 161);
  12. --light: rgb(245, 245, 245);
  13. --lighter-blue: rgb(9, 157, 243);
  14. }
  15.  
  16. body {
  17. display: flex;
  18. justify-content: center;
  19. margin-top: 120px;
  20. font-family: 'Montserrat', sans-serif;
  21. background-color: var(--deep-dark);
  22. color: var(--light)}
  23. h2{
  24. text-align: center;
  25. margin-top: 20px;
  26. padding: 20px 0 10px 0;
  27. }
  28. p{
  29. padding: 20px;
  30. }
  31.  
  32. .toDoInfo{
  33. text-align: center;
  34. margin: 20px;
  35. }
  36.  
  37. .toDoBody{
  38. width: 600px;
  39. align-items: center;
  40. justify-content: center;
  41.  
  42. }
  43. .top{
  44. background-color: var(--dark-blue);
  45. border-radius: 5px;
  46.  
  47.  
  48. }
  49. input{
  50. margin-left: 10px;
  51. }
  52. .toDoInput{
  53. width: 80%;
  54. padding: 10px 20px;
  55. margin-right: 20px;
  56. border: none;
  57. border-radius: 5px;
  58. color: var(--light-dark);
  59. background-color: var(--light);
  60.  
  61. }
  62. .addBtn{
  63. border: none;
  64. border-radius: 5px;
  65. padding: 10px 20px;
  66. transition: .3s;
  67. }
  68. .addBtn:hover{
  69. color: var(--light);
  70. background-color: rgb(9, 157, 243);
  71. }
  72. .bottom{
  73. background-color: var(--light-blue);
  74. border-radius: 5px;
  75. margin: 20px;
  76. }
  77. ul{
  78. list-style-type: none;
  79. /* margin: 20px; */
  80. padding: 10px;
  81. }
  82.  
  83. li{
  84. /* margin-top: 0; */
  85. margin: 10px;
  86. background-color: var(--lighter-blue);
  87. padding: 10px;
  88. border: none;
  89. border-radius: 5px;
  90.  
  91. }
  92. .tools{
  93. display: inline;
  94.  
  95. cursor: pointer;
  96. float: right;
  97.  
  98. }
  99.  
  100. button{
  101. cursor: pointer;
  102. }
  103. .fa-times{
  104. color: rgb(206, 37, 37);
  105. font-size: 20px;
  106. font-weight: bold;
  107. outline: none;
  108. transition: .3s;
  109.  
  110. }
  111. .delete{
  112. cursor: pointer;
  113. background-color: transparent;
  114. border: none;
  115. outline:none;
  116. /* display: inline; */
  117. }
  118.  
  119. .fa-times:hover{
  120. color: tomato;
  121. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement