Guest User

Untitled

a guest
Mar 27th, 2020
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. body
  2. {
  3. background-color: #303030;
  4. color:#ffffff;
  5. font-family: 'Gotu', sans-serif;
  6.  
  7. }
  8.  
  9. #container
  10. {
  11. width: 1000px; /*sprawdzić jak by to wyglądało gdyby tu było auto zamiast 1000px*/
  12. margin-left: auto;
  13. margin-right: auto;
  14.  
  15. }
  16.  
  17. .rectangle
  18. {
  19. width: 960px; /* było 1000px ale zmieniliśmy na 960 przez to, że margin wynosi 20px a wymiary musza się zgadzać */
  20. margin: 20px; /* dzięki temu rectangle nie będzie dotykał container tylko będzie 20px przerwy z każdej strony*/
  21. text-align: center;
  22.  
  23.  
  24. }
  25.  
  26. .square
  27. {
  28. width: 50%;
  29. float:left;
  30.  
  31. }
  32.  
  33. #logo
  34. {
  35. float:left;
  36. font-family: 'Gotu', sans-serif;
  37. font-size:70px;
  38. width: 600px;
  39. text-align: left;
  40. }
  41.  
  42. #zegar
  43. {
  44. float:left;
  45. font-family: 'Gotu', sans-serif;
  46. font-size:70px;
  47. text-align: left;
  48.  
  49. }
  50. .tile1
  51. {
  52. margin:10px;
  53. width:230px;
  54. height: 142px;
  55. background-color: #3095d3;
  56. float:left;
  57. text-align: center;
  58.  
  59. }
  60.  
  61. .tile1:hover
  62. {
  63. background-color: #2084c2;
  64. }
  65.  
  66. .tile2
  67. {
  68. margin:10px;
  69. width:230px;
  70. height: 142px;
  71. background-color: #666666;
  72. float:left;
  73. text-align: center;
  74. }
  75.  
  76. .tile2:hover
  77. {
  78. background-color: #555555;
  79. }
  80.  
  81. .tile3
  82. {
  83. margin:10px;
  84. width:230px;
  85. height: 142px;
  86. background-color: #93c748;
  87. float:left;
  88. text-align: center;
  89. }
  90.  
  91. .tile3:hover
  92. {
  93. background-color: #82b637;
  94. }
  95.  
  96. .tile4
  97. {
  98. margin:10px;
  99. width:420px;/* było 480 ale dałam padding. 480-2*30=420. Jak się tego nie zorbi to kafelki się rozlatują */
  100. height: 82px; /* 142-2*30=82 */
  101. background-color: #ee5342;
  102. text-align: center;
  103. font-size: 26px;
  104. padding: 30px;
  105. line-height: 150%; /* to sprawia że odstęp pionowy pomiędzy następnymi liniami tekstu będzie większy. Działa to jak interlinia w edytorze tekstu */
  106. }
  107.  
  108. .tile5
  109. {
  110. margin:10px;
  111. width:420px;
  112. height: 244px;
  113. background-color: #666666;
  114. text-align: justify;
  115. padding: 30px;
  116. }
  117.  
  118. .yt
  119. {
  120. margin:10px;
  121. width:105px;
  122. height: 142px;
  123. background-color: #b94348;
  124. float:left;
  125. }
  126.  
  127. .yt:hover
  128. {
  129. background-color: #c83237;
  130. }
  131.  
  132. .fb
  133. {
  134. margin:10px;
  135. width:105px;
  136. height: 142px;
  137. background-color: #4668b3;
  138. float:left;
  139. }
  140.  
  141. .fb:hover
  142. {
  143. background-color: #3557a2;
  144. }
  145.  
  146. .gplus
  147. {
  148. margin:10px;
  149. width:105px;
  150. height: 142px;
  151. background-color: #d95333;
  152. float:left;
  153. }
  154.  
  155. .gplus:hover
  156. {
  157. background-color: #c84222;
  158. }
  159.  
  160. .tt
  161. {
  162. margin:10px;
  163. width:105px;
  164. height: 142px;
  165. background-color: #3095d3;
  166. float:left;
  167. }
  168.  
  169. .tt:hover
  170. {
  171. background-color: #2084c2;
  172. }
  173.  
  174. a.tilelink
  175. {
  176. color: white; /* zmienienie koloru niebieskiego na biały */
  177. text-decoration: none; /*usuniecie podkreślenia */
  178. display:block; /* żeby klasa mogła się zachowywać jak blok. Dzięki temu możemy przejśc do następnej strony używając całego kafelka nie tylko ikonki */
  179. width:230px;
  180. height: 142px;
  181. }
  182.  
  183. a.tilelinkhtml5
  184. {
  185. color: white; /* zmienienie koloru niebieskiego na biały */
  186. text-decoration: none; /*usuniecie podkreślenia */
  187. }
  188.  
  189. a.tilelink2
  190. {
  191.  
  192. color: white;
  193. text-decoration: none;
  194. }
  195.  
  196. a.tilelink3
  197. {
  198. color: white;
  199. text-decoration: none;
  200. }
  201.  
  202.  
  203. a.ytlink
  204. {
  205. color: white;
  206. text-decoration: none;
  207. }
  208.  
  209. a.fblink
  210. {
  211. color: white;
  212. text-decoration: none;
  213. }
  214.  
  215. a.googlelink
  216. {
  217. color: white;
  218. text-decoration: none;
  219. }
  220.  
  221. a.ttlink
  222. {
  223. color: white;
  224. text-decoration: none;
  225. }
  226.  
  227.  
  228. a.main
  229. {
  230. color: white;
  231. text-decoration: none;
  232. }
Advertisement
Add Comment
Please, Sign In to add comment