Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. p.przyklad1 {
  2. outline-style: solid;
  3. outline-color: red;
  4. }
  5.  
  6. body{
  7. background-color: grey;
  8. }
  9. .przyklad2 {
  10. text-indent:-9999px;
  11. line-height: 0;
  12. }
  13. .przyklad2:after{
  14. content:'szary';
  15. text-indent: 0px;
  16. display:block;
  17. line-height:initial;
  18. }
  19.  
  20. @media screen and (max-width: 960px) {
  21. body{
  22. background-color: red;
  23.  
  24. }
  25. p.przyklad1 {
  26. outline-style: solid;
  27. outline-color: yellow;
  28. content:"czerwony";
  29. }
  30. .przyklad2 {
  31. text-indent:-9999px;
  32. line-height: 0;
  33. }
  34. .przyklad2:after{
  35. content:'czerwony';
  36. text-indent: 0px;
  37. display:block;
  38. line-height:initial;
  39. }
  40. }
  41.  
  42. @media screen and (max-width: 760px) {
  43. body{
  44. background-color: orange;
  45. }
  46. p.przyklad1 {
  47. outline-style: solid;
  48. outline-color: red;
  49. }
  50. .przyklad2 {
  51. text-indent:-9999px;
  52. line-height: 0;
  53. }
  54. .przyklad2:after{
  55. content:'pomaranczowy';
  56. text-indent: 0px;
  57. display:block;
  58. line-height:initial;
  59. }
  60. }
  61.  
  62. @media screen and (max-width: 550px) {
  63. body{
  64. background-color: yellow;
  65. }
  66. p.przyklad1 {
  67. outline-style: solid;
  68. outline-color: red;
  69. }
  70. .przyklad2 {
  71. text-indent:-9999px;
  72. line-height: 0;
  73. }
  74. .przyklad2:after{
  75. content:'czerwony';
  76. text-indent: 0px;
  77. display:block;
  78. line-height:initial;
  79. }
  80. }
  81.  
  82. @media screen and (max-width: 320px) {
  83. body{
  84. background-color: blue;
  85. }
  86. p.przyklad1 {
  87. outline-style: solid;
  88. outline-color: red;
  89. }
  90. .przyklad2 {
  91. text-indent:-9999px;
  92. line-height: 0;
  93. }
  94. .przyklad2:after{
  95. content:'niebieski';
  96. text-indent: 0px;
  97. display:block;
  98. line-height:initial;
  99. }
  100. }
  101.  
  102. div{
  103. background-color:lightgrey;
  104. border: 15px solid green;
  105. padding: 50px;
  106. margin: 20px;
  107.  
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement