style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. img {
  2. display: block;
  3. padding: 8px;
  4. margin: 8px;
  5. border-color: black;
  6. border-style: solid;
  7. border-width: 1px;
  8. float: left;
  9. }
  10. img:hover {
  11. border-color: #88f;
  12. background-color: #ddf;
  13. }
  14. img.pelny {
  15. border-color: red;
  16. max-width: 95vw;
  17. max-height: 85vh;
  18. cursor: zoom-in;
  19. scroll-margin: 12px;
  20. }
  21. img.pelny.expanded {
  22. max-width: none;
  23. max-height: none;
  24. cursor: grab;
  25. }
  26. img.pelny.expanded.dragging {
  27. cursor: grabbing;
  28. }
  29. #poprz,#nast,.k4,.gora {
  30. width : 160px;
  31. height : 100px;
  32. display: block;
  33. margin: 3em;
  34. background-repeat: no-repeat;
  35. }
  36. #poprz {
  37. float:left;
  38. clear: both;
  39. background-image : url(poprz.png);
  40. }
  41. #poprz:hover {
  42. background-image : url(poprzh.png);
  43. }
  44. #nast {
  45. margin-top: 17em;
  46. float:right;
  47. margin-right: 0;
  48. background-image : url(nast.png);
  49. }
  50. #nast:hover {
  51. background-image : url(nasth.png);
  52. }
  53. .k4 {
  54. width: 210px;
  55. height : 130px;
  56. clear: both;
  57. background-image : url(k4.png);
  58. }
  59. .k4:hover {
  60. background-image : url(k4h.png);
  61. }
  62. .gora {
  63. float: left;
  64. background-image : url(gora.png);
  65. }
  66. .gora:hover {
  67. background-image : url(gorah.png);
  68. }
  69. #full-image-div {
  70. float: left;
  71. width: 200px;
  72. }
  73. #dirlist td,th {
  74. border-color: black;
  75. border-style: solid;
  76. border-width: 3px;
  77. text-align: center;
  78. }
  79. #dirlist th {
  80. border-width: 1px;
  81. padding: 3px;
  82. }
  83. #dirlist td a {
  84. display: block;
  85. padding: 5px;
  86. font-weight: bolder;
  87. }
  88. .dirlist td a:hover {
  89. background-color: #ddf;
  90. }
  91. #comments {
  92. clear: both;
  93. }
  94. #comment-form-table tr td.form-caption {
  95. text-align: right;
  96. }
  97. #comment-form-table textarea {
  98. width: 98%;
  99. height: 5em;
  100. }
  101. .comment-block {
  102. border: 1px solid gray;
  103. margin-bottom: .8em;
  104. }
  105. .comment-author {
  106. font-weight: bold;
  107. }
  108. .comment-date {
  109. font-weight: bold;
  110. }
  111. .comment-header {
  112. margin-bottom: .3em;
  113. }