This repository was archived by the owner on Sep 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.css
More file actions
149 lines (124 loc) · 1.78 KB
/
screen.css
File metadata and controls
149 lines (124 loc) · 1.78 KB
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
/* body */
* {
margin: 0px;
padding: 0px;
}
body {
margin: 1em 20%;
font-family: Helvetica, sans-serif;
}
em {
font-style: normal;
font-weight: bold;
}
/* header */
#header {
border-bottom: 5px solid #0cf;
}
h1 {
padding-left: 1em;
}
h1 a{
color: black;
text-decoration: none;
}
#subtitle {
font-size: 50%;
font-weight: normal;
}
/* menu */
#menu {
float: left;
margin-left: -200px;
padding: 1em;
z-index: -1;
}
#menu img{
border: none;
margin-left: -40px;
}
/* content */
#content {
padding-left: 1em;
border-left: 5px solid #0cf;
z-index: 1;
}
h2 {
padding-top: 1em;
margin-bottom: 1em;
border-bottom: 1px dashed #0ef;
}
h3 {
margin: 1em 0px;
padding-left: 0.5em;
border-left: 5px dashed #0af;
}
/* paragraphs */
ul, ol {
margin-left: 1em;
}
li {
margin-bottom: 0.2em;
}
p {
margin-top: 1em;
margin-bottom: 1em;
}
pre {
background: #f5f5f5;
padding: 0.3em;
}
code {
font-family: Monaco, monospace;
font-size: 90%;
}
/* tables */
table {
margin: 0.5em 0px;
border-collapse: collapse;
}
td {
border: 1px solid black;
padding: 0.1em;
}
/* footer */
#footer {
margin-top: 6em;
border-top: 1px dashed #0ef;
padding-top: 0.5em;
}
#term {
width: auto;
}
/* Mobile View */
@media (max-width: 800px) {
#menu img {
margin-left: -30px;
}
a {
padding: 4px; /* bigger area of click on mobile */
display: inline-block;
}
#menu > a {
padding: 0; /* logo */
}
body {
margin: 0;
border-left: 5px solid #0cf;
}
#menu {
float: none;
width: calc(100% - 20px);
border-bottom: 1px dashed #0ef;
margin: 0 10px 10px 10px;
overflow: hidden;
box-sizing: border-box;
}
#content {
padding: 10px;
border-left: none;
}
#term {
width: 100% !important;
}
}