Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.05 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&subset=latin-ext');
  2. /* 400 to regular; liczbowe okreslenie weight; serif-jesli serwer nie dziala to zamien merriweather na defaultowy serif */
  3. body {
  4.   font-family: 'Merriweather', serif;
  5.   background: white; /* tutaj parametry dla najmniejszych ekr. (mobile first); ponizej te wieksze*/
  6. }
  7.  
  8.  
  9. h1 {
  10.   font-family: 'Merriweather';
  11.   font-size: 23px;
  12.   font-weight: 400;
  13.   color: black;
  14.    
  15. }
  16.  
  17. h2 {
  18.   font-family: 'Merriweather';
  19.   font-size: 15px;
  20.   font-weight: 400;
  21.   color: black;
  22. }
  23.  
  24. p {
  25.   font-family: 'Merriweather';
  26.   font-size: 16px;
  27.   color: black;
  28. }
  29.  
  30. .misio {
  31.   margin-top: 89px;
  32. }
  33.  
  34. .wierszyk {
  35.   margin-top: 37px;
  36. }
  37.  
  38. /* ==========================================================================
  39. Media Queries
  40. ========================================================================== */
  41.  
  42. /* MEDIUM - Średnie ekrany i w górę (powyżej 641px) */
  43.  
  44. @media only screen and (min-width: 40.063em) {
  45.  
  46.     body {
  47.       background: white;
  48.     }
  49.  
  50. h1 {
  51.   font-family: 'Merriweather';
  52.   font-size: 36px;
  53.   font-weight: 400;
  54.   color: black;
  55.  
  56. }
  57.  
  58. h2 {
  59.   font-family: 'Merriweather';
  60.   font-size: 23px;
  61.   font-weight: 400;
  62.   color: black;
  63. }
  64.  
  65. p {
  66.   font-family: 'Merriweather';
  67.   font-size: 20px;
  68.   color: black;
  69. }
  70.  
  71. .wierszyk {
  72.   margin-top: 100px;
  73. }
  74.  
  75. /*zamknięcie MEDIUM*/
  76. }
  77.  
  78. /* LARGE - Duże ekrany i w górę (powyżej 1025px) */
  79. @media only screen and (min-width: 64.063em) {
  80.  
  81.     body {
  82.       background: white;
  83.     }
  84.  
  85.   h1 {
  86.   font-family: 'Merriweather';
  87.   font-size: 40px;
  88.   font-weight: 400;
  89.   color: black;
  90.  
  91. }
  92.  
  93. h2 {
  94.   font-family: 'Merriweather';
  95.   font-size: 25px;
  96.   font-weight: 400;
  97.   color: black;
  98. }
  99.  
  100. p {
  101.   font-family: 'Merriweather';
  102.   font-size: 22px;
  103.   color: black;
  104. }
  105.  
  106. .wierszyk {
  107.   margin-top: 130px;
  108. }
  109. /*zamknięcie LARGE*/
  110. }
  111.  
  112.  
  113. /*XLARGE - Wielkie ekrany i w górę (powyżej 1441px)*/
  114.  
  115. @media only screen and (min-width: 90.063em) {
  116.  
  117.     body {
  118.       background: white;
  119.     }
  120.  
  121.  
  122.  
  123. /*zamknięcie XLARGE*/
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement