Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.40 KB | None | 0 0
  1. /*
  2. ** Main elements
  3. */
  4.  
  5. body {
  6.     background-color: #966BD6;
  7.     width: 100%;
  8.     margin: 0;
  9. }
  10.  
  11. * {
  12.     box-sizing: border-box;
  13.     font-family: "Comic Sans MS";
  14. }
  15.  
  16. h1 {
  17.     text-align: center;
  18. }
  19.  
  20. /*
  21. ** General layout
  22. */
  23. .content {
  24.     width: 80%;
  25.     /* /height: 720px; */
  26.     display: block;
  27.     margin: 100px auto;
  28.     padding: 50px;
  29.     position: relative;
  30.  
  31.     background-color: #FFFFFF;
  32.     border-radius: 3px;
  33. }
  34.  
  35. .footer {
  36.     width: 100%;
  37.     height: 50px;
  38.     padding: 10px 10%;
  39.  
  40.     background-color: #4D2982;
  41. }
  42.  
  43. .footer-content {
  44.     color: #ffffff;
  45.     text-align: center;
  46. }
  47.  
  48. a {
  49.     color: #33CCCC  ;
  50. }
  51.  
  52. .line-container {
  53.     width: 100%;
  54.     margin: 30px 0;
  55.     overflow: hidden;
  56.     text-align: center;
  57. }
  58.  
  59. .text-container {
  60.     text-align: justify;
  61.     width: 50%;
  62.     display: inline-block;
  63.     vertical-align: middle;
  64.     padding: 20px; /* ver horiz */
  65. }
  66. .image {
  67.     width: 49%;
  68.     display: inline-block;
  69.     vertical-align: middle;
  70. }
  71.  
  72. .right {
  73.  float: right;
  74. }
  75. /*
  76. ** Screen width: 800px
  77. */
  78.  
  79. @media screen and (max-width: 800px) {
  80.     .text-container {
  81.         width: 100%;
  82.     }
  83.  
  84.     .image {
  85.         width: 80%;
  86.     }
  87. }
  88.  
  89. /*
  90. ** Screen width: 670px
  91. */
  92. @media screen and (max-width: 670px) {
  93.     .content {
  94.         width: 100%;
  95.         margin: 0;
  96.         padding: 5px;
  97.     }
  98.  
  99.     .image {
  100.         width: 90%;
  101.     }
  102. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement