Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.80 KB | None | 0 0
  1. body {
  2.     background-color: #25272F;
  3.     float: middle;
  4. }
  5.  
  6. h1:hover {
  7.     color: white;
  8. }
  9.  
  10. .header {
  11.     color: #blue;
  12. }
  13.  
  14. h1 {
  15.     width: 150px;
  16.     color: blue;
  17. }
  18.  
  19. #in-the-middle {
  20.     max-width: 500px;
  21.     margin: 0 auto;
  22. }
  23.  
  24. #bigger-better {
  25.     width: 200px;
  26.     height: 20px;
  27.     border-radius: 10px;
  28. }
  29.  
  30. #bigger-better:hover {
  31.     width: 400px;
  32.     height: 40px;
  33.     border-radius: 10px;
  34. }
  35.  #name {
  36.     text-align: center;
  37.     border: 2px black solid;
  38.     padding: 10px;
  39.     font-size: 0.6cm;
  40.     width: 150px;
  41.     height: 32px;
  42.  }
  43.  
  44. #name:hover {
  45.     border: 2px red double;
  46. }
  47.  
  48. #the-button {
  49.     margin-top: 15px;
  50. }
  51.  
  52. .category {
  53.     width: 150px;
  54.     font-family: Arial;
  55.     text-align: middle;
  56. }
  57.  
  58. .category strong {
  59.     text-decoration: underline dotted;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement