Basic PHP document management system, including automatic detection of corporate logos in letters
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

style.css 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. div#search {
  2. position: absolute;
  3. top: 10px;
  4. left: 20px;
  5. width: 50%;
  6. text-align: center;
  7. }
  8. div#search input {
  9. width: 80%;
  10. }
  11. div#searchresults {
  12. position: absolute;
  13. border: 1px solid #999;
  14. top: 50px;
  15. left: 20px;
  16. width: 50%;
  17. bottom: 15px;
  18. overflow: auto;
  19. }
  20. #previewtabs {
  21. position: absolute;
  22. left: 55%;
  23. top: 29px;
  24. margin: 0px;
  25. padding: 0px;
  26. }
  27. #previewtabs li {
  28. display: inline-block;
  29. vertical-align: middle;
  30. }
  31. #previewtabs li a {
  32. display: inline-block;
  33. height: 16px;
  34. background-color: #ccc;
  35. border: 1px solid #999;
  36. text-align: center;
  37. vertical-align: middle;
  38. padding: 2px 10px;
  39. color: white;
  40. text-decoration: none;
  41. font-size: 12px;
  42. }
  43. #previewtabs li a.active {
  44. color: black;
  45. }
  46. div#searchresults img {
  47. cursor: pointer;
  48. }
  49. div.preview {
  50. position: absolute;
  51. top: 50px;
  52. bottom: 15px;
  53. right: 20px;
  54. width: 45%;
  55. padding: 5px;
  56. border: 1px solid #999;
  57. background-color: white;
  58. }
  59. div#preview {
  60. text-align: center;
  61. }
  62. div.preview img {
  63. max-width: 100%;
  64. max-height: 100%;
  65. cursor: pointer;
  66. }
  67. div.thumbnail {
  68. float: left;
  69. padding: 0px;
  70. width: 80px;
  71. height: 100px;
  72. margin: 5px;
  73. }
  74. a img {
  75. border: 0px;
  76. }
  77. th {
  78. text-align: right;
  79. }
  80. div.preview h2 {
  81. margin-top: 0px;
  82. }
  83. textarea {
  84. width: 100%;
  85. height: 35%;
  86. }