-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
177 lines (154 loc) · 3.37 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*------------------------------*/
/*-------------main-------------*/
/*------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&family=VT323&display=swap'); /* VT323, Ubuntu Mono */
:root {
--font-main: "Ubuntu Mono";
--font-secondary: "VT323";
}
body {
color: #ffffff;
background-color: #000000;
font-family: var(--font-secondary);
font-size: 25px;
}
#content-wrap {
padding: 0px 0px 0px 8px;
overflow: hidden;
}
#content {
/* styles tbd */
}
/*-------------------------------*/
/*------------top-bar------------*/
/*-------------------------------*/
.topBar {
position: fixed;
top: 0;
background-color: #000000;
}
.directoryTitle {
font-family: var(--font-main);
font-size: 56px;
font-weight: bold;
font-style: italic;
margin: 0px 0px -12px 2px;
}
.lineBreak::before {
content: "===============================================================================";
}
.lineBreak {
color: #ffffff;
margin: 10px 0px 10px 0px;
}
/* ------------------------------------ */
/* -------------main-content------------*/
/*--------------------------------------*/
.main-content {
margin-top: 76px;
width: calc(100vw - 450px);
overflow-x:scroll;
}
#cmdHistory {
text-wrap:nowrap;
}
#cmdHistory::before {
white-space: pre;
content: "";
}
#inputReader {
background-color: transparent;
border: 0px;
}
#inputReader,
#inputReader:focus,
#inputReader::placeholder {
background-color: transparent;
outline: none;
font-family: var(--font-secondary);
font-size: 25px;
color: white;
caret-color: white;
caret-shape: underscore;
width: 90vw;
}
/*--------IN-PROGRESS----------*/
/*--------------------------------*/
/*------------side-bar------------*/
/*--------------------------------*/
.side-bar-container {
float: right;
padding: 0px 0px 0px 2px;
border-left: 1.5px double #ffffff;
background-color: #000;
height: 100%;
width: 450px;
z-index:20;
}
@media only screen and (min-width: 901px) {
.open-menu {
display:none;
}
.side-bar-container {
display: block;
position: fixed;
right:0;
}
}
@media only screen and (max-width: 900px) {
.main-content {
width:100%;
}
#side-bar {
display: block;
position: fixed;
width: 100%;
height: 100%;
right: -100%;
top: 0em;
z-index: 100;
transition: 1s ease-in-out;
-o-transition: 1s ease-in-out;
-webkit-transition: 1s ease-in-out;
-ms-transition: 1s ease-in-out;
border: none !important;
text-decoration: none !important;
outline: none !important;
}
/* styles the visible side bar */
.side-bar-container {
width: 90vw;
z-index:120;
}
/*:target means if it is hyperlinked to (notice how when you click side bar the link adds #side-bar)*/
#side-bar:target {
right: 0;
border: none !important;
text-decoration: none !important;
}
/* styles the ≡ */
.open-menu {
display: block;
position: fixed;
top: 0.3em;
right: 0.3em;
z-index: 95;
font-family: 'Nanum Gothic', san-serif;
font-size: 3em;
font-weight: 700;
width: 1em;
height: 1em;
line-height: 0.9em;
text-align: center;
color: #FFF !important;
text-decoration: none;
}
}
#ownedCmdsWrap, #ownedCmdsWrap a, #semicolonsDisplay, #semicolonsDisplay a {
text-wrap: nowrap;
color: #fff;
}
/* styles the sidebar container that is used to close the bar*/
#ownedCmdsWrap {
overflow-x: scroll;
}