Guest User

Untitled

a guest
Nov 12th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6.  
  7.  
  8. <link rel="stylesheet" href="css/bootstrap.css">
  9. <link rel="stylesheet" href="css/main.css">
  10. <link rel="stylesheet" href="css/media.css">
  11.  
  12. <title>Future site fucked up</title>
  13. </head>
  14. <body>
  15. <header class = "fuckheader">
  16. <div class = "container1">
  17. <div class="row">
  18. <div class="col-md-3">
  19. <div class="fucklogo">
  20. <img src="img/ETS.png">
  21. </div>
  22. </div>
  23. <div class="col-md-6">
  24. <div class = "fuckmenue">
  25. <button class = "pirozhok"><img src = "img/if_th-menu-outline_216423.png"></button>
  26. <ul>
  27. <li><a href="#">Portfolio</a></li>
  28. <li><a href="#">Services</a></li>
  29. <li><a href="#">Contacts</a></li>
  30. </ul>
  31. </div>
  32. </div>
  33. </div>
  34.  
  35. <script src="libs/jquery-3.3.1.min.js"></script>
  36. <script src="js/common.js"></script>
  37.  
  38. /*========== Desktop First Method ==========*/
  39.  
  40. /* Large Devices, Wide Screens */
  41. @media only screen and (max-width : 1200px) {
  42.  
  43. }
  44.  
  45. /* Medium Devices, Desktops */
  46. @media only screen and (max-width : 992px) {
  47.  
  48.  
  49. }
  50.  
  51. /* Small Devices, Tablets */
  52. @media only screen and (max-width : 768px) {
  53. .fuckmenue ul {
  54. position:absolute;
  55. display: none;
  56. width:100%
  57. }
  58. .fuckmenue ul li {
  59. display:block;
  60. }
  61. }
  62.  
  63. /* Extra Small Devices, Phones */
  64. @media only screen and (max-width : 480px) {
  65.  
  66. }
  67.  
  68. /* Custom, iPhone Retina */
  69. @media only screen and (max-width : 320px) {
  70.  
  71. }
  72.  
  73.  
  74. /*========== Mobile First Method ==========*/
  75.  
  76. /* Custom, iPhone Retina */
  77. @media only screen and (min-width : 320px) {
  78.  
  79. }
  80.  
  81. /* Extra Small Devices, Phones */
  82. @media only screen and (min-width : 480px) {
  83.  
  84. }
  85.  
  86. /* Small Devices, Tablets */
  87. @media only screen and (min-width : 768px) {
  88. .pirozhok {
  89. display: none;
  90.  
  91. }
  92. .fuckmenue ul {
  93. display: inline-block !important;
  94. }
  95. }
  96.  
  97. /* Medium Devices, Desktops */
  98. @media only screen and (min-width : 992px) {
  99. .pirozhok {
  100. display: none;
  101. }
  102. }
  103.  
  104. /* Large Devices, Wide Screens */
  105. @media only screen and (min-width : 1200px) {
  106. .pirozhok {
  107. display: none;
  108. }
  109. }
  110.  
  111. $(document).ready(function() {
  112.  
  113. $(".pirozhok").click(function() {
  114. $(this).next().slideToggle();
  115. });
Add Comment
Please, Sign In to add comment