Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>MEANWHILE - POCETNA</title>
  6.  
  7. <!-- Kodirao : Pestlic -->
  8.  
  9. <!-- CSS -->
  10. <meta charset="utf-8">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
  13. <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
  14. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  15. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
  16. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
  17. <script src="https://kit.fontawesome.com/f0e7df3bff.js"></script>
  18. <link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
  19. <!-- CSS -->
  20.  
  21.  
  22. <!-- Pozadina -->
  23. <style>
  24. body {
  25. background-image: url("pozadina.png");
  26. color: #fff;
  27. font-family: monospace, serif;
  28. letter-spacing: 0.05em;
  29. }
  30. </style>
  31. <!-- Pozadina -->
  32.  
  33. <!-- Navigacija -->
  34. <style>
  35. * {
  36. padding: 0;
  37. margin: 0;
  38. }
  39. body {
  40. font-family: 'Lato', sans-serif;
  41. background: url('https://meanwhile-ogc.com/pozadina.png');
  42. }
  43. ul {
  44. list-style-type: none;
  45. margin: 0;
  46. padding: 0;
  47. overflow: hidden;
  48. background-color: #23212e;
  49. width: 100%;
  50. }
  51.  
  52. li {
  53. float: left;
  54. }
  55.  
  56. li a {
  57. display: block;
  58. color: white;
  59. text-align: center;
  60. padding: 14px 16px;
  61. text-decoration: none;
  62. font-size:12px;
  63. }
  64.  
  65. li a:hover:not(.active) {
  66. background-color: #171520;
  67. text-decoration: none;
  68. color:#f5f5f5;
  69. }
  70.  
  71. .active {
  72. background-color: #171520;
  73. }
  74. .right {
  75. float: right;
  76. }
  77. .logo {
  78. cursor:pointer;
  79. -webkit-transition: all 0.3s ease 0s;
  80. transition: all 0.3s ease 0s;
  81. -webkit-transform: scale(1);
  82. -moz-transform: scale(1);
  83. -ms-transform: scale(1);
  84. transform: scale(1);
  85. }
  86. .logo:hover {
  87. text-decoration: none;
  88. -webkit-transform: scale(1.05);
  89. -moz-transform: scale(1.05);
  90. -ms-transform: scale(1.05);
  91. transform: scale(1.05);
  92. }
  93. </style>
  94. </head>
  95. <body>
  96. <ul>
  97. <li><a href="index.html">POCETNA</a></li>
  98. <li><a href="https://forum.meanwhile-ogc.com">FORUM</a></li>
  99. <li><a href="statistika.html">STATISTIKA</a></li>
  100. <li class="right"><a class="active right disabled" href="login.html">LOGIN</a></li>
  101. </ul>
  102. <!-- Navigacija -->
  103.  
  104. <!-- Logo i Text -->
  105. <style type="text/css">
  106. .centerImage
  107. {
  108. text-align:center;
  109. display:block;
  110. height: 5em;
  111. position: relative
  112. margin: 0;
  113. position: absolute;
  114. top: 40%;
  115. left: 50%;
  116. margin-right: -50%;
  117. transform: translate(-50%, -50%)
  118. }
  119. </style>
  120.  
  121. <div class="centerImage">
  122. <img src="https://i.imgur.com/0hUawp0.png" class="logo" title="MW" alt="MW "height="230" width="230">
  123.  
  124. <p>
  125. <body class="d-flex flex-column">
  126. <div id="page-content">
  127. <div class="container text-center">
  128. <div class="row justify-content-center">
  129. <div class="col-md-7">
  130. <h1 class="font-weight-light mt-4 text-white">U IZRADI!</h1>
  131. <p class="lead text-white-50">trenutno je u izradi nas portal, uskoro ce biti online!</p>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. </p>
  137. </body>
  138. </html>
  139. <!-- Logo i Text -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement