style.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .page-header {
  2. margin: 0 -15px 0 -15px;
  3. border: none;
  4. background: #020031;
  5. background: -moz-linear-gradient(45deg, #020031 0, #6d3353 100%);
  6. background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #020031), color-stop(100%, #6d3353));
  7. background: -webkit-linear-gradient(45deg, #020031 0, #6d3353 100%);
  8. background: -o-linear-gradient(45deg, #020031 0, #6d3353 100%);
  9. background: -ms-linear-gradient(45deg, #020031 0, #6d3353 100%);
  10. background: linear-gradient(45deg, #020031 0, #6d3353 100%);
  11. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#020031', endColorstr='#6d3353', GradientType=1);
  12. -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
  13. -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
  14. box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2)
  15. }
  16. .page-header:after {
  17. content: '';
  18. display: block;
  19. position: absolute;
  20. top: 0;
  21. right: 0;
  22. bottom: 0;
  23. left: 0;
  24. background: url("../img/pattern.png") repeat center center;
  25. opacity: .6
  26. }
  27. .page-header h1 {
  28. margin: 0;
  29. padding: 30px 0 20px 0;
  30. color: #fff;
  31. text-align: center;
  32. font-size: 24px;
  33. text-shadow: #222 1px 1px 3px;
  34. }
  35. .games {
  36. }
  37. .games > div {
  38. border: 0;
  39. }
  40. .games > div a {
  41. margin: 15px 0;
  42. }
  43. .games > div:nth-child(2n + 1) {
  44. background: #fff
  45. }
  46. .games > div:nth-child(2n) {
  47. background: #f4f4f4
  48. }
  49. .games a {
  50. position: relative;
  51. display: block;
  52. overflow: hidden;
  53. text-decoration: none;
  54. }
  55. .games .icon {
  56. float: left;
  57. margin-right: 10px;
  58. width: 25%;
  59. max-width: 70px;
  60. height: auto;
  61. border-radius: 5px;
  62. overflow: hidden;
  63. }
  64. .games .icon img {
  65. width: 100%;
  66. height: auto;
  67. }
  68. .games .detail {
  69. width: 50%;
  70. width: -moz-calc(75% - 60px);
  71. width: -webkit-calc(75% - 60px);
  72. width: calc(75% - 60px);
  73. float: left;
  74. margin-top: 0;
  75. vertical-align: middle;
  76. }
  77. .games .detail .name {
  78. margin-top: 0;
  79. margin-bottom: 0;
  80. color: #333;
  81. font-size: 16px;
  82. }
  83. .games p {
  84. color: #ff9600;
  85. font-size: 11px;
  86. margin: 5px 0 3px;
  87. }
  88. .games p.desc {
  89. color: #888;
  90. font-size: 12px;
  91. line-height: 1.4em;
  92. margin-top: 0;
  93. }
  94. .games .down {
  95. position: absolute;
  96. top: 20px;
  97. right: 0;
  98. width: 40px;
  99. height: 25px;
  100. line-height: 25px;
  101. border-radius: 4px;
  102. background-color: #fff;
  103. color: #0076ff;
  104. border: 1px solid #0076ff;
  105. text-align: center;
  106. font-size: 13px;
  107. font-weight: bold;
  108. }
  109. .page-footer{
  110. width: 100%;
  111. }
  112. .page-footer p{
  113. padding: 15px 0 8px;
  114. font-size: 14px;
  115. font-style: italic;
  116. text-align: center;
  117. color: #bbbbbb;
  118. }