gallery.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Gallery page. */
  2. section#album_list{
  3. text-align: center;
  4. }
  5. section#album_list h3{
  6. text-align: left;
  7. }
  8. section#album_list article{
  9. display: inline-block;
  10. vertical-align: top;
  11. text-align: center;
  12. margin: 1em;
  13. width: 20em;
  14. }
  15. section#album_list article img{
  16. display: inline-block;
  17. width: 4em;
  18. margin: 1em;
  19. border: 0.2em solid black;
  20. }
  21. /* Album page. */
  22. section#album{
  23. text-align: center;
  24. }
  25. section#album h3{
  26. text-align: left;
  27. }
  28. section#album img{
  29. max-height: 7em;
  30. max-width: 7em;
  31. margin: 1em;
  32. }
  33. /* Photo viewer. */
  34. div#screen_cover{
  35. position: fixed;
  36. top: 0;
  37. left: 0;
  38. background-color: black;
  39. display: none;
  40. width: 100%;
  41. height: 100%;
  42. opacity: 0;
  43. transition: all .9s ease-in-out;
  44. z-index: 1000;
  45. }
  46. section#photo_viewer{
  47. position: fixed;
  48. display: none;
  49. top: 1em;
  50. left: 4em;
  51. right: 4em;
  52. bottom: 1em;
  53. opacity: 0;
  54. transition: all .6s ease-in-out;
  55. z-index: 1001;
  56. min-height: 10em;
  57. }
  58. @media screen and max-width: 800px{
  59. div#photo_viewer{
  60. top: 2%;
  61. left: 2%;
  62. right: 2%;
  63. bottom: 2%;
  64. }
  65. }
  66. section#photo_viewer h3 div#viewer_close_container{
  67. height: 1.5em;
  68. float: right;
  69. margin-top: -0.3em;
  70. margin-right: -0.4em;
  71. }
  72. section#photo_viewer article{
  73. text-align: center;
  74. }
  75. section#photo_viewer article div{
  76. display: inline-block;
  77. vertical-align: middle;
  78. margin: 0;
  79. }
  80. section#photo_viewer article div.arrow{
  81. width: 15%;
  82. padding: 0.5em;
  83. }
  84. section#photo_viewer article div#photo_view{
  85. width: 65%;
  86. padding: 0.1em;
  87. }
  88. section#photo_viewer article div#photo_view img{
  89. display: block;
  90. background: #000000;
  91. border: 0.1em solid #000000;
  92. border-radius: 0.5em;
  93. }
  94. section#photo_viewer article div#photo_view p{
  95. margin: 0.2em;
  96. padding: 0;
  97. text-align: left;
  98. }