Path: blob/main/projects/cubefield/assets/app.css
1835 views
body {1background: #000000;2overflow:hidden;3margin: 0;4padding: 0;5}67html8{9background: #080808;10}1112#gameContainer{1314}1516#gui{1718position: absolute;19top:0;20left:0;21/*margin: 1vw;*/22width:100%;23height:100%;2425color:#fff;26text-align: center;2728cursor:default;29z-index: 999999;30}3132#splash-logo{33background-image: url('splash.png');34background-repeat: no-repeat;35background-size: cover;36background-position: center;37position:absolute;38width:100%;39height:100%;40}4142#sponsor-logo{43display:none;44position: absolute;45right: 10px;46top:10px;47background-image: url('sponsor_logo.png');48background-repeat: no-repeat;49background-size: contain;50background-position:bottom right;51width:20%;52height: 5%;5354cursor:pointer;55cursor:hand;56}5758#score-text{59position:absolute;60top:10px;61left:10px;62font-size:4vw;63}646566#pause-screen{67display:none;68position:absolute;69left:50%;70top:50%;71width:250px;72height:80px;73margin-left:-125px;74margin-top:-40px;7576cursor:pointer;77cursor:hand;78}7980#speedup-screen{81display:none;82position:absolute;83left:50%;84top:50%;85width:200px;86height:50px;87margin-left:-100px;88margin-top:-25px;89font-size: 36px;9091}9293#start-screen{94display:none;95position: absolute;96/*width: 550px;97height: 360px;*/9899left: 50%;100top: 50%;101margin-left: 0px;102margin-top: -180px;103104105text-align: center;106107width:90%;108max-width: 550px;109height: 90%;110max-height: 360px;111}112113#start-screen-top{114height: 45%;115}116#txt-title{117color: #FFF;118text-align: center;119margin-top: 2px;120}121#txt-top-score{122position:absolute;123right:10px;124top:120px;125color:#FFF;126text-align: right;127margin-right: 10px;128129}130131132#start-screen-center{133height: 25%;134color:#FFF;135136}137#start-screen-bottom{138height: 20%;139width:50%;140color:#FFF;141142cursor:pointer;143cursor:hand;144}145#start-button{146position:absolute;147left:10px;148bottom:10px;149cursor:pointer;150/*cursor:hand;*/151}152153154155156.start-screen-child{157width:100%;158display:inline-block;159margin:2px;160}161162163.panel{164border-style:solid;165border-color:#FFF;166border-radius: 15px;167168background:rgba(128, 128, 128, 0.8);169}170171.unselectable{172user-select: none;173-moz-user-select: none;174-khtml-user-select: none;175-webkit-user-select: none;176-o-user-select: none;177}178179.ui-loader {180display:none !important;181}182183