Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.95 KB | None | 0 0
  1. .site {
  2.   margin: 0px;
  3.   padding: 0px;
  4.   display: grid;
  5.   grid-template-columns: 1fr 3fr 3fr;
  6.   grid-template-rows: auto 1fr 2fr;
  7.   grid-template-areas:
  8.   "title navbar navbar"
  9.   "content content content"
  10.   "about about about";
  11. }
  12.  
  13. .mylife_div{
  14.   grid-area: content;
  15.   text-align: center;
  16.   background-color: green;
  17. }
  18.  
  19. .mylife_text{
  20.   padding-top: 6%;
  21.   color: #e8fff2;
  22.   font-family: sans-serif;
  23.   font-size: 5em;
  24. }
  25.  
  26. .mylife_text2{
  27.   color: #e8fff2;
  28.   font-family: sans-serif;
  29.   font-size: 2em;
  30. }
  31.  
  32. .pictures{
  33.   padding-left: 0%;
  34.   padding-right: 0%;
  35.   display: grid;
  36.   grid-template-areas:
  37.   "left mid right"
  38. }
  39.  
  40. .pim_ship{
  41.   width: 50%;
  42.   background-color: blue;
  43.   grid-area: left;
  44. }
  45.  
  46. .pim_ship_pic{
  47.   height: 20%;
  48.   color: blue;
  49. }
  50.  
  51. .pim_detect{
  52.   width 50%;
  53.   background-color: red;
  54.   grid-area: mid;
  55. }
  56.  
  57. .pim_detect_pic{
  58.   height: 20%;
  59. }
  60.  
  61. .pim_diploma{
  62.   grid-area: right;
  63. }
  64.  
  65. .pim_diploma_pic{
  66.   height: 20%;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement