the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 117 lines 2.2 kB view raw
1body 2{ 3 font-size:50%; 4 /*gradient for smartglass UI*/ 5 background: -webkit-linear-gradient(top, #000000 50%, #323232); /* Safari and Chrome*/ 6 background: -moz-linear-gradient(top, #000000 50%, #323232);/*Firefox*/ 7 background: -ms-linear-gradient(top, #000000 50%, #323232);/*IE*/ 8} 9 10/*for smaller android tablets the line height prevents showing all 6 items*/ 11@media (max-height:595px) 12{ 13 body 14 { 15 font-size:44%; 16 } 17 18 .helpMenu li a 19 { 20 height:2.5em; 21 line-height: 2.5em; 22 } 23} 24 25article .contentPanel 26{ 27 padding: 0 0 0 48px; 28 position: relative; 29 top: 20%; 30 height: 80%; 31 width:300px; 32 background-color:transparent; 33} 34 35article:not(.helpMenu) .contentPanel 36{ 37 background:url("sg_logo_20.png") no-repeat transparent 56px 110px; 38} 39 40article .contentPanel .panelButtons 41{ 42 display: none; 43} 44 45.pageCounter 46{ 47 display: block; 48 position: fixed; 49 right: 2em; 50 bottom: .5em; 51 left: auto; 52} 53 54article .helpContent 55{ 56 position: relative; 57 height: 70%; 58 top: 20%; 59 padding: 2% 144px 2% 64px; /* right padding set to be higher than column-gap to allow "peek" (part of next column showing up next to full column). */ 60 background-color: transparent; 61 overflow: auto; 62 -webkit-overflow-scrolling: touch; 63 line-height:1; 64} 65 66article .contentPanel .backLink 67{ 68 position: fixed; 69 top: 1em; 70 left: 1em; 71 margin: 0; 72 background-position-y:2.25em; 73} 74 75/*note you must re-initialize any background properties if you swap images*/ 76article .contentPanel .backLink:focus 77{ 78 background-position-y:2.25em; 79} 80.articles article:not(.helpMenu) .articleTitle 81{ 82 top: 3.8em; 83 left: 1.5em; 84 height: 2em; 85} 86#TOC .articleTitle 87{ 88 left:1.75em; 89} 90article .contentPanel .articleTitle 91{ 92 position: fixed; 93 top: 1.85em; 94 left: 4em; 95 height: 3em; 96 display: block; 97 width: 70%; 98 overflow: hidden; 99} 100 101.helpMenu li a 102{ 103 width: 100%; 104 display: block; 105 padding-bottom:.25em; 106} 107 108/*remove controller button states*/ 109.navLinks a, .navLinks a:focus, .navLinks a:hover:not(:focus) 110{ 111 112 border:none; 113 background-color: transparent; 114 outline:0; 115 box-shadow:none; 116} 117