Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. height: 100%;
  5. }
  6.  
  7. body {
  8. background-color: lightblue;
  9. font-family: 'Lato', sans-serif;
  10. color: white;
  11. }
  12.  
  13. a {
  14. text-decoration: none;
  15. color: white;
  16. }
  17.  
  18. a:visited{
  19. color: white;
  20. }
  21.  
  22. #zbiorczy{
  23. width: 1000px;
  24. margin-left: auto;
  25. margin-right: auto;
  26. }
  27.  
  28. .logo{
  29. margin-top: 10px;
  30. float: center;
  31. font-size: 20px;
  32. font-weight: 700;
  33. }
  34.  
  35. #menu{
  36. margin-top: 20px;
  37. background-color: #007acc;
  38. font-size: 20px;
  39. }
  40.  
  41. .option{
  42. float: left;
  43. text-align: center;
  44. min-width: 50px;
  45. height: 25px;
  46. padding: 10px;
  47. border: 2px solid #003d66;
  48. }
  49.  
  50. .option:hover{
  51. background-color: #003d66;
  52. cursor: pointer;
  53. }
  54.  
  55. #info{
  56. padding-left: 5px;
  57. border: 3px solid;
  58. background-color: #66c2ff;
  59. border-color: #66c2ff;
  60. }
  61.  
  62. #artykuly{
  63. margin-top: 10px;
  64. margin-bottom: 10px;
  65. padding-left: 5px;
  66. }
  67.  
  68. .artykuly_kafelki{
  69. float: left;
  70. margin-left: 55px;
  71. width: 250px;
  72. border: 3px solid;
  73. background-color: #66c2ff;
  74. border-color: #66c2ff;
  75. }
  76. .wiecej{
  77. float: center;
  78. text-align: center;
  79. background-color: #007acc;
  80. min-width: 50px;
  81. height: 25px;
  82. padding: 10px;
  83. border: 2px solid #003d66;
  84. }
  85.  
  86. .wiecej:hover{
  87. background-color: #003d66;
  88. cursor: pointer;
  89. }
  90.  
  91. #stopka{
  92. background-color: #003d66;
  93. width:100%;
  94. bottom: 0;
  95. }
  96.  
  97. #stopka2{
  98. background-color: #003d66;
  99. width:100%;
  100. position: absolute;
  101. bottom: 0;
  102. }
  103.  
  104. #info_stopka{
  105. padding: 5px;
  106. margin-left: 50px;
  107. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement