CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download

Python Data Science Handbook

Views: 92748
1
/* Copied from https://github.com/porterjamesj/crowsfoot */
2
3
@font-face {
4
font-family: 'icons';
5
src: url('../font/icons.eot?79801659');
6
src: url('../font/icons.eot?79801659#iefix') format('embedded-opentype'),
7
url('../font/icons.woff?79801659') format('woff'),
8
url('../font/icons.ttf?79801659') format('truetype'),
9
url('../font/icons.svg?79801659#icons') format('svg');
10
font-weight: normal;
11
font-style: normal;
12
}
13
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
14
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
15
/*
16
@media screen and (-webkit-min-device-pixel-ratio:0) {
17
@font-face {
18
font-family: 'icons';
19
src: url('../font/icons.svg?79801659#icons') format('svg');
20
}
21
}
22
*/
23
24
[class^="icon-"]:before, [class*=" icon-"]:before {
25
font-family: "icons";
26
font-style: normal;
27
font-weight: normal;
28
speak: none;
29
30
display: inline-block;
31
text-decoration: inherit;
32
width: 1em;
33
margin-right: .2em;
34
text-align: center;
35
/* opacity: .8; */
36
37
/* For safety - reset parent styles, that can break glyph codes*/
38
font-variant: normal;
39
text-transform: none;
40
41
/* fix buttons height, for twitter bootstrap */
42
line-height: 1em;
43
44
/* Animation center compensation - margins should be symmetric */
45
/* remove if not needed */
46
margin-left: .2em;
47
48
/* you can be more comfortable with increased icons size */
49
/* font-size: 120%; */
50
51
/* Uncomment for 3D effect */
52
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
53
}
54
55
.icon-stackoverflow:before { content: '\e032'; } /* '' */
56
.icon-twitter:before { content: '\e801'; } /* '' */
57
.icon-facebook:before { content: '\e802'; } /* '' */
58
.icon-rss:before { content: '\e800'; } /* '' */
59
.icon-mail-alt:before { content: '\f0e0'; } /* '' */
60
.icon-github:before { content: '\f113'; } /* '' */
61