the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1
2/* This file is intended to contain rules that will allow "skinning" of your manual by changeing the colors, fonts and background images. You should not place any rules here
3that modify positioning or size or other layout properties*/
4
5body
6{
7 /*these are the standard fallbacks that are design approved for the majority of the supported devices.*/
8 font-family:Segoe UI Regular,HelveticaNeue, Droid Sans, Arial, Sans-Serif;
9
10 /*add your skin background here if needed
11 background:#000 url(background.png) fixed no-repeat 0 20%;
12 */
13
14 color:#ebebeb; /*xboxwhite*/
15 background-color:#222222;
16}
17
18/*this would for example override the white background and text color on active links*/
19.pageButton:hover, .contentPanel a:hover
20{
21 /*background-color: #ee4036;
22 color:#222;*/
23}
24
25/*and this would modify the focus outline*/
26a:focus, a:hover, button:focus, button:hover
27{
28 /*outline:thick double #ee4036;*/
29}
30
31
32article a.articleTitle, article a.articleTitle:visited
33{
34 color:#6b6b6b;
35}
36
37/*Here's an example of using this file to skin based upon a media query, in this case it will work on smartglass tablet devices
38 Note: this is a duplicate of the media query used inline in the html to load tablet.css for the index page*/
39@media (orientation:landscape) and (max-height: 900px),
40(orientation:landscape) and (min-height: 1081px),
41(orientation:landscape) and (max-width: 1430px) and (min-height: 901px) and (max-height: 1080px),
42(orientation:landscape) and (min-width: 1930px) and (min-height: 901px) and (max-height: 1080px)
43{
44 /*This would add a background image to the content panel in tablets only. Note: you need an additional selector to give this rule
45 enough weight to override the existing in tablet.css*/
46 .articles article:not(.helpMenu) .contentPanel
47 {
48 /*background: url("Forza_Left.png") no-repeat transparent 24px 60px;*/
49 }
50}
51