Advertisement
Guest User

Untitled

a guest
Apr 12th, 2016
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>WorkPlace Главная страница*゚✧*゚✧*</title>  
  6.     <style type="text/css">
  7.  
  8.         .headerMiddle
  9.         {
  10.             width: 100%;
  11.             height: 100%;
  12.             position: absolute;
  13.             top: 25%;
  14.             left: 1%;
  15.             overflow: auto;
  16.             margin: 0;
  17.             text-decoration: none;
  18.             color: #fff;
  19.         }
  20.  
  21.         .frameUpDiv
  22.         {
  23.             position: absolute;
  24.             top: 0;
  25.             left: 0;
  26.             width: 100%;
  27.             height: 3%;
  28.            
  29.             background: #42a5f5;
  30.             /*box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 100);*/
  31.            
  32.             font-family: 'Roboto', Arial;
  33.             color: #fff;
  34.             font-size: 25px;
  35.             text-decoration: none;
  36.             padding: 18px;
  37.         }
  38.        
  39.         .frameUpLinks
  40.         {
  41.             align: left;
  42.             position: absolute;
  43.             top: 7%;
  44.             left: 0;
  45.  
  46.             width: 100%;
  47.             height: 30px;
  48.  
  49.             font-family: 'Roboto', Arial;
  50.             color: #fff;
  51.  
  52.             background-color: #000;
  53.         }
  54.        
  55.         .frameUpDivLinksText
  56.         {
  57.             align: left;
  58.             top: -25%;
  59.             position: absolute;
  60.            
  61.             font-size: 17px;
  62.             font-family: 'Roboto', Arial;
  63.             color: #fff;
  64.  
  65.             padding: 1%;
  66.             text-decoration: none;
  67.             text-align: justify;
  68.         }
  69.  
  70.         .frameUpDivLinks
  71.         {
  72.             top: -50%;
  73.             right: 20px;
  74.             float: right;
  75.             position: relative;
  76.  
  77.             font-family: 'Roboto', Arial;
  78.             color: #fff;
  79.             font-size: 25px;
  80.  
  81.             padding: 1%;
  82.             text-decoration: none;
  83.         }
  84.         .frameUpDivLinks:hover
  85.         {
  86.             transition-delay: 0.4s;
  87.             text-shadow: 1px 1px #000000;
  88.             text-shadow: 0px -11px 20px 10px;
  89.         }
  90.  
  91.         div.image:before
  92.         {
  93.             position: fixed;
  94.  
  95.             top: 50%;
  96.             bottom: 50%;
  97.             display: table;
  98.  
  99.             width: 70%;
  100.             height: 75%;
  101.  
  102.             font-family: 'Roboto', Arial;
  103.             color: #fff;
  104.             font-size: 38px;
  105.             text-decoration: none;
  106.             text-align: center;
  107.             padding: 15px;
  108.  
  109.             margin: 0 0 0 50%;
  110.  
  111.             /*border-color: #dd00fa;*/
  112.             /*border-style: solid;*/
  113.             /*background: #ddaafa;*/
  114.  
  115.             content: url("wp_logo_web3.png")
  116.         }
  117.  
  118.         body
  119.         {
  120.             background-color: #d8ecff;
  121.         }
  122.  
  123. </style>
  124. </head>
  125.  
  126. <body>
  127.     <div class="frameUpLinks">
  128.         <a class="frameUpDivLinksText" href="main.html">[Главная страница]</a>
  129.         <a class="frameUpDivLinksText" href="main.html">[О нас]</a>
  130.  
  131.     </div>
  132.     <div class="frameUpDiv">
  133.     WorkPlace
  134.     <a class="frameUpDivLinks" href="about_us.html">О нас</a>
  135.     <a class="frameUpDivLinks" href="registration.html">Регистрация</a>
  136.     </div>
  137.     <div class="image"></div>
  138. </body>
  139. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement