| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
- }
- /* HTML5 display-role reset for older browsers */
- article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block }
- body { line-height: 1 }
- ol, ul { list-style: none }
- blockquote, q { quotes: none }
- blockquote:before, blockquote:after, q:before, q:after {
- content: '';
- content: none;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- html, body { height: 100% }
- body {
- font-family: 'Open Sans', sans-serif;
- overflow-x: hidden;
- background-color: lightgrey;
- }
- :focus { outline: 0 }
- .rocket {
- float: right;
- padding-right: 0;
- width: 50%;
- box-sizing: border-box;
- text-align: center;
- }
- @-webkit-keyframes thumb {
- 0% { -webkit-transform: scale(1) }
- 50% { -webkit-transform: scale(0.9) }
- 100% { -webkit-transform: scale(1) }
- }
- .rocket img:hover {
- webkit-animation-name: thumb;
- -webkit-animation-duration: 200ms;
- -webkit-transform-origin: 50% 50%;
- -webkit-animation-iteration-count: 2;
- -webkit-animation-timing-function: linear;
- }
- .launchpad {
- overflow: visible;
- }
- .launchpad img {
- margin-top: -7em;
- display: block;
- }
- body {
- margin: 0;
- padding: 0;
- font-family: 'Exo 2', sans-serif;
- text-transform: uppercase;
- color: #5c5c5c;
- background-image: url(bgpattern.png);
- }
- ol, ul {
- list-style: none;
- margin-left: 0;
- }
- h1 {
- font-weight: 700;
- font-size: 2rem;
- margin: 1em 0;
- color: #ff0000;
- text-decoration: none;
- }
- .page {
- width: 1002px;
- position: relative;
- margin: 0 auto;
- }
- #block-text { margin-top: 5em }
- #block {
- height: 100%;
- display: block;
- min-height: 180px;
- max-width: 500px;
- float: left;
- }
- p { margin: 0 }
- .text {
- display: block;
- font-size: 24px;
- padding-top: 10px;
- font-weight: 600;
- line-height: 1.2;
- margin-bottom: 40px;
- }
- #footer_area {
- width: 100%;
- clear: both;
- padding-right: 30px;
- text-align: right;
- }
- .footer1 {
- background: url('fbg.png') repeat;
- min-height: 85px;
- }
- .footer2 {
- background: url('fbg2.png') repeat;
- height: 34px;
- }
- .text a {
- color: #333333;
- text-decoration: none;
- }
- #footer a { padding: 2px }
- .text a:hover { color: #FE6514 }
- .finish-mss { font-size: 24px }
- .footer-copyright { color: white; padding-top: 10px; }
- .footer-copyright a { color: greenyellow; }
- .footer-copyright a:hover { color: #922C01 }
- /*-----------------------------------------[ 996 ]-------------------------------------*/
- @media screen and (max-width:996px) {
- .page { width: 95% }
- .launchpad { width: 100%; }
- .block { width: 550px }
- }
- @media screen and (min-width:996px) {
- .rocket {
- padding-top: 56px;
- padding-right: 80px;
- }
- }
- /*-----------------------------------------[ 768 ]-------------------------------------*/
- @media screen and (max-width:768px) {
- #block {
- display: block;
- overflow: hidden;
- max-height: 220px;
- width: 100%;
- float: none;
- margin: 0 auto 1.6em auto;
- }
- .rocket {
- width: 100%;
- max-width: 100%;
- padding-top: -150px !important;
- padding-left: 60px;
- }
- #block-text {
- margin-bottom: 7.8em;
- margin-top: 30px;
- }
- .block { width: 500px }
- .footer { display: none; }
- }
- /*-----------------------------------------[ 480 ]-------------------------------------*/
- @media screen and (max-width:480px) {
- .text { font-size: 20px }
- #block-text {
- margin: 4em 0 !important;
- padding: 0 0 3em;
- }
- /*-----------------------------------------[ 320 ]-------------------------------------*/
- @media screen and (max-width:320px) {
- #block-text { margin: 3em 0!important }
- .text { font-size: 170% }
- }
|