forked from hackmud-dtr/hackmud-dtr.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhackmud.css
95 lines (92 loc) · 1.76 KB
/
hackmud.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
@font-face {
font-family: 'white_rabbitregular';
src: url('assets/whiterabbit-webfont.woff2') format('woff2'),
url('assets/whiterabbit-webfont.woff') format('woff'),
url('assets/whiterabbit-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
a[href],
a[href]:active,
a[href]:visited,
a[href]:link {
color:#83B0F2;
}
div.chat {
border-top:1px dashed #83B0F2;
border-bottom:1px dashed #83B0F2;
padding-top:1em;
padding-bottom:1em;
}
div.script {
padding-top:0;
padding-bottom:0;
}
img {
border:2px solid #83B0F2;
}
body {
background-color:#101215;
word-wrap:break-word;
white-space:pre-wrap;
color:#83B0F2;
font-family:white_rabbitregular,monospace;
line-height:1.1;
background-image: repeating-linear-gradient(#0e0e0e, #0e0e0e 2px, #101215 2px, #101215 4px);
background-size:100% 4px;
}
table,
tr,
td {
border-collapse:collapse;
}
td {
padding:1em;
max-width:500px;
word-wrap: break-word;
white-space:pre-wrap;
color:#83B0F2;
font-family:white_rabbitregular,monospace;
line-height:1.1;
vertical-align:top;
border:1px solid #83B0F2;
border-collapse:collapse;
}
table.nopadding td,table.nopadding th,td.nopadding {
padding:0;
}
table.noborder td,table.noborder th,td.noborder {
border-width:0;
}
table.wide td {
max-width:none;
}
td.topborder {
border-width:0;
border-top:1px dashed #83B0F2;
}
td.solidtopborder {
border-width:0;
border-top:1px solid #83B0F2;
}
td.dashed {
border-left:1px dashed #83B0F2;
border-right:1px dashed #83B0F2;
text-align:center;
}
.good_end {
background-color:rgba(255,0,255,0.1);
}
.special_end {
background-color:rgba(0,255,0,0.2);
}
.dead_end {
background-color:rgba(0,255,255,.1);
}
.bad_end {
background-color:rgba(255,0,0,.1);
}
.selected {
border:5px solid yellow;
padding:0 1em 1em 1em;
}