Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.35 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>login fenster</title>
  4.         <style>
  5.             @font-face {
  6.                 font-family:"Vegur-Light";
  7.                 src:url("Vegur-L_0600.eot?") format("eot"),url("Vegur-L_0600.woff") format("woff"),url("Vegur-L_0600.ttf") format("truetype"),url("Vegur-L_0600.svg#Vegur-Light") format("svg");
  8.                 font-weight:normal;font-style:normal;
  9.             }
  10.            
  11.             body {
  12.                 background-color: #373737;
  13.                 background-image: url("bg.jpg");
  14.                 font-family: Myriad Pro;
  15.                 font-size: 12px;
  16.                 -webkit-transition: all 0.3s linear;
  17.                 -moz-transition: all 0.3s linear;
  18.                 -o-transition: all 0.3s linear;
  19.                 -ms-transition: all 0.3s linear;
  20.                 transition: all 0.3s linear;
  21.             }
  22.            
  23.             a:link {
  24.                 text-decoration:none;  
  25.                 -webkit-transition: all 0.3s linear;
  26.                 -moz-transition: all 0.3s linear;
  27.                 -o-transition: all 0.3s linear;
  28.                 -ms-transition: all 0.3s linear;
  29.                 transition: all 0.3s linear;
  30.             }
  31.            
  32.             article .meta-info {
  33.                 filter: alpha(opacity=0);
  34.                 opacity: 0;
  35.  
  36.                 -webkit-transition: all 0.3s linear;
  37.                 -moz-transition: all 0.3s linear;
  38.                 -o-transition: all 0.3s linear;
  39.                 -ms-transition: all 0.3s linear;
  40.                 transition: all 0.3s linear;
  41.             }
  42.              
  43.             article:hover .meta-info {
  44.                 filter: alpha(opacity=1);
  45.                 opacity: 1;
  46.             }          
  47.            
  48.             .label_user {  
  49.                 position: absolute;
  50.                 font-family: Vegur-Light;
  51.                 font-size: 16px;
  52.                 color: #b5b5b5;
  53.                 text-shadow: 1px 1px 1px rgba(0,0,0,.7);
  54.                 margin-left: 350px;
  55.                 margin-top: 335px;
  56.             }
  57.            
  58.             .label_pass {  
  59.                 position: absolute;
  60.                 font-family: Vegur-Light;
  61.                 font-size: 16px;
  62.                 color: #b5b5b5;
  63.                 text-shadow: 1px 1px 1px rgba(0,0,0,.7);
  64.                 margin-left: 350px;
  65.                 margin-top: 375px;
  66.             }
  67.            
  68.             input[type=text] {
  69.                 position: absolute;
  70.                 font-family: "Myriad Pro";
  71.                 font-size: 12px;
  72.                 color: #9e9e9e;
  73.                 height: 40px;
  74.                 width: 308px;
  75.                 padding-left: 10px;
  76.                 text-decoration: none;
  77.                 background-color: transparent;
  78.                 border: 0px;
  79.                 background-image: url('input_user.png');
  80.                 background-repeat: repeat-x;
  81.                 margin-left: 420px;
  82.                 margin-top: 320px;
  83.                 outline: 0 none;
  84.             }
  85.  
  86.             input[type=password] {
  87.                 position: absolute;
  88.                 font-family: "Myriad Pro";
  89.                 font-size: 12px;
  90.                 color: #9e9e9e;
  91.                 height: 40px;
  92.                 width: 308px;
  93.                 padding-left: 10px;
  94.                 text-decoration: none;
  95.                 background-color: transparent;
  96.                 border: 0px;
  97.                 background-image: url('input_pass.png');
  98.                 background-repeat: repeat-x;
  99.                 margin-left: 420px;
  100.                 margin-top: 365px;
  101.                 outline: 0 none;
  102.             }
  103.            
  104.             .position {
  105.                 position: absolute;
  106.                 margin-left: -580px;
  107.                 margin-top: -450px;
  108.                 top: 50%;
  109.                 left: 50%;
  110.             }
  111.            
  112.             input[type=submit] {
  113.                 position: absolute;
  114.                 background-color: transparent;
  115.                 background-image: url('loginbutton.png');
  116.                 background-repeat: no-repeat;
  117.                 background-position: center;
  118.                 text-transform: uppercase;
  119.                 border:0 none;
  120.                 text-shadow: 1px 1px 3px rgba(0,0,0,.2);       
  121.                 height: 50px;
  122.                 width: 50px;
  123.                 margin-left: 705px;
  124.                 margin-top: 331px;
  125.                 outline: 0 none;
  126.                 -webkit-transition: all 0.3s linear;
  127.                 -moz-transition: all 0.3s linear;
  128.                 -o-transition: all 0.3s linear;
  129.                 -ms-transition: all 0.3s linear;
  130.                 transition: all 0.3s linear;
  131.             }
  132.            
  133.             input[type=submit]:hover {
  134.                 position: absolute;
  135.                 background-color: transparent;
  136.                 background-image: url('loginbutton_hover.png');
  137.                 background-repeat: no-repeat;
  138.                 background-position: center;
  139.                 -webkit-transition: all 0.3s linear;
  140.                 -moz-transition: all 0.3s linear;
  141.                 -o-transition: all 0.3s linear;
  142.                 -ms-transition: all 0.3s linear;
  143.                 transition: all 0.3s linear;
  144.             }
  145.        
  146.  
  147.            
  148.         </style>
  149.     </head>
  150.    
  151.     <body>
  152.         <form action="#" method="POST">
  153.             <div id="logo">
  154.                 <center><img src="http://forum.sacounty.de/wcf/images/simcity2012/logo_gruen.png" /></center>
  155.             </div>
  156.             <table class="position">
  157.                 <tbody>
  158.                     <tr>
  159.                         <td><font class="label_user">Benutzer:</font></td>
  160.                         <td><input type="text" maxlength="40" placeholder="Benutzername"></td>
  161.                     </tr>
  162.                     <tr>
  163.                         <td><font class="label_pass">Passwort:</font></td>
  164.                         <td><input type="password" maxlength="40" placeholder="Passwort"></td>
  165.                     </tr>
  166.                     <tr>
  167.                         <td><input type="submit" value=""></td>
  168.                     </tr>
  169.                 </tbody>
  170.         </form>
  171.     </body>
  172. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement