-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
78 lines (65 loc) · 971 Bytes
/
styles.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
html, body
{
font-size: 1em;
font-family: sans-serif;
color: #000000;
}
a
{
text-decoration: none;
color: #0000ff;
}
a:hover
{
text-decoration: underline;
}
div#title
{
padding: 0.5em 1.5em;
color: #a000ff;
font-size: 320%;
font-weight: bold;
}
div#footer
{
font-size: 80%;
}
body.tutorial div#footer
{
text-align: center;
}
div.step
{
margin: 1em;
padding: 0.5em;
border: #888 dashed 2px;
}
div.step div
{
margin: 1em;
}
div.terminal
{
background-color: black;
padding: 0.2em 0.5em;
}
div.terminal div
{
color: white;
font-family: monospace;
white-space: pre-wrap;
margin: 0;
padding: 0.3em 0;
border-top: 1px gray dashed;
}
div.terminal div:first-child { border-top: 0; }
div.terminal div.hilight
{
font-weight: bold;
background-color: #222;
color: yellow;
}
span.ls_dir { color: blue; }
span.ls_txt { color: green; }
span.ls_img { color: purple; }
img { vertical-align: middle; }