123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- .page-header {
- margin: 0 -15px 0 -15px;
- border: none;
- background: #020031;
- background: -moz-linear-gradient(45deg, #020031 0, #6d3353 100%);
- background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #020031), color-stop(100%, #6d3353));
- background: -webkit-linear-gradient(45deg, #020031 0, #6d3353 100%);
- background: -o-linear-gradient(45deg, #020031 0, #6d3353 100%);
- background: -ms-linear-gradient(45deg, #020031 0, #6d3353 100%);
- background: linear-gradient(45deg, #020031 0, #6d3353 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#020031', endColorstr='#6d3353', GradientType=1);
- -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
- -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
- box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2)
- }
- .page-header:after {
- content: '';
- display: block;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: url("../img/pattern.png") repeat center center;
- opacity: .6
- }
- .page-header h1 {
- margin: 0;
- padding: 30px 0 20px 0;
- color: #fff;
- text-align: center;
- font-size: 24px;
- text-shadow: #222 1px 1px 3px;
- }
- .games {
- }
- .games > div {
- border: 0;
- }
- .games > div a {
- margin: 15px 0;
- }
- .games > div:nth-child(2n + 1) {
- background: #fff
- }
- .games > div:nth-child(2n) {
- background: #f4f4f4
- }
- .games a {
- position: relative;
- display: block;
- overflow: hidden;
- text-decoration: none;
- }
- .games .icon {
- float: left;
- margin-right: 10px;
- width: 25%;
- max-width: 70px;
- height: auto;
- border-radius: 5px;
- overflow: hidden;
- }
- .games .icon img {
- width: 100%;
- height: auto;
- }
- .games .detail {
- width: 50%;
- width: -moz-calc(75% - 60px);
- width: -webkit-calc(75% - 60px);
- width: calc(75% - 60px);
- float: left;
- margin-top: 0;
- vertical-align: middle;
- }
- .games .detail .name {
- margin-top: 0;
- margin-bottom: 0;
- color: #333;
- font-size: 16px;
- }
- .games p {
- color: #ff9600;
- font-size: 11px;
- margin: 5px 0 3px;
- }
- .games p.desc {
- color: #888;
- font-size: 12px;
- line-height: 1.4em;
- margin-top: 0;
- }
- .games .down {
- position: absolute;
- top: 20px;
- right: 0;
- width: 40px;
- height: 25px;
- line-height: 25px;
- border-radius: 4px;
- background-color: #fff;
- color: #0076ff;
- border: 1px solid #0076ff;
- text-align: center;
- font-size: 13px;
- font-weight: bold;
- }
- .page-footer{
- width: 100%;
- }
- .page-footer p{
- padding: 15px 0 8px;
- font-size: 14px;
- font-style: italic;
- text-align: center;
- color: #bbbbbb;
- }
|