Advertisement
Guest User

css

a guest
Aug 13th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.98 KB | None | 0 0
  1. .body {
  2.     margin: 0px;
  3.     border: 0px;
  4. }
  5.  
  6. .header{
  7.     height: 75px;
  8.     width: 100%;
  9.     background-color: black;
  10.     color: aliceblue;
  11.     margin: 0px;
  12.     border: 0px;
  13.     display: flex;
  14.     flex-direction: row;
  15.     justify-content: space-evenly;
  16.     align-items: center;
  17. }
  18.  
  19. .main{
  20.     height: 300px;
  21.     width: 100%;
  22.     background-color:  #edeeed;
  23.     font-family: verdana;
  24.     color:black;
  25.  
  26. }
  27.  
  28. .main .hello{
  29.     padding: 50px 100px 10px 90px;
  30.     margin: 0px;
  31.     border: 0px;
  32.     font-size: 50px;
  33. }
  34. .main .lekha{
  35.     font-family: arial;
  36.     padding: 0px 100px 0px 90px;
  37.     font-size: 18px;
  38. }
  39. .main .learn{
  40.     font-size: 18px;
  41.     padding: 10px 90px;
  42. }
  43.  
  44. .article{
  45.     display: flex;
  46.     justify-content: center;
  47.     width: 100%;
  48.     border: 20px;
  49.    
  50. }
  51. .line{
  52.     width: 100%;
  53.     height: 47px;
  54.     border-bottom: 1px solid black;
  55. }
  56.  
  57. .footer{
  58.     font-family: arial;
  59.     display: flex;
  60.     padding-left: 30px;
  61.     padding-top: 20px;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement