Pictures!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #root {
  2. width: 95%;
  3. max-width: 1000px;
  4. margin: auto;
  5. text-align: center;
  6. }
  7. #root.main .slide {
  8. margin: 2%;
  9. width: 45%;
  10. min-width: 300px;
  11. position: relative;
  12. height: 320px;
  13. display: inline-block;
  14. text-align: center;
  15. }
  16. #root.main .slide,
  17. #root.main .slide:visited {
  18. color: #000;
  19. text-decoration: none;
  20. }
  21. #root.main .slide .preview,
  22. #root.main .slide .overlay {
  23. -moz-transform: scale(0.5, 0.5);
  24. -webkit-transform: scale(0.5, 0.5);
  25. -o-transform: scale(0.5, 0.5);
  26. -ms-transform: scale(0.5, 0.5);
  27. transform: scale(0.5, 0.5);
  28. -moz-transform-origin: top left;
  29. -webkit-transform-origin: top left;
  30. -o-transform-origin: top left;
  31. -ms-transform-origin: top left;
  32. transform-origin: top left;
  33. width: 200%;
  34. height: 600px;
  35. border: 2px solid black;
  36. margin-bottom: -300px;
  37. margin-right: -400px;
  38. position: absolute;
  39. top: 24px;
  40. left: 0px;
  41. }
  42. #root.edit #topBar {
  43. text-align: center;
  44. height: 24px;
  45. margin-bottom: 12px;
  46. }
  47. #root.edit #topBar a {
  48. float: left;
  49. display: inline-block;
  50. }
  51. #root.edit #topBar span {
  52. display: inline-block;
  53. margin: auto;
  54. }
  55. #root.edit #fileList {
  56. text-align: left;
  57. position: relative;
  58. }
  59. #root.edit #fileList .file {
  60. line-height: 30px;
  61. border-bottom: 1px solid #ccc;
  62. }
  63. #root.edit #fileList .file:last-child {
  64. border-bottom: none;
  65. }
  66. #root.edit #fileList .file .name {
  67. margin-left: 10px;
  68. }
  69. #root.edit #fileList .file .controls {
  70. position: absolute;
  71. right: 0px;
  72. }
  73. #root.edit #html,
  74. #root.edit #preview,
  75. #root.edit #fileList {
  76. width: 100%;
  77. border: 1px solid #000;
  78. box-sizing: border-box;
  79. }
  80. #root.edit #fileList,
  81. #root.edit #slide > .uploader,
  82. #root.edit #slide > .delete,
  83. #root.edit #html {
  84. margin-bottom: 24px;
  85. }
  86. #root.edit #html {
  87. height: 200px;
  88. resize: vertical;
  89. }
  90. #root.edit #preview {
  91. height: 500px;
  92. }