Advertisement
Guest User

CSS

a guest
Sep 27th, 2015
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.18 KB | None | 0 0
  1. #title a{text-decoration:none;
  2. font-size:72px;display:block;
  3. color:black;
  4. width:100%;
  5. animation-name:anim-title;
  6. animation-duration:5s}
  7.  
  8. ol{margin:0px;}
  9.  
  10. ol li {list-style:none;
  11. float:left;
  12. width:24%;
  13. height:4%;
  14. transition-duration: 1s;
  15. padding-top:0.3%;
  16. padding-bottom:0.3%;
  17. margin:2px;
  18. background-color:#BBBBBB;
  19. border-radius:5px;}
  20.  
  21. @keyframes anim-artykuł {
  22.  
  23.     from {margin-left:-60%;}
  24.     to {margin-left:40px}
  25. }
  26.  
  27. @keyframes anim-title {
  28.     from {margin-top:-100%;}
  29.     to {margin-top:0px}
  30. }
  31.  
  32.  
  33. ol li:hover{background-color:#5D0102;
  34. width:26%;}
  35.  
  36. li a{text-decoration:none;
  37. color:black;
  38. display:block;
  39. text-align:center;
  40. padding:1%;
  41. font-size:20px}
  42.  
  43. #obraz>img{height:66%;
  44. width:40%;
  45. margin-left:40px;
  46. float:left;
  47. margin-top:16px;
  48. border:2px solid #5D0102;
  49. box-shadow:0 0 10px black;
  50. }
  51.  
  52. #artykuł{float:left;
  53. width:50%;height:67.5%;
  54. margin-left:40px;
  55. background-color:white;
  56. border:2px solid #5D0102;
  57. box-shadow:0px 0px 10px black;
  58. margin-top:16px;
  59. background-image: url();
  60. animation-name:anim-artykuł;
  61. animation-duration:5s}
  62.  
  63. body{background-size:1366px 768px}
  64.  
  65. hr{background-color:#5D0102;
  66. color:#5D0102;
  67. height:2px;
  68. width:94%;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement