Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. /* Takhle to máš ty */
  2. body{
  3. padding:0;
  4. margin:0;
  5. background-color:#afeeee;
  6. font-family:Verdana, Arial, Helvetica, sans-serif;
  7. font-size:12px;
  8. line-height:18px;
  9. color:#aaa;
  10. }
  11.  
  12. a{
  13. text-decoration:none;
  14. color: #97C4FF;
  15. }
  16.  
  17. a:hover{                                    
  18. text-decoration:underline;
  19. color:#aaa;
  20. }
  21.  
  22. img{
  23. border: 3px solid #008080;
  24. margin:5px;
  25. }
  26.  
  27. /* A takle by to mělo vypadat - oba způsoby jsou správně */
  28. body
  29. {
  30.     padding:0;
  31.     margin:0;
  32.     background-color:#afeeee;
  33.     font-family:Verdana, Arial, Helvetica, sans-serif;
  34.     font-size:12px;
  35.     line-height:18px;
  36.     color:#aaa;
  37. }
  38.  
  39. a {
  40.     text-decoration:none;
  41.     color: #97C4FF;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement