style.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. body {
  2. font: 14px/22px "Helvetica Neue","Helvetica", Arial, sans-serif;
  3. background: #f4f4f4;
  4. -webkit-font-smoothing: antialiased;
  5. }
  6. div.container {
  7. width: 800px;
  8. margin: 0 auto;
  9. padding: 2em 0;
  10. text-align: justify;
  11. }
  12. #appIcon {
  13. width: 72px;
  14. height: 72px;
  15. background:url(Icon-72@2x.png);
  16. -webkit-background-size: 72px 72px;
  17. background-size: 72px 72px;
  18. margin: 0 auto;
  19. }
  20. header {
  21. text-align: center;
  22. }
  23. header h1 {
  24. font-size: 3em;
  25. line-height: 2em;
  26. color: #e08d33;
  27. background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(234, 171, 103)), to(rgb(214, 112, 0)));
  28. background-image: -webkit-linear-gradient(top, rgb(234, 171, 103), rgb(214, 112, 0));
  29. background-image: linear-gradient(top, rgb(234, 171, 103), rgb(214, 112, 0));
  30. -webkit-background-clip: text;
  31. -webkit-text-fill-color:transparent;
  32. font-weight: normal;
  33. }
  34. form {
  35. text-align: center;
  36. margin: 2em;
  37. }
  38. footer p {
  39. font-size: .8em;
  40. text-align: center;
  41. line-height: 1.3em;
  42. }
  43. div.container > div {
  44. text-align: center;
  45. }
  46. div.container > div > span {
  47. display: inline-block;
  48. width: 100%;
  49. font-size: 1.5em;
  50. margin: 2em 0;
  51. color: #008f00;
  52. }
  53. a#uploadMore {
  54. color:white;
  55. background-color: #c96800;
  56. background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(216, 112, 0)), to(rgb(186, 97, 0)));
  57. background-image: -webkit-linear-gradient(top, rgb(216, 112, 0), rgb(186, 97, 0));
  58. background-image: -moz-linear-gradient(top, rgb(216, 112, 0), rgb(186, 97, 0));
  59. background-image: -o-linear-gradient(top, rgb(216, 112, 0), rgb(186, 97, 0));
  60. background-image: -ms-linear-gradient(top, rgb(216, 112, 0), rgb(186, 97, 0));
  61. background-image: linear-gradient(top, rgb(216, 112, 0), rgb(186, 97, 0));
  62. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#d87000', EndColorStr='#ba6100');
  63. -webkit-box-shadow: inset 0 0 0 1px #8c4800, inset 0 2px 0 rgba(255,255,255,.32);
  64. -moz-box-shadow: inset 0 0 0 1px #8c4800, inset 0 2px 0 rgba(255,255,255,.32);
  65. box-shadow: inset 0 0 0 1px #8c4800, inset 0 2px 0 rgba(255,255,255,.32);
  66. text-decoration: none;
  67. padding: 10px 20px;
  68. -webkit-box-sizing: border-box;
  69. -moz-box-sizing: border-box;
  70. box-sizing: border-box;
  71. display: inline-block;
  72. margin: 1em;
  73. -webkit-border-radius: 8px;
  74. -moz-border-radius: 8px;
  75. border-radius: 8px;
  76. font-size: 1.2em;
  77. text-shadow: 0 -1px 0 black;
  78. }
  79. a#uploadMore:hover {
  80. background-color: #cc7314;
  81. background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(219, 123, 20)), to(rgb(190, 108, 20)));
  82. background-image: -webkit-linear-gradient(top, rgb(219, 123, 20), rgb(190, 108, 20));
  83. background-image: -moz-linear-gradient(top, rgb(219, 123, 20), rgb(190, 108, 20));
  84. background-image: -o-linear-gradient(top, rgb(219, 123, 20), rgb(190, 108, 20));
  85. background-image: -ms-linear-gradient(top, rgb(219, 123, 20), rgb(190, 108, 20));
  86. background-image: linear-gradient(top, rgb(219, 123, 20), rgb(190, 108, 20));
  87. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#db7b14', EndColorStr='#be6c14');
  88. }
  89. a#uploadMore:active {
  90. background-color: #b96000;
  91. background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(199, 103, 0)), to(rgb(171, 89, 0)));
  92. background-image: -webkit-linear-gradient(top, rgb(199, 103, 0), rgb(171, 89, 0));
  93. background-image: -moz-linear-gradient(top, rgb(199, 103, 0), rgb(171, 89, 0));
  94. background-image: -o-linear-gradient(top, rgb(199, 103, 0), rgb(171, 89, 0));
  95. background-image: -ms-linear-gradient(top, rgb(199, 103, 0), rgb(171, 89, 0));
  96. background-image: linear-gradient(top, rgb(199, 103, 0), rgb(171, 89, 0));
  97. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#c76700', EndColorStr='#ab5900');
  98. }