style.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* ----------------Reset Css--------------------- */
  2. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
  4. small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
  5. fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
  6. article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
  7. time, mark, audio, video, input {
  8. margin: 0;
  9. padding: 0;
  10. border: none;
  11. outline: 0;
  12. font-size: 100%;
  13. font: inherit;
  14. vertical-align: baseline;
  15. }
  16. html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
  17. -webkit-text-size-adjust: none;
  18. }
  19. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  20. display: block;
  21. }
  22. body {
  23. font-family: arial, sans-serif;
  24. }
  25. ol, ul {
  26. list-style: none;
  27. }
  28. blockquote, q {
  29. quotes: none;
  30. }
  31. blockquote:before, blockquote:after, q:before, q:after {
  32. content: '';
  33. content: none;
  34. }
  35. ins {
  36. text-decoration: none;
  37. }
  38. del {
  39. text-decoration: line-through;
  40. }
  41. table {
  42. border-collapse: collapse;
  43. border-spacing: 0;
  44. }
  45. /* ------------ */
  46. #wrapper {
  47. width: 980px;
  48. margin: 0 auto;
  49. margin: 1em;
  50. width: auto;
  51. }
  52. .img-preview {
  53. width: 160px;
  54. height: 90px;
  55. margin-top: 1em;
  56. border: 1px solid #ccc;
  57. }
  58. .cropper-wraper {
  59. position: relative;
  60. }
  61. .upload-btn {
  62. background: #ffffff;
  63. border: 1px solid #cfcfcf;
  64. color: #565656;
  65. padding: 10px 18px;
  66. display: inline-block;
  67. border-radius: 3px;
  68. margin-left: 10px;
  69. cursor: pointer;
  70. font-size: 14px;
  71. position: absolute;
  72. right: 1em;
  73. bottom: 2em;
  74. }
  75. .upload-btn:hover {
  76. background: #f0f0f0;
  77. }