-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
executable file
·118 lines (104 loc) · 1.74 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body, html{
font-family: Dos;
color: #BFBFBF;
background-color: #151515;
display:flex;
flex-direction:row;
justify-content:center;
width:100%;
font-smooth: never;
-webkit-font-smoothing : antialiased !important;
-moz-osx-font-smoothing: unset;
height:100%;
}
@font-face {
font-family: "Dos";
src: url("res/fonts/Px437_IBM_PS2thin4.ttf");
}
@font-face {
font-family: "Dos";
src: url("res/fonts/Px437_ATI_9x16.ttf");
font-weight: bold;
}
h1, h2, h3{
font-size:inherit;
font-weight:inherit;
}
h1, .emphasis{
color:aqua;
}
h2{
color:grey;
}
#input, .history{
color:white;
margin-bottom:6px;
max-width:70%;
}
.feedback{
margin-bottom:12px;
}
.terminal{
padding:20px;
border:1px dotted grey;
height:70%;
overflow-y:hidden;
position:relative;
}
.notice{
color: grey;
}
.object{
color:yellow;
}
pre#minimap{
position:fixed;
top:6vh;
right:12vw;
width:30%;
background-color: #151515;
}
#mainContainer{
display:flex;
flex-direction:column;
justify-content:flex-start;
width:80%;
padding:20px;
}
#objectActionShortTip{
display:none;
}
#objectActionLongTip{
display:block;
}
@media screen and (orientation:portrait) {
body{
font-size:2em;
}
pre#minimap{
display:none;
}
#input, .history{
max-width:100%;
}
#biomeTip{
display:none;
}
#objectActionShortTip{
display:block;
}
#objectActionLongTip{
display:none;
}
.extendedHelp{
display:none;
}
#dimensionInfo{
display:none;
}
}
@media (max-aspect-ratio: 16/10) or (max-width: 600px) {
pre#minimap{
display:none;
}
}