Advertisement
Guest User

Demo2 - css

a guest
Nov 20th, 2023
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.12 KB | None | 0 0
  1. * {
  2.     padding: 0px;
  3.     margin: 0px;
  4. }
  5.  
  6. .main {
  7.     width: 1000px;
  8.     background-color: lightgreen;
  9.     margin: auto;
  10. }
  11.  
  12. .navigation {
  13.     background-color: darkgreen;
  14.     padding: 0px 30px;
  15.     display: flex;
  16.     justify-content: space-between;
  17.     align-items: center;
  18. }
  19.  
  20. .logo {
  21.     color: lightgreen;
  22.     font-size: 32px;
  23.     text-shadow: 3px 3px 5px orange;
  24.     font-style: italic;
  25. }
  26.  
  27. span {
  28.     color: orange;
  29.     font-size: 40px;
  30.     font-weight: bolder;
  31. }
  32.  
  33. ul a {
  34.     color: lightgreen;
  35.     font-size: 24px;
  36.     text-decoration: none;
  37. }
  38.  
  39. ul {
  40.     list-style: none;
  41.     display: flex;
  42.     gap: 20px;
  43. }
  44.  
  45. .info img{
  46.     width: 100px;
  47.     height: 100px;
  48.     /* border-radius: 50px; */
  49.     margin: 10px;
  50. }
  51.  
  52. .info div {
  53.     border: darkgreen 3px solid;
  54.     border-radius: 10px;
  55.     background-color: white;
  56.     width: 40%;
  57.     display: inline-block;
  58.     text-align: center;
  59.     margin: 20px;
  60. }
  61.  
  62. .info {
  63.     text-align: center;
  64.     padding: 30px;
  65. }
  66.  
  67. .info h2 {
  68.     background-color: darkgreen;
  69.     color: lightgreen;
  70.     font-style: italic;
  71.     font-weight: normal;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement