Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. body
  2. {
  3. }
  4. h6 /*Pierwsza linijka nagłówka*/
  5. {
  6. /*Krój czcionki*/
  7.  
  8. /*styl, wielkość i kolor*/
  9. font-style:normal;
  10. font-size:20px;
  11. color:blue;
  12. text-align:center;
  13. line-height:20px;
  14. margin-bottom:1px;
  15. margin-top:1px;
  16. }
  17. h6.small /*pomniejszone kolejne trzy linijki nagłówka*/
  18. {
  19. font-size:16px;
  20.  
  21. }
  22. h6.aqua /*zmiana koloru w drugiej linijce nagłówka*/
  23. {
  24. /*kolor aqua*/
  25. font-size:16px;
  26. color:aqua;
  27. font-weight:100;
  28. font-style:italic;
  29. }
  30. h1 /*napis na dole nagłówka "OPTICAL COHERENCE TOMOGRAPHY"*/
  31. {
  32. font-size:15px;
  33. color:indianred;
  34. /*krój czcionki, wielkość, styl, pogrubienie,...*/
  35. text-transform:uppercase;
  36. /*WYRÓWNANIE DO LEWEJ*/
  37. }
  38. .center
  39. {
  40. text-align: center;
  41. }
  42.  
  43. h2 /*menu strony*/
  44. {
  45. font-family:Times New Roman;
  46. font-weight:bold;
  47. font-style:normal;
  48. color:blue;
  49. font-size:18px;
  50. text-transform:capitalize;
  51. text-align:center;
  52. clear:both;
  53. }
  54. h2.sekcja
  55. {
  56. color:Green;
  57. text-align:center;
  58. font-style:italic;
  59. text-decoration:underline;
  60. }
  61. h3 /*tytuły tekstu*/
  62. {
  63. font-family:Times New Roman;
  64. font-weight:bold;
  65. font-style:normal;
  66. color:blue;
  67. font-size:18px;
  68. text-transform:capitalize;
  69. text-align:left;
  70. }
  71.  
  72. p /*tekst w dokumencie*/
  73. {
  74. margin-left:20px;
  75. margin-right:20px;
  76. /*krój czcionki, kolor, wielkość, ...*/
  77. text-align:justify;
  78. }
  79.  
  80. #dokument /*opis struktury dokumentu - wielkość, marginesy, obramowanie*/
  81. {
  82. width: 960px;
  83. height:850px;
  84. margin:10px auto;
  85. border: 1px solid black;
  86. }
  87.  
  88. /*Opisy elementów dokumentu tj. nagłówek, kolumna lewa(menu z odsyłaczami), kolumna prawa ( treść dokumentu)*/
  89. #naglowek
  90. {
  91. width:960px;
  92. height:150px;
  93. border-bottom:1px solid black;
  94. position:relative;
  95.  
  96.  
  97. }
  98. img.Logo_PG
  99. {n
  100. width:200px;
  101. height:150px;
  102. float:left;
  103.  
  104. }
  105. img.Logo_WETI
  106. {
  107. width:150;
  108. height:150px;
  109. float:right;
  110.  
  111. }
  112. img.OCT
  113. {
  114. width:300;
  115. height:300px;
  116. margin-left:200px;
  117.  
  118. }
  119. img.Fig_2
  120. {
  121. height:40%;
  122. width:40%;
  123. float:right;
  124. margin:10px;
  125. clear:both;
  126. }
  127.  
  128. img.Fig_3
  129. {
  130. height:40%;
  131. width:40%;
  132. float:left;
  133. margin-top: 10px;
  134. margin-bottom:20px;
  135. clear:both;
  136.  
  137. }
  138. img.Fig_4 {
  139. height: 48%;
  140. width: 48%;
  141. float: left;
  142. margin-top: 10px;
  143. margin-bottom: 20px;
  144. clear:both;
  145. }
  146. img.Fig_5 {
  147. height: 48%;
  148. width: 48%;
  149. float: right;
  150. margin: 10px;
  151. margin-bottom: 20px;
  152. }
  153. #kol_lewa
  154. {
  155.  
  156. position:relative;
  157. /*top: 150px;*/
  158. float:left;
  159. width:200px;
  160. height:699px;
  161. background-color:white;
  162. border-right:1px solid black;
  163. border-bottom:1px solid black;
  164. }
  165.  
  166. #kol_prawa
  167. {
  168. position: relative;
  169. /*top: 150px;*/
  170. float:right;
  171. width:750px;
  172. height:auto;
  173. overflow:auto;
  174.  
  175. }
  176. /*****************************************************************************************************/
  177. .podpis /*firmatowanie klasy podpis lub stylu do podpisów pod rysunkami*/
  178. {
  179. font-family:Times New Roman;
  180. color:red;
  181. font-size:12px;
  182. }
  183.  
  184. table /* formatowanie tabeli*/
  185. {
  186. /*obramowanie tabeli: linia ciągła, kolor czarny, grubość 1px */
  187. border-collapse:collapse;
  188. text-align:center;
  189. margin:10px;
  190. }
  191.  
  192. td
  193. {
  194. border: 1px solid black;
  195. }
  196. td.row
  197. {
  198. background-color:yellowgreen;
  199. }
  200. td.col
  201. {
  202. background-color:gold;
  203. /* formatowane formularza */
  204. {
  205. font-family:Times New Roman;
  206. font-size:16px;
  207. color:maroon;
  208. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement