Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.30 KB | None | 0 0
  1. *{
  2.     box-sizing: border-box;
  3.     margin: 0;
  4.     padding: 0;
  5. }
  6.  
  7. img{
  8.     width: 100%;
  9. }
  10.  
  11. header{
  12.     width: 100%;
  13.     height: 5vh;
  14.     background-image: linear-gradient(#00a2ff, #54c1ff);
  15.     color: white;
  16.     text-align: center;
  17.     font-size: 2.4vh;
  18. }
  19.  
  20. header p{
  21.     display: block;
  22.     text-align: center;
  23. }
  24.  
  25. article{
  26.     display: flex;
  27. }
  28.  
  29. nav{
  30.     width: 30%;
  31. }
  32.  
  33. nav ul li {
  34.     margin: 15px;
  35.     list-style-type: none;
  36.     text-align: center;
  37. }
  38.  
  39. article section{
  40.     width: 60%;
  41.     max-width: 60%;
  42.     float: left;
  43.     margin: auto;
  44.     vertical-align: text-bottom;
  45. }
  46.  
  47. article section div{
  48.     display: flex;
  49.     flex-flow: wrap column;
  50.     float: left;
  51. }
  52.  
  53. article section img{
  54.     float: left;
  55.     width: 50%;
  56.     display: block;
  57.     padding: 5px;
  58. }
  59.  
  60. article section p{
  61.     vertical-align: text-bottom;
  62. }
  63.  
  64. footer{
  65.     width: 100%;
  66.     text-align: center;
  67. }
  68.  
  69. .kasprzyk{
  70.     width: 100%;
  71. }
  72.  
  73. .cebulski{
  74.     width: 100%;
  75. }
  76.  
  77. .podstronaArticle section{
  78.     width: 50%;
  79.     text-align: justify;
  80.     margin: auto;
  81.     padding: 5px;
  82. }
  83.  
  84. @media only screen and (max-width: 700px){
  85.     *{
  86.         width: 100%;
  87.         text-align: center;
  88.     }
  89.     header, article, nav, section, footer{
  90.         width: 100%;
  91.         text-align: center;
  92.         display: flex;
  93.         flex-flow: row wrap;
  94.         margin: auto;
  95.     }
  96.    
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement