Path: blob/main/projects/flappy-bird/css/main.css
1835 views
@-webkit-keyframes animLand {10% { background-position: 0px 0px; }2100% { background-position: -335px 0px; }3}4@-moz-keyframes animLand {50% { background-position: 0px 0px; }6100% { background-position: -335px 0px; }7}8@-o-keyframes animLand {90% { background-position: 0px 0px; }10100% { background-position: -335px 0px; }11}12@keyframes animLand {130% { background-position: 0px 0px; }14100% { background-position: -335px 0px; }15}1617@-webkit-keyframes animSky {180% { background-position: 0px 100%; }19100% { background-position: -275px 100%; }20}21@-moz-keyframes animSky {220% { background-position: 0px 100%; }23100% { background-position: -275px 100%; }24}25@-o-keyframes animSky {260% { background-position: 0px 100%; }27100% { background-position: -275px 100%; }28}29@keyframes animSky {300% { background-position: 0px 100%; }31100% { background-position: -275px 100%; }32}3334@-webkit-keyframes animBird {35from { background-position: 0px 0px; }36to { background-position: 0px -96px; }37}38@-moz-keyframes animBird {39from { background-position: 0px 0px; }40to { background-position: 0px -96px; }41}42@-o-keyframes animBird {43from { background-position: 0px 0px; }44to { background-position: 0px -96px; }45}46@keyframes animBird {47from { background-position: 0px 0px; }48to { background-position: 0px -96px; }49}5051@-webkit-keyframes animPipe {520% { left: 900px; }53100% { left: -100px; }54}55@-moz-keyframes animPipe {560% { left: 900px; }57100% { left: -100px; }58}59@-o-keyframes animPipe {600% { left: 900px; }61100% { left: -100px; }62}63@keyframes animPipe {640% { left: 900px; }65100% { left: -100px; }66}6768@-webkit-keyframes animCeiling {690% { background-position: 0px 0px; }70100% { background-position: -63px 0px; }71}72@-moz-keyframes animCeiling {730% { background-position: 0px 0px; }74100% { background-position: -63px 0px; }75}76@-o-keyframes animCeiling {770% { background-position: 0px 0px; }78100% { background-position: -63px 0px; }79}80@keyframes animCeiling {810% { background-position: 0px 0px; }82100% { background-position: -63px 0px; }83}848586*,87*:before,88*:after89{90/* border box */91-moz-box-sizing: border-box;92-webkit-box-sizing: border-box;93box-sizing: border-box;94/* gpu acceleration */95-webkit-transition: translate3d(0,0,0);96/* select disable */97-webkit-touch-callout: none;98-webkit-user-select: none;99-khtml-user-select: none;100-moz-user-select: none;101-ms-user-select: none;102user-select: none;103}104105html,106body107{108height: 100%;109overflow: hidden;110font-family: monospace;111font-size: 12px;112color: #fff;113}114115#gamecontainer116{117position: relative;118width: 100%;119height: 100%;120min-height: 525px;121}122123/*124Screen - Game125*/126#gamescreen127{128position: absolute;129width: 100%;130height: 100%;131}132133#sky134{135position: absolute;136top: 0;137width: 100%;138height: 80%;139background-image: url('../assets/sky.png');140background-repeat: repeat-x;141background-position: 0px 100%;142background-color: #4ec0ca;143144-webkit-animation: animSky 7s linear infinite;145animation: animSky 7s linear infinite;146}147148#flyarea149{150position: absolute;151bottom: 0;152height: 420px;153width: 100%;154}155156#ceiling157{158position: absolute;159top: -16px;160height: 16px;161width: 100%;162background-image: url('../assets/ceiling.png');163background-repeat: repeat-x;164165-webkit-animation: animCeiling 481ms linear infinite;166animation: animCeiling 481ms linear infinite;167}168169#land170{171position: absolute;172bottom: 0;173width: 100%;174height: 20%;175background-image: url('../assets/land.png');176background-repeat: repeat-x;177background-position: 0px 0px;178background-color: #ded895;179180-webkit-animation: animLand 2516ms linear infinite;181animation: animLand 2516ms linear infinite;182}183184#bigscore185{186position: absolute;187top: 20px;188left: 150px;189z-index: 100;190}191192#bigscore img193{194display: inline-block;195padding: 1px;196}197198#splash199{200position: absolute;201opacity: 0;202top: 75px;203left: 65px;204width: 188px;205height: 170px;206background-image: url('../assets/splash.png');207background-repeat: no-repeat;208}209210#scoreboard211{212position: absolute;213display: none;214opacity: 0;215top: 64px;216left: 43px;217width: 236px;218height: 280px;219background-image: url('../assets/scoreboard.png');220background-repeat: no-repeat;221222z-index: 1000;223}224225#medal226{227position: absolute;228opacity: 0;229top: 114px;230left: 32px;231width: 44px;232height: 44px;233}234235#currentscore236{237position: absolute;238top: 105px;239left: 107px;240width: 104px;241height: 14px;242text-align: right;243}244245#currentscore img246{247padding-left: 2px;248}249250#highscore251{252position: absolute;253top: 147px;254left: 107px;255width: 104px;256height: 14px;257text-align: right;258}259260#highscore img261{262padding-left: 2px;263}264265#replay266{267position: absolute;268opacity: 0;269top: 205px;270left: 61px;271height: 115px;272width: 70px;273cursor: pointer;274}275276.boundingbox277{278position: absolute;279display: none;280top: 0;281left: 0;282width: 0;283height: 0;284border: 1px solid red;285}286287#player288{289left: 60px;290top: 200px;291}292293.bird294{295position: absolute;296width: 34px;297height: 24px;298background-image: url('../assets/bird.png');299300-webkit-animation: animBird 300ms steps(4) infinite;301animation: animBird 300ms steps(4) infinite;302}303304.pipe305{306position: absolute;307left: -100px;308width: 52px;309height: 100%;310z-index: 10;311312-webkit-animation: animPipe 7500ms linear;313animation: animPipe 7500ms linear;314}315316.pipe_upper317{318position: absolute;319top: 0;320width: 52px;321background-image: url('../assets/pipe.png');322background-repeat: repeat-y;323background-position: center;324}325326.pipe_upper:after327{328content: "";329position: absolute;330bottom: 0;331width: 52px;332height: 26px;333background-image: url('../assets/pipe-down.png');334}335336.pipe_lower337{338position: absolute;339bottom: 0;340width: 52px;341background-image: url('../assets/pipe.png');342background-repeat: repeat-y;343background-position: center;344}345346.pipe_lower:after347{348content: "";349position: absolute;350top: 0;351width: 52px;352height: 26px;353background-image: url('../assets/pipe-up.png');354}355356#footer357{358position: absolute;359bottom: 3px;360left: 3px;361}362363#footer a,364#footer a:link,365#footer a:visited,366#footer a:hover,367#footer a:active368{369display: block;370padding: 2px;371text-decoration: none;372color: #fff;373}374375