Advertisement
Digital_ghost

Css

Jan 30th, 2023
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.70 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     box-sizing: border-box;
  5. }
  6. body {
  7.     background-color: rgb(253, 254, 255);
  8.     display: flex;
  9.     justify-content: center;
  10.     align-items: center;
  11. }
  12. .full {
  13.     width: 50%;
  14.     max-width: 1000px;
  15.     min-height: 100px;
  16.     background-color: rgb(245, 239, 231);
  17.     margin: 0px;
  18.     display: grid;
  19.     grid-template-columns: 2fr 4fr;
  20. }
  21. .left {
  22.     position: initial;
  23.     background-color: rgb(126, 219, 231);
  24.     padding: 20px;
  25.  
  26. }
  27. .right {
  28.     position: initial;
  29.     background-color: rgb(162, 202, 206);
  30.     padding: 20px;
  31.  
  32. }
  33. .image, .Contact, .Skills, .Language, .Hobbies, .title,
  34. .Summary, .Experience, .Education, .project {
  35.     margin-bottom: 30px;
  36. }
  37. .h2 {
  38.     background-color: rgb(4, 96, 150);
  39. }
Tags: CSS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement