Advertisement
ewa_tabor

1 css

Nov 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.23 KB | None | 0 0
  1.  
  2. p {
  3.     font-family: "Times New Roman", Times, serif;
  4.     text-indent: 1.5em;
  5.    
  6. }
  7.  
  8. p:first-letter{
  9.     color: Olive;
  10.     font-family: Georgia;
  11.     font-size: 35px;
  12.     line-height: 30px;
  13.  
  14. }
  15. h1 {
  16.     font-family: "URW Chancery L", cursive;
  17.     font-size: 30px;
  18.     color: #FFC925;
  19.     letter-spacing: 3px;
  20. }
  21. h2 {
  22.     color: blue;
  23. }
  24. th {
  25.     text-transform: uppercase;
  26.     background-color: #4CAF50;
  27.     color: white;
  28. }
  29. tr {
  30.     background-color:#C19106;
  31.     color:white;
  32. }
  33. tr td:nth-child(2) {
  34.     background-color: green;
  35.     color:yellow;
  36. }
  37. table{
  38.     border-width: 2px;
  39.     border-style: solid;
  40.     border-color: red;
  41. }
  42. ol li {
  43.     list-style-type:decimal;
  44. }
  45. ol li li {
  46.     list-style-type:upper-roman;
  47. }
  48. ol li li li {
  49.     list-style-type:lower-greek;
  50. }
  51. img.left {
  52.     width:25%;
  53.     height: auto;
  54.     float:left;
  55. }
  56. img.right {
  57.     width:50%;
  58.     height: auto;
  59.     float:right;
  60. }
  61. .titlec {
  62.     width:100%;
  63.     left:0;
  64.     background: orange;
  65.     color: white;
  66.     padding: 15px 0 15px 0;
  67.     text-align: center;
  68.     font-size: 30px;   
  69. }
  70.  
  71. #Zawartosc {
  72.     background: #E18F8F;
  73.     border: 3px solid black;
  74. }
  75. #menu li{
  76.     text-align:center;
  77.     list-style: none;
  78.     margin:0;
  79.     padding:0;
  80.     background-color:lightyellow;
  81.     border: 2px solid black;
  82. }
  83. li a:hover:not(.active) {
  84.     background-color: #555;
  85.     color: white;
  86. }
  87. a:hover {
  88.     cursor: default
  89. }
  90. @media (min-width: 801px){
  91. #Zawartosc {
  92.     position:absolute;
  93.     left:159px;
  94.     max-width: 960px;
  95. }
  96. .menutext {
  97.     display:none;
  98. }
  99.  
  100. #menu {
  101.     list-style-type: none;
  102.     left:0;
  103.     margin: 0;
  104.     padding: 0;
  105.     width: 160px;
  106.     background-color: yellow;
  107.     height: 100%;
  108.     position: fixed;
  109. }
  110. #menu2 {
  111.     display: none;
  112. }
  113.  
  114.  
  115. }
  116. @media (max-width: 800px) {
  117.  
  118. #menu {
  119.     position: fixed;
  120.     left: -15em;
  121.     top: 50%;
  122.     background: yellow;
  123.     padding: 0.5em 0.5em 0.5em 2.5em;
  124.     transition: 0.2s;
  125. }
  126.  
  127. #menu2{
  128.     position: fixed;
  129.     left:-0.2em;
  130.     top: 45%;
  131.     background: yellow;
  132.     color: black;
  133.     padding: 0.5em 0.5em 0.5em 0.5em;
  134.     transition: 0.2s;
  135. }
  136. #menu2 li{
  137.     list-style-type: none;
  138.     text-align:center;
  139.     margin:0;
  140.     padding:0;
  141.     background-color:lightyellow;
  142.     border: 2px solid black;
  143. }
  144. .SpisTresci:hover #menu{
  145.     left:-2em;
  146. }
  147. #Zawartosc {
  148.     margin-left:55px;
  149. }
  150.  
  151. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement