-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (66 loc) · 885 Bytes
/
style.css
File metadata and controls
69 lines (66 loc) · 885 Bytes
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
body{
font-family: Lucida Grande, Lucida, sans-serif;
font-size: 13px;
margin: 10px 30px;
color:#444;
}
a{
text-decoration:none;
color:#00A;
}
a:hover{
// color:black;
text-shadow: #555 0px 0px 12px;
}
h3{
margin-top:5px;
margin-bottom:5px;
}
.container{
text-align:center;
}
svg{
/*width:90%;*/
}
.diagram, .plot{
-moz-border-radius:6px;
-webkit-border-radius:6px;
}
.diagram{
background-color:#FAFAFA;
border:solid 2px #DDD;
}
.plot{
background-color:#FAFAFF;
border:solid 2px #DDF;
}
pre, code{
color:#000;
background-color:#F7F7F7;
-moz-border-radius:3px;
-webkit-border-radius:3px;
}
pre{
padding:6px 10px;
width:550px;
overflow:auto;
border: 1px dotted #DDD;
}
code{
padding:0px 4px;
}
ul{
padding-left:25px;
}
li{
list-style-type:none;
padding-bottom:5px;
}
li li{
padding:0px;
}
@media print{
input[type=button]{
visibility:hidden;
}
}