Tudjewuj

Styles for generator of css colors

May 5th, 2023
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. body {
  2.     background-color: gray;
  3.     text-align: center;
  4.     display: block;
  5.     margin: 0 auto;
  6.     font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  7. }
  8.  
  9. .result {
  10.     display: none;
  11. }
  12.  
  13. .line {
  14.     border: 5px solid black;
  15. }
  16.  
  17. #button {
  18.     border: 2px solid black;
  19.     border-radius: 8px;
  20.     background-color: #999797;
  21.     margin: 10px;
  22.     font-size: 20px;
  23.     width: 150px;
  24.     height: 50px;
  25. }
  26.  
  27. #button:hover {
  28.     background-color: #adabab;
  29. }
  30.  
  31. #button:active {
  32.     background-color: #cac6c6;
  33. }
  34.  
  35. .result {
  36.     border: 5px solid black;
  37.     margin: 30px;
  38.     font-size: 25px;
  39.     border-radius: 8px;
  40. }
  41.  
  42. #result {
  43.     color: rgb(46, 48, 56);
  44. }
  45.  
  46. #input {
  47.     margin-top: 10px;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment