Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <style>
  5.   @import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
  6. body, html {
  7.     height: 100%;
  8.     margin: 0;
  9.     font-family: 'Roboto', sans-serif;
  10.     font: 400 15px/1.8 'Roboto', sans-serif;
  11.     color: #777;
  12.   }
  13.     /* Boja pozadine u topnav */
  14.   .topnav {
  15.     background-color: #333;
  16.     overflow: hidden;
  17.     justify-content: space-between;
  18.     align-items: center;
  19.     display: flex;
  20.     opacity: 0.7;
  21.     text-transform: uppercase;
  22.   }
  23.   .topnav:hover{
  24.     opacity: 1;
  25.     transition: 0.6s;
  26.   }
  27.   /* Linkovi u navbar-u*/
  28.   .topnav a {
  29.     float: left;
  30.     color: #f2f2f2;
  31.     text-align: center;
  32.     padding: 14px 40px;
  33.     text-decoration: none;
  34.     font-size: 17px;
  35.   }
  36.   /* hover navbar */
  37.   .topnav a:hover {
  38.     background-color: #ddd;
  39.     color: black;
  40.     transition: 0.6s;
  41.   }
  42.   .topnav a.active {
  43.     background-color: #cc4e00;
  44.   }
  45.  
  46.  
  47.   /* ----NASLOV----*/
  48.     .caption span.border {
  49.       background-color: #111;
  50.       color: #cc4e00;
  51.       padding: 18px;
  52.       font-size: 25px;
  53.       letter-spacing: 10px;
  54.     }
  55.   /* ----POZADINE NA POČETNOJ----*/
  56.   .bgimg-1, .bgimg-2, .bgimg-3 {
  57.     position: relative;
  58.     opacity: 0.65;
  59.     background-position: center;
  60.     background-repeat: no-repeat;
  61.     background-size: cover;
  62.   }
  63.   .bgimg-1 {
  64.     background-image: url("carpenter.jpg");
  65.     height: 100%;
  66.   }
  67.   .bgimg-2 {
  68.     background-image: url("cover2.jpg");
  69.     height: 100%;
  70.  
  71.   }
  72.  
  73.   .caption {
  74.     position: absolute;
  75.     left: 0;
  76.     top: 55%;
  77.     width: 100%;
  78.     text-align: center;
  79.     color: #000;
  80.     opacity: 0.9;
  81.     text-transform: uppercase;
  82.     -webkit-animation-name: naslov;  /* Safari 4.0 - 8.0 */
  83.     -webkit-animation-duration: 3s;  /* Safari 4.0 - 8.0 */  
  84.     -webkit-animation-delay: 2s; /* Safari 4.0 - 8.0 */
  85.     -webkit-animation-fill-mode: both; /* Safari 4.0 - 8.0 */
  86.     animation-name: naslov;
  87.     animation-duration: 2s;  
  88.     animation-delay: 0.3s;
  89.     animation-fill-mode: both;
  90.   }
  91.   @-webkit-keyframes naslov{
  92.     from {top:15%;}
  93.     to {top:55%;}
  94.   }
  95.   @keyframes naslov{
  96.     from {top:15%;}
  97.     to {top:55%;}
  98. }
  99.  
  100.  .poslovi{
  101.    position: relative;
  102.    opacity: 0.75;
  103.  }
  104.  .ponuda{
  105.    position: absolute;
  106.    top: 20px;
  107.    left: 20px;
  108.    background-color: chocolate;
  109.    color: rgb(255, 246, 246);
  110.    padding-left: 5px;
  111.    padding-right: 5px;
  112.    font-size: 20px;
  113.    text-align: match-parent;
  114.  }
  115. ul li{
  116.   list-style-type: none;
  117. }
  118.  
  119.   </style>
  120.     <meta charset="UTF-8">
  121.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  122.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  123.     <title>Stolarija Mašić</title>
  124.     <link rel="stylesheet" href="style.css">
  125.     <link rel="icon" href="https://image.flaticon.com/icons/png/512/123/123586.png">
  126. </head>
  127. <body>
  128.         <div class="bgimg-1">
  129.                 <div class="caption">
  130.                   <span class="border"><strong>Stolarija Mašić</strong></span><br>
  131.                   <span class="border"><b>061 - 696 - 730</b></span>
  132.                 </div>
  133.                 <div class="topnav">
  134.                   <a class="active" href="#">Početna</a>
  135.                   <a href="#">Poslovi</a>
  136.                   <a href="#">Kontakt</a>
  137.                   <a href="#">Galerija završenih radova</a>
  138.                 </div>
  139.               </div>
  140.              
  141. </body>
  142. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement