-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (110 loc) · 1.9 KB
/
style.css
File metadata and controls
111 lines (110 loc) · 1.9 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
* {
page-break-after:auto;
user-select:none;
-moz-user-select: none;
-ms-user-select:none;
-webkit-user-select: none;
}
html {
font-family:sans-serif;
font-size:1em;
line-height:1em;
background:#eee;
color:black;
}
body {
display:flex;
flex-direction:column;
text-align:center;
align-items:center;
}
#input {
width:100%;
max-width:40em;
margin-bottom:10px;
user-select:text;
-ms-user-select:text;
-moz-user-select:text;
-webkit-user-select:text;
}
#output {
margin:.5em;
padding:0;
list-style-type:none;
font-size:1.5em;
cursor:default;
}
#output li {
page-break-inside:avoid;
min-height:1.2em;
line-height:1.4em;
user-select:none;
}
#fileform {
margin-bottom:10px;
}
#newfile {
user-select:text;
-ms-user-select:text;
-moz-user-select:text;
-webkit-user-select:text;
}
#weight {
width:25em;
margin-bottom:10px;
}
.redacted {
background:black;
cursor:pointer;
color:#000;
color:rgba(255,255,255,0);
}
.show, .redacted:hover {
color:#000;
color:rgba(255,255,255,1);
transition-duration: 50ms;
-ms-transition-duration: 50ms;
-moz-transition-duration: 50ms;
-o-transition-duration: 50ms;
-webkit-transition-duration: 50ms;
}
.hide {display:none;}
#toggleui {
background:none;
border:none;
margin:0;
padding:0;
cursor: pointer;
font-size:1.5em;
color:#999;
}
#toggleui:hover {color:black;}
#toggleui:focus {outline:0;}
footer a {
font-family:monospace;
color:#aaa;
line-height:2em;
}
@media print {
html,body {
height:99%;
background:white;
}
#instructions {display:none;}
#input {display:none;}
#fileform {display:none;}
#weight {display:none;}
#toggleui {display:none;}
footer {display:none;}
#output {
font-family:arial;
font-size:10pt;
}
#output li {line-height:15pt;}
.redacted {
background-color:white;
color:#fff;
color:rgba(0,0,0,0);
border-bottom:1px solid black;
}
}