Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. "media queries": {
  2. "prefix": "queries",
  3. "body": [
  4. "/* big tablet 1024 px to 1200 px */",
  5. "@media only screen and (max-width: 1200px) {\n",
  6. "}\n",
  7. "/* small tablet to big tablet from 768 to 1023 px */",
  8. "@media only screen and (max-width: 1023px) {\n",
  9. "}\n",
  10. "/* small phones to small tablets from 481 to 767 px */",
  11. "@media only screen and (max-width: 767px) {\n",
  12. "}\n",
  13. "/* small phones from 0 to 480 px */",
  14. "@media only screen and (max-width: 480px) {\n",
  15. "}",
  16. ],
  17. "description": "responsive css style changes"
  18. }
  19.  
  20. "htmlsetup": {
  21. "prefix": "html",
  22. "body": [
  23. "<!DOCTYPE>",
  24. "<html>",
  25. " <head>",
  26. " <meta charset=\"utf-8\">",
  27. " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
  28. " <meta name=\"description\" content=\"\">",
  29. " <title></title>",
  30. " <link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">",
  31. " </head>\n",
  32. " <body>",
  33. " <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>",
  34. " </body>",
  35. "</html>"
  36. ],
  37. "description": "html setup"
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement