public.css 881 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. body {
  2. background:#ddd;
  3. }
  4. #header {
  5. background:#1d2d44;
  6. box-shadow:0 0 10px rgba(0,0,0,.5), inset 0 -2px 10px #222;
  7. height:2.5em;
  8. left:0;
  9. line-height:2.5em;
  10. position:fixed;
  11. right:0;
  12. top:0;
  13. z-index:100;
  14. padding:.5em;
  15. }
  16. #details {
  17. color:#fff;
  18. }
  19. #header #download {
  20. font-weight:700;
  21. margin-left:2em;
  22. }
  23. #header #download img {
  24. padding-left:.1em;
  25. padding-right:.3em;
  26. vertical-align:text-bottom;
  27. }
  28. #preview {
  29. background:#eee;
  30. border-bottom:1px solid #f8f8f8;
  31. min-height:30em;
  32. padding-top:2em;
  33. text-align:center;
  34. margin:50px auto;
  35. }
  36. #noPreview {
  37. display:none;
  38. padding-top:5em;
  39. }
  40. p.info {
  41. color:#777;
  42. text-align:center;
  43. text-shadow:#fff 0 1px 0;
  44. width:22em;
  45. margin:2em auto;
  46. }
  47. p.info a {
  48. color:#777;
  49. font-weight:700;
  50. }
  51. #imgframe {
  52. height:75%;
  53. padding-bottom:2em;
  54. width:80%;
  55. margin:0 auto;
  56. }
  57. #imgframe img {
  58. max-height:100%;
  59. max-width:100%;
  60. }