Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2017
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1. Alles wo nach dem // steht ist eine Notiz!
  2.  
  3.  
  4. Buttons:
  5. .btn-at         // Produktfilter Button
  6. .btn-detail     // Details Button
  7. .btn-buy        // Kauf Button
  8. .btn-amazon-cart { background-color:#000000; color: #FFFFFF; } // Warenkorb Button | Farbe des Warenkorb Buttons ändern
  9.  
  10. :hover              // Wenn du mit der Maus über einen Button fährst
  11.  
  12. { border-radius: 10px 0px 0px 0px; }        // Abrundung (Eckig oder Rund)
  13.  
  14. { border: 3px solid #FFFFFF; }          // Rahmen | 3px: Breite | solid: TYP | FARBE #FFFFFF Farbe | Link zu den Rahmen: http://www.w3schools.com/cssref/playit.asp?filename=playcss_border-style&preval=none
  15.  
  16.  
  17.  
  18. animation-name: blinkbutton;
  19. animation-duration: 3s;                 // Hier gibst du die Dauer der Animation an! Möchtest du z.B. 0,5 sek, schreibe 0.5
  20. animation-iteration-count: infinite;    // infinite bedeutet, dass es nie aufhört wenn du es z.B. 10 mal wiederholen möchtest schreibst du         animation-iteration-count: 10;
  21.  
  22. @keyframes blinkbutton {
  23.     0%   {background-color:#ffffff; }
  24.     50%  {background-color:#000000; }
  25.     100%   {background-color:#ffffff; }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement