-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnotebooks.css
More file actions
143 lines (115 loc) · 3.29 KB
/
notebooks.css
File metadata and controls
143 lines (115 loc) · 3.29 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
}
@font-face {
font-family: 'Risque';
font-style: normal;
font-weight: 400;
src: local('Risque'), local('Risque-Regular'), url(http://fonts.gstatic.com/s/risque/v4/iFA7a9Hk8IxDgPVBx7IE_Q.ttf) format('truetype');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(http://fonts.gstatic.com/s/roboto/v15/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
}
.emph {
color: #ff5503;
font-weight: 500;
}
/* pack func and objclass colors come from hcl(seq(90,360, length.out=4), c=80, l=80)*/
.pack {
color: #AC9CFF; /*#e41a1c*/
font-weight: 500;
}
.func { /*#984ea3;can just use `` instead*/
color: #00CBB6;
font-weight: 500;
}
.objclass {
color: #AAB400; /*#4daf4a; #FFC5D0*/
font-weight: 500;
}
body {
color: #7f7f7f;
}
p, ul, ol {
font-family: Roboto;
font-size: 100%;
}
pre {
box-sizing: border-box;
left: 0; /* This changes where the code chunk box actually starts */
/* padding: 10px 0 10px 60px; /* Change the last value here to move the text left or right */
position: relative;
width: 100%; /* This changes where the code chunk box ends on the right side */
font-size: 75%; /*changes output size; and comments*/
line-height: 1.2em; /* line spacing; default seems to be about 1.5 or more */
/*border: 10px solid #ff5500;*/ /*code block and results border*/
/*background-color:#ff5500;*/ /* results background*/
}
pre code.r {
line-height: 1.5em; /* line spacing; default seems to be about 1.5 or more */
}
#TOC{
font-size: 75%;
}
.table {
margin: 0 auto;
}
.tocify ul, .tocify li {
list-style: none;
margin: 0;
padding: 0;
border: none;
width: 100%;
line-height: 30px;
}
li.tocify-item.list-group-item.active {
background-color: rgb(97,151,213); /* background of current section in toc */
}
h1, h2, h3, h4, h5 {
color:rgb(97,151,213);
/* color:#B2001D; */ /* stan red*/
}
a href {
text-decoration: none;
color: #1e90ff;
}
/* background is used for the link underline in order to 'clear descenders', which wouldn't be a problem if you don't underline links like it's 1997. Setting to none here removes*/
a:link {
background: none;
color: #1e90ff;
}
/* make smaller font to go along with overall regular sized font above */
.sidenote, .marginnote {
font-size: 75%;
}
/* fix of ridiculous default buttons */
.btn-default {
background: #f0f8ff;
font-family: 'Open Sans';
color: rgb(97,151,213);
text-decoration: none;
width: 20%;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
border: 3px solid ;
border-color: rgba(97,151,213, .75);
/*border: 3px solid rgb(97,151,213);
/*background:rgba(227,227,227,0.5);*/
/* -webkit-box-shadow: #B3B3B3 5px 5px 5px;
-moz-box-shadow: #B3B3B3 5px 5px 5px;
box-shadow: #B3B3B3 5px 5px 5px; */
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
color: #ffffff;
background-color: #282828;
border-color: #232323;
}