-
Notifications
You must be signed in to change notification settings - Fork 4
/
-toc.css
60 lines (52 loc) · 921 Bytes
/
-toc.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
html,body {
margin:0;
padding:0;
background:#fff;
color:#000;
}
body {
font:normal normal 12px/1.4 Helmet,FreeSans,sans-serif;
padding:2em;
}
p {margin:0 0 1em}
p::after {
content:"";
display:table;
clear:both;
}
select,
textarea {
margin:0;
padding:0;
cursor:auto;
font:inherit;
font-family:"Courier New",Courier,monospace;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
display:block;
background:#fff;
border:2px solid;
border-color:rgba(0,0,0,.4) rgba(255,255,255,.4) rgba(255,255,255,.4) rgba(0,0,0,.4);
}
select {
width:12em;
padding:.25em;
cursor:pointer;
}
textarea {
padding:.25em .35em;
height:20em;
width:49.5%;
float:left;
resize:vertical;
overflow:auto;
}
textarea + textarea {float:right}
@media (max-width:600px) {
textarea {
float:none;
width:100%;
}
textarea + textarea {margin-top:1em}
}