ewa_tabor

2 css

Nov 20th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.56 KB | None | 0 0
  1.  
  2. p {
  3.     font-family: "Times New Roman", Times, serif;
  4.     text-indent: 1.5em;
  5.    
  6. }
  7. p:first-letter{
  8.     color: Olive;
  9.     font-family: Georgia;
  10.   font-size: 35px;
  11.   line-height: 30px;
  12.  
  13. }
  14. h1 {
  15.     font-family: "URW Chancery L", cursive;
  16.     color: #FFC925;
  17.     letter-spacing: 3px;
  18. }
  19. h2 {
  20.     color: blue;
  21. }
  22. th {
  23.     text-transform: uppercase;
  24.     background-color: #4CAF50;
  25.     color: white;
  26. }
  27. tr {
  28.     background-color:#C19106;
  29.     color:white;
  30. }
  31. tr td:nth-child(2) {
  32.     background-color: green;
  33.     color:yellow;
  34. }
  35. table{
  36.     border-width: 2px;
  37.     border-style: solid;
  38.     border-color: red;
  39. }
  40. ol li {
  41.     list-style-type:decimal;
  42. }
  43. ol li li {
  44.     list-style-type:upper-roman;
  45. }
  46. ol li li li {
  47.     list-style-type:lower-greek;
  48. }
  49. img.left {
  50.     width:25%;
  51.     height: auto;
  52.     float:left;
  53. }
  54. img.right {
  55.     width:50%;
  56.     height: auto;
  57.     float:right;
  58. }
  59. .titlec {
  60.     width:100%;
  61.     background: orange;
  62.     color: olive;
  63.     font-family: Georgia;
  64.     font-size: 35px;
  65.     padding: 5px 5px 5px 5px;
  66.     text-align: center;
  67. }
  68.  
  69. #menu {
  70.   clear:both;
  71.   width: 100%;
  72.   margin: -3em 0 0 0;
  73.  
  74.   transition: 0.2s;
  75. }
  76. #menu li{
  77.     float:left;
  78.     list-style-type: none;
  79.     text-align:center;
  80.     margin: 60px 10px 5px 0px;
  81.     padding:0;
  82.     background-color:lightyellow;
  83.     border: 2px solid black;
  84. }
  85. li a:hover:not(.active) {
  86.     background-color: #555;
  87.     color: white;
  88. }
  89.  
  90. a:hover {cursor: default
  91. }
  92.  
  93.  
  94. #Zawartosc {
  95.     clear:both;
  96.     margin-left:0;
  97.     margin-top:28px;
  98.     background: #E18F8F;
  99.     border: 3px solid black;
  100. }
  101. #menu2 {
  102.     display:none;
  103. }
Add Comment
Please, Sign In to add comment