Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.60 KB | None | 0 0
  1. * {
  2.     box-sizing: border-box;
  3. }
  4. html, body {
  5.     font-family: Arial;
  6. }
  7.  
  8. header {
  9.     background-color: #616AE9;
  10.     margin: 10px;
  11.     border: 2px dotted #A7AEC4;
  12. }
  13.  
  14. .header1 {
  15.     font-size: 4rem;
  16.     padding-left: 45px;
  17.     text-transform: capitalize;
  18.     height: 10%;
  19.     margin-top: 2%;
  20.     margin-bottom: 2%;
  21.     vertical-align: center;
  22. }
  23.  
  24. .header2 {
  25.     text-transform: capitalize;
  26.     padding-top: 5px;
  27.     font-size: 3rem;
  28.     margin-bottom: 0.5%;
  29.     vertical-align: center;
  30. }
  31.  
  32. article, img, p, hr {
  33.     padding-left: 20px;
  34. }
  35.  
  36. .secParagraph {
  37.     padding-right: 50px;
  38. }
  39.  
  40. article {
  41.     border: 2px solid #595959;
  42.     /*margin-right: 10px;*/
  43.     font-size: 1.15rem;
  44.     background-color: #EDEDED;
  45.     width: 62%;
  46.     padding: 0px 2%;
  47.     margin: 0px 2%;
  48.     float: left;
  49. }
  50.  
  51. img {
  52.     height: 35%;/*120px*/
  53.     width: 27%;/*300px*/
  54.     margin-top: 35px;
  55.     margin-bottom: 35px;
  56.     vertical-align: center;
  57. }
  58.  
  59. aside {
  60.     background-color: #9EBDE9;
  61.     border: 2px solid #595959;
  62.     text-align: left;
  63.     width: 20%;
  64.     padding: 0px 2%;
  65.     margin: 0px 2%;
  66.     float: left;
  67. }
  68.  
  69. aside ul {
  70.     font-size: 1rem;
  71.     list-style-position: inside;
  72. }
  73.  
  74. aside li {
  75.     text-align: left;
  76. }
  77.  
  78. aside p {
  79.     font-size: 3rem;
  80. }
  81.  
  82. hr {
  83.     border: 2px solid #BEBEBE;
  84.     margin-bottom: 10px;
  85.     margin-left: 20px;
  86.     margin-right: 20px;
  87. }
  88.  
  89. footer {
  90.     background-color: #DBFF3D;
  91.     margin: 10px;
  92.     max-width: 100%;
  93.     height: 8.5rem;
  94.     border: 2px dotted #A7AEC4;
  95.     text-align: center;
  96.     text-decoration: underline;
  97.     padding-top: 3%;
  98. }
  99. .footer {
  100.     font-size: 2.5rem;
  101. }
  102.  
  103. .wrapper {
  104.     width: 100%;
  105.     overflow: auto;
  106. }
  107.  
  108. .wrapper::after {
  109.     clear: both;
  110.     content: '';
  111.     display: block;
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement