Guest User

Untitled

a guest
Jun 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. // Large Devices
  2. @media (min-width:1200px) {
  3. #home-heading {
  4. h3 {
  5. color: blue;
  6. }
  7. }
  8. }
  9.  
  10. //Medium Devices
  11. @media (min-width: 992px) and (max-width: 1199px) {
  12. #home-heading {
  13. h3 {
  14. color: yellow;
  15. }
  16. }
  17. }
  18.  
  19. //Small Devices
  20. @media (min-width: 768px) and (max-width: 991px) {
  21. #home-heading {
  22. h3 {
  23. color: green;
  24. }
  25. }
  26. }
  27.  
  28. // Extra Small
  29. @media (max-width:767px) {
  30. #home-heading {
  31. h3 {
  32. color: red;
  33. }
  34. }
  35. }
  36.  
  37. // Extra Small
  38. @media (max-width:480px) {
  39. #home-heading {
  40. h3 {
  41. color: pink;
  42. }
  43. }
  44. }
  45.  
  46. // Extra Small
  47. @media (max-width:320px) {
  48. #home-heading {
  49. h3 {
  50. color: purple;
  51. }
  52. }
  53. }
Add Comment
Please, Sign In to add comment