Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.79 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="pl">
  3. <head>
  4.     <title>Zadanie 9</title>
  5.     <meta charset="UTF-8" />
  6.     <style>
  7.         a {
  8.             font-family: Arial, sans-serif;
  9.             font-size: 10pt;
  10.             font-weight: bold;
  11.             text-decoration:none;
  12.            
  13.             display: block;
  14.             color:#fff;
  15.             padding: 8px 40px;
  16.             height:20px;width:40px;
  17.             border-radius: 3px;
  18.             box-shadow: 3px 3px 8px #888888;
  19.             border: 1px solid #7a7a7a;
  20.             background: -webkit-linear-gradient(top, #a9a9a9 0%, #929292 16px, #818181 17px, #989898 100%);
  21.             transition: color 0.2s;
  22.         }
  23.  
  24.         a:hover
  25.         {
  26.             background: -webkit-linear-gradient(top, #555, rgb(143, 133, 133));
  27.         }
  28.  
  29.         a:active
  30.         {
  31.             color: black;
  32.             opacity: 0.5;
  33.             /* text-decoration: line-through;
  34.             text-decoration-color: red; */
  35.         }
  36.  
  37.         div {
  38.             width:100px;
  39.             height:50px;
  40.             background-color:#fff;
  41.             color:#000;
  42.             border: 3px solid #ccc;
  43.             transition:width 1s, background-color 2s, color 1s;
  44.         }
  45.         div:hover { width:200px;background-color:rgb(51, 44, 44);color:#fff; }
  46.  
  47.         input {
  48.             width:100px;
  49.             height:50px;
  50.             background-color:#fff;
  51.             color:#000;
  52.             border: 3px solid #ccc;
  53.             transition:width 1s, background-color 2s, color 1s;
  54.         }
  55.         input:hover { width:200px;background-color:rgb(51, 44, 44);color:#fff; }
  56.  
  57.  
  58.     </style>
  59. </head>
  60. <body>
  61.     <input type="text"> Imie
  62.     <div>Imie</div>
  63.     <div>Nazwisko</div>
  64.     <div>Adres</div>
  65.     <br>
  66.     <a href="#">Wyślij</a>
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement