Advertisement
Guest User

Demo1 - css

a guest
Nov 20th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.10 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4. }
  5.  
  6. main {
  7.     width: 1000px;
  8.     margin: auto;
  9. }
  10.  
  11. h1 {
  12.     text-align: center;
  13.     color: aliceblue;
  14.     padding: 20px;
  15.     border-bottom: 5px solid rebeccapurple;
  16.     padding: 10px;
  17.     background-color: rgb(100, 138, 150, 0.75);
  18. }
  19.  
  20. a {
  21.     font-size: 30px;
  22.     color: darkblue;
  23.     text-decoration: none;
  24.     padding: 20px;
  25.     display: inline-table;
  26.     width: 200px;
  27.     text-align: center;
  28. }
  29.  
  30. nav {
  31.     text-align: center;
  32.     border-bottom: darkgrey 1px solid;
  33. }
  34.  
  35. a:hover {
  36.     letter-spacing: 5px;
  37.     text-shadow: 3px 2px lightblue;
  38.     transition: all 800ms;
  39. }
  40.  
  41. img {  
  42.    width: 100%;
  43.    border: black solid 10px;
  44.    padding: 10px;
  45.    background-color: brown;
  46.    box-shadow: 0px 0px 20px 5px gray;
  47.    object-fit:contain;
  48. }
  49.  
  50. p {
  51.     font-size: 30px;
  52.     background-color: rgb(158, 180, 180, 0.5);
  53.     padding: 20px;
  54.     margin-left: 50px;
  55.     box-shadow: 0px 0px 20px 5px rgb(192, 190, 190);
  56.  
  57. }
  58.  
  59. div {
  60.    
  61.     border-radius: 30px;
  62.     padding: 30px;
  63.     width: 40%;
  64.    display: inline-block;
  65.    vertical-align: middle;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement