Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.24 KB | None | 0 0
  1. *{
  2.     margin: 0px
  3.     padding: 0px
  4. }
  5.  
  6. #container{
  7.   background-color: navy;
  8.   display: inline-block;
  9.   height:   600px;
  10.   width: 100000
  11.    px
  12.   padding: 10px;
  13.  
  14. }
  15. /* #box-1, #box-2, #box-3, #box-4{
  16.  
  17. } */
  18.  
  19. #box-1{
  20.   background-color: red;
  21.   color: white;
  22.   height: 80px;
  23.   width: 930px;
  24.   margin: 10px;
  25.   padding: 10px;
  26.   vertical-align: top;
  27.   border-radius: 10px;
  28.   display: inline-block;
  29. }
  30. #box-2{
  31.   background-color: teal;
  32.   color: white;
  33.   /* position: relative; */
  34.   top: 20px;
  35.   left: 20px;
  36.   display: inline-block;
  37.   height: 300px;
  38.   width: 250px;
  39.   border-radius: 10px;
  40.   padding: 15px;
  41.   margin: 20px;
  42.  
  43. }
  44. #box-3{
  45.   background-color: black;
  46.   color: white;
  47.   /* position: relative; */
  48.   /* top: 20px;
  49.   left: 20px; */
  50.   display: inline-block;
  51.   height: 300px;
  52.   width: 590px;
  53.   margin: 10px;
  54.   border-radius: 10px;
  55.   padding: 15px;
  56.   vertical-align: top;
  57.  
  58.  
  59. }
  60.  
  61. #box-4{
  62.     background-color: grey;
  63.     color: white;
  64.     /* position: relative; */
  65.     top: 20px;
  66.     left: 20px;
  67.     /* display: inline-block; */
  68.     height: 50px;
  69.     width: 920px;
  70.     border-radius: 10px;
  71.     padding: 15px;
  72.     margin: 10px;
  73.  
  74.  
  75. }
  76.  
  77. .blue-text{
  78.     color:aqua;
  79. }
  80.  
  81. .white-text{
  82.     color:white;
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement