blob: 81894f4f9d1433704c62286dab57dd3fee6ce29b (
plain)
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
|
body {
font-family: 'Source Sans Pro';
background: #222;
color: #f5f5f5;
max-width: 780px;
margin-right: auto;
margin-left: auto;
}
p {
margin-top: 5px;
margin-bottom: 5px;
font-size: 1em;
}
#screen {
top: 0; right: 0; left: 0; bottom: 0;
}
.right { float: right;}
.message {
background: #333;
margin-top: .5em;
padding: .5em;
border-radius: 5px;
}
img {
max-width: 100%;
}
img.small {
vertical-align: top;
width: 25px;
height: 25px;
margin-right: .2em;
border-radius: 3px;
}
a {
color: cyan;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
pre {
color: violet;
width: 100%;
display: block;
}
code {
display: inline-block;
vertical-align: bottom;
}
code, pre {
overflow: auto;
word-break: break-all;
word-wrap: break-word;
white-space: pre;
white-space: -moz-pre-wrap;
white-space: pre-wrap;
white-space: pre\9;
}
textarea, input {
background: #222;
padding: .5em;
color: #f5f5f5;
border: none;
border-radius: 5px;
}
textarea {
width: 100%;
}
button {
display: inline-block;
padding: 2px 6px;
margin: .2em .2em .2em 0em;
font-size: 14px;
line-height: 20px;
color: #d5d5d5;
text-align: center;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
vertical-align: middle;
cursor: pointer;
background-color: #222;
border: 1px solid #222;
border-radius: 4px;
}
button:hover,
button:focus,
button:active {
color: white;
background-color: black;
}
button.active {
background-color: #111;
}
|