galeria.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. div#gallery_entry_contribute{
  2. text-align: left;
  3. margin: 3em 1em 1em 1em;
  4. }
  5. div#album_list{
  6. text-align: center;
  7. }
  8. div#album_list p{
  9. text-align: left;
  10. }
  11. div.album_list{
  12. max-width: 16.8em;
  13. display: inline-block;
  14. vertical-align: top;
  15. }
  16. table.album_thumbnails td{
  17. background-color: #000000;
  18. /* display: inline-block; */
  19. width: 8em;
  20. height: 8em;
  21. text-align: center;
  22. vertical-align: center;
  23. }
  24. table.album_thumbnails p{
  25. text-align: left;
  26. }
  27. table.album_thumbnails img{
  28. max-width: 7.8em;
  29. max-height: 7.8em;
  30. vertical-align: center;
  31. }
  32. /* /galeria/album.php */
  33. div#album{
  34. text-align: center;
  35. }
  36. div#album h3#album_title{
  37. text-align: left;
  38. }
  39. div#album div#album_header{
  40. margin: 2em;
  41. padding: 2em;
  42. text-align: left;
  43. }
  44. div.photo{
  45. display: inline-block;
  46. vertical-align: top;
  47. width: 10.7em;
  48. padding-left: auto;
  49. padding-right: auto;
  50. text-align: left;
  51. }
  52. div.photo hr{
  53. margin-bottom: 0.1;
  54. }
  55. div.photo h4{
  56. text-align: center;
  57. margin-top: 0;
  58. margin-bottom: 0.2em;
  59. }
  60. div.photo span.photo_description{
  61. font-style: italic;
  62. font-size: 90%;
  63. }
  64. div.photo span.comment_counter{
  65. display: block;
  66. margin: 0.3em 0.5em 0.2em 0.2em;
  67. font-size: 80%;
  68. text-align: right;
  69. }
  70. div.photo span.comment_counter img{
  71. margin-left: 0.4em;
  72. max-height: 0.75em;
  73. max-height: 0.75em;
  74. vertical-align: middle;
  75. }
  76. div.photo div.photo_container{
  77. background-color: #000000;
  78. border-radius: 0.2em;
  79. width: 10.5em;
  80. height: 10.5em;
  81. display: table-cell;
  82. text-align: center;
  83. vertical-align: middle;
  84. }
  85. div.photo img{
  86. max-width: 10em;
  87. max-height: 10em;
  88. }
  89. div#screen_cover{
  90. position: fixed;
  91. top: 0;
  92. left: 0;
  93. background-color: black;
  94. display: none;
  95. width: 100%;
  96. height: 100%;
  97. opacity: 0;
  98. transition: all .9s ease-in-out;
  99. z-index: 1000;
  100. }
  101. div#photo_viewer{
  102. position: fixed;
  103. display: none;
  104. top: 10%;
  105. left: 10%;
  106. right: 10%;
  107. bottom: 10%;
  108. opacity: 0;
  109. transition: all .6s ease-in-out;
  110. z-index: 1001;
  111. min-height: 10em;
  112. }
  113. /* /galeria/load_photo.php */
  114. div#photo_viewer div#viewer_container{
  115. height: 100%;
  116. margin: -2em 0 0 0;
  117. padding: 2em 0 0 0;
  118. }
  119. div#photo_viewer h3.section_title div#viewer_close_container{
  120. height: 1.5em;
  121. float: right;
  122. margin-top: -0.3em;
  123. margin-right: -0.4em;
  124. }
  125. div#photo_viewer h3.section_title div#viewer_close_container img#viewer_close{
  126. height: 100%;
  127. }
  128. div#photo_viewer div#viewer_table{
  129. display: table;
  130. /*height: 100%;*/
  131. width: 100%;
  132. }
  133. div#photo_viewer div#viewer_table div.viewer_row{
  134. display: table-row;
  135. /*height: 100%;*/
  136. width: 100%;
  137. }
  138. div#photo_viewer div#viewer_table div.viewer_row div.viewer_cell{
  139. display: table-cell;
  140. /*max-height: 100%;*/
  141. vertical-align: top;
  142. }
  143. div#photo_viewer div#viewer_table div.viewer_row div#cell_image{
  144. text-align: center;
  145. /*position: fixed;
  146. bottom: 10%;
  147. top: 11%;
  148. left: 11%;
  149. right: 40%;*/
  150. padding: 0.5em 1em 0.5em 1em;
  151. }
  152. div#photo_viewer div#viewer_table div.viewer_row div#cell_image td.arrow{
  153. width: 10%;
  154. }
  155. div#photo_viewer div#viewer_table div.viewer_row div#cell_image td#image{
  156. width: 80%;
  157. }
  158. div#photo_viewer div#viewer_table div.viewer_row div#cell_comments{
  159. width: 40%;
  160. }
  161. div#photo_viewer_image_container{
  162. /*height: 85%;*/
  163. width: 100%;
  164. position: relative;
  165. display: inline-block;
  166. max-width: 100%;
  167. overflow: hidden;
  168. background-color: #000000;
  169. text-align: center;
  170. vertical-align: center;
  171. }
  172. img#photo_viewer_image{
  173. border: 0.3em solid #112244;
  174. box-shadow: 0 0 0.5em #112244;
  175. max-width: 90%;
  176. bottom: 10%;
  177. max-height: 80%; /*The viewer is 85%*/
  178. }
  179. div#photo_viewer div#viewer_controls{
  180. /*height: 10%;*/
  181. width: 100%;
  182. text-align: center;
  183. bottom: 10%;
  184. /*left: 0;*/
  185. /*right: 0;*/
  186. /*position: fixed;*/
  187. }
  188. div#photo_viewer div#viewer_controls img{
  189. max-height: 3em;
  190. max-width: 3em;
  191. transition: all .3s ease-in-out;
  192. }
  193. div#photo_viewer img.viewer_arrow{
  194. /*position: fixed;
  195. top: 50%;*/
  196. height: 3em;
  197. width: 3em;
  198. /*margin-top: -1.5em;*/
  199. opacity: 0.4;
  200. }
  201. div#photo_viewer img.viewer_arrow:hover{
  202. -webkit-filter: drop-shadow(0 0 0.3em #775599);
  203. filter: drop-shadow(0 0 0.3em #775599);
  204. -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#759')";
  205. filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#759')";
  206. opacity: 0.8;
  207. }
  208. div#photo_viewer img#viewer_arrow_left{
  209. left: 0%;
  210. }
  211. div#photo_viewer img#viewer_arrow_right{
  212. right: 0%;
  213. }
  214. div#photo_viewer_details{
  215. /*position: fixed;
  216. top: 11%;
  217. bottom: 11%;
  218. right: 12%;
  219. left: 60%;
  220. overflow-y: auto;*/
  221. }
  222. div#photo_data{
  223. position: relative;
  224. height: 100%;
  225. }
  226. div#photo_data h4{
  227. margin: 0.1em;
  228. }
  229. div#photo_data span#photo_description{
  230. display: block;
  231. margin: 0.4em 0.4em 0.4em 1em;
  232. }
  233. div#photo_data span#photo_date{
  234. display: block;
  235. margin: 0.3em;
  236. width: 90%;
  237. text-align: right;
  238. font-size: 80%;
  239. font-style: italic;
  240. }
  241. div#photo_data span#photo_user{
  242. display: block;
  243. margin: 0.3em;
  244. width: 90%;
  245. text-align: right;
  246. font-size: 80%;
  247. font-style: italic;
  248. }
  249. div#photo_viewer_comments{
  250. height: 100%;
  251. overflow: auto;
  252. }
  253. div.photo_viewer_comment{
  254. border: 0.1em solid rgba(50, 50, 50, 0.2);
  255. margin: 0;
  256. padding: 0.3em;
  257. }
  258. div.photo_viewer_user{
  259. font-size: 90%;
  260. font-weight: bold;
  261. }
  262. div.photo_viewer_user_unregistered{
  263. color: #333333;
  264. }
  265. div.photo_viewer_user_registered{
  266. vertical-align: middle;
  267. color: #aa2266;
  268. }
  269. div.photo_viewer_user_registered img{
  270. width: 2em;
  271. height: 2em;
  272. vertical-align: middle;
  273. }
  274. span.photo_viewer_comment_date{
  275. display: block;
  276. margin: 0;
  277. padding: 0;
  278. font-size: 70%;
  279. color: #555555;
  280. text-align: right;
  281. }
  282. div#photo_viewer_new_comment_header{
  283. background-color: #0000ff;
  284. color: #ffffff;
  285. font-weight: bold;
  286. font-size: 80%;
  287. margin: 0.1em 0 0 0;
  288. padding: 0;
  289. }
  290. /* /galeria/upload/ */
  291. div.form_photo{
  292. display: inline-block;
  293. vertical-align: top;
  294. width: 15em;
  295. text-align: center;
  296. margin: 1.5em;
  297. padding: 1em;
  298. /* border: 0.1em solid #000010; */
  299. /* border-radius: 0.5em; */
  300. }
  301. div.form_photo img{
  302. max-width: 90%;
  303. max-height: 9em;
  304. margin-left: auto;
  305. margin-right: auto;
  306. border: 0.3em solid #000010;
  307. }
  308. div.form_photo input, textarea{
  309. width: 90%;
  310. }
  311. div#file_box{
  312. text-align: center;
  313. }
  314. div#file_box span#drag{
  315. font-size: 150%;
  316. font-weight: bold;
  317. }
  318. div#file_box input#file_selector{
  319. display: block;
  320. width: 0;
  321. height: 0;
  322. opacity: 0;
  323. background-color: #ff0000;
  324. }
  325. div#photo_upload_preview{
  326. text-align: center;
  327. }
  328. div#photo_upload_preview table{
  329. margin: auto;
  330. }
  331. div#photo_upload_preview table td{
  332. vertical-align: bottom;
  333. max-width: 15em;
  334. text-align: left;
  335. height: 100%;
  336. padding: 1em;
  337. }
  338. div#photo_upload_preview table td select{
  339. width: 100%;
  340. }
  341. div#photo_upload_preview table td input{
  342. width: 100%;
  343. }
  344. div#photo_upload_preview input#photo_submit{
  345. display: none;
  346. }