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
|
@font-face{
font-family: 'CMU Typewriter Text w';
src: url(/cmunbtl.woff);
}
.CTitle{
font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
font-variant-ligatures: none;
}
.TText{
font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
font-variant-ligatures: none;
}
a{
text-decoration:none;
}
a:link{
color:#1194FF;
}
a:visited{
color:#20ACFF;
}
a:hover{
color:#3FBFFF;
}
a:active{
color:#CCCCFF;
}
div.comment{
border:1px solid #CCC;
margin:1em;
}
div.author{
text-align:right;
padding-right:0.5em;
padding-bottom:0.5em;
}
div.floatingl{
left: 0px;
bottom: -10px;
position: fixed;
z-index: 10000;
}
div.floatingr{
right: 0px;
bottom: -10px;
position: fixed;
transform: rotateY(180deg);
z-index: 10000;
}
.fakebtn{display:inline-block;color:#000;padding:1px 6px 1px 6px;}
button{
border:none;
padding:0.5em 2em;
text-align:center;
-webkit-transition-duration:0.4s;
transition-duration:0.4s;
font-family: 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
font-variant-ligatures: none;
}
input[type="text"]{
border: none;
border-bottom: 2px solid;
outline: none !important;
background-color: rgba(0,0,0,0) !important;
font-family: 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
font-variant-ligatures: none;
}
textarea{
border:2px solid;
outline:none !important;
background-color:rgba(0,0,0,0) !important;
}
|