Advertisement
zanvencelj

Tipke in linki v css

Feb 24th, 2020
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.29 KB | None | 0 0
  1. body{
  2.     background-color: aquamarine;
  3.     font-family: sans-serif;
  4. }
  5.  
  6. p{
  7.     font-size: 20px;
  8. }
  9.  
  10. .tipka{
  11.     text-decoration: none;
  12.     padding: 10px;
  13.     color: black;
  14.     border-style: inset;
  15.     border-radius: 5px;
  16. }
  17. .tipka:hover{
  18.     border-style: outset;
  19.     color: white;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement