Advertisement
pacho_the_python

enterprise css

Feb 5th, 2023
955
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.18 KB | None | 0 0
  1. body {
  2.     font-family: Arial, Helvetica, sans-serif;
  3.    
  4. }
  5.  
  6. main {
  7.     width: 1060px;
  8.     /* position: relative; */
  9.     margin: 200px 430px;
  10. }
  11.  
  12. article, section {
  13.     display: inline-block;
  14. }
  15.  
  16. article {
  17.     width: 460px;
  18.     height: 400px;
  19.    
  20.     background-color: #ebe7e7;
  21.     border-top-left-radius: 10px;
  22.     border-bottom-left-radius: 10px;
  23.     padding: 50px 40px;
  24. }
  25.  
  26. .title {
  27.     font-size: 12px;
  28.     font-weight: bold;
  29.     margin-bottom: 10px;
  30. }
  31.  
  32. .description {
  33.     padding: 30px 0;
  34.     line-height: 1.5;
  35.     color: rgb(150, 148, 148);
  36. }
  37.  
  38. button {
  39.     padding: 10px 18px;
  40.     border-radius: 4px;
  41.     border: none;
  42. }
  43.  
  44. .contact_btn {
  45.     background-color: #8371c4;
  46.     color: white;
  47.     font-weight: bold;
  48.     margin-right: 12px;
  49. }
  50.  
  51. .learn_btn {
  52.     background-color: #ebe7e7;
  53.     font-weight: bold;
  54.     color: black;
  55.     border: 1px solid black;
  56. }
  57.  
  58. section {
  59.     width: 600px;
  60.     height: 400px;
  61.     background-color: #ebe7e7;
  62.     position: absolute;
  63.     border-top-right-radius: 10px;
  64.     border-bottom-right-radius: 10px;
  65. }
  66.  
  67. .image {
  68.     width: 300px;
  69.     height: 30px;
  70.     position: relative;
  71.     top: 90px;
  72.     left: 220px;
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement