This repository was archived by the owner on May 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathaeropython.css
More file actions
161 lines (140 loc) · 3.78 KB
/
Copy pathaeropython.css
File metadata and controls
161 lines (140 loc) · 3.78 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* This template is inspired in the one used by Lorena Barba
in the numerical-mooc repository: https://github.com/numerical-mooc/numerical-mooc
We thank her work and hope you also enjoy the look of the notobooks with this style */
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro|Josefin+Sans:400,700,400italic|Ubuntu+Condensed' rel='stylesheet' type='text/css'>
El estilo se ha aplicado =)
<style>
#notebook_panel { /* main background */
background: #f7f7f7;
}
div.cell { /* set cell width */
width: 900px;
}
div #notebook { /* centre the content */
background: #fff; /* white background for content */
width: 950px;
margin: auto;
padding-left: 0em;
}
#notebook li { /* More space between bullet points */
margin-top:0.7em;
}
/* draw border around running cells */
div.cell.border-box-sizing.code_cell.running {
border: 1px solid #111;
}
/* Put a solid color box around each cell and its output, visually linking them*/
div.cell.code_cell {
font-family: 'Source Sans Pro', sans-serif;
background-color: rgb(256,256,256);
font-size: 110%;
border-radius: 0px;
padding: 0.5em;
margin-left:1em;
margin-top: 1em;
}
div.text_cell_render{
font-family: 'Josefin Sans', serif;
line-height: 145%;
font-size: 125%;
font-weight: 500;
width:750px;
margin-left:auto;
margin-right:auto;
}
/* Formatting for header cells */
.text_cell_render h1, .text_cell_render h2, .text_cell_render h3,
.text_cell_render h4, .text_cell_render h5 {
font-family: 'Ubuntu Condensed', sans-serif;
}
/*
.text_cell_render h1 {
font-family: Flux, 'Ubuntu Condensed', serif;
font-style:regular;
font-weight: 400;
font-size: 30pt;
text-align: center;
line-height: 100%;
color: #335082;
margin-bottom: 0.5em;
margin-top: 0.5em;
display: block;
}
*/
.text_cell_render h1 {
font-weight: 600;
font-size: 35pt;
line-height: 100%;
color: #000000;
margin-bottom: 0.1em;
margin-top: 0.3em;
display: block;
}
.text_cell_render h2 {
margin-top:16px;
font-size: 27pt;
font-weight: 550;
margin-bottom: 0.1em;
margin-top: 0.3em;
font-style: regular;
color: #2c6391;
}
.text_cell_render h3 {
font-size: 20pt;
font-weight: 550
text-align: left;
margin-bottom: 0.1em;
margin-top: 0.3em;
font-style: regular;
color: #387eb8;
}
.text_cell_render h4 { /*Use this for captions*/
font-size: 18pt;
font-weight: 450
text-align: left;
margin-bottom: 0.1em;
margin-top: 0.3em;
font-style: regular;
color: #5797cc;
}
.text_cell_render h5 { /*Use this for small titles*/
font-size: 18pt;
font-weight: 550;
color: rgb(163,0,0);
font-style: italic;
margin-bottom: .1em;
margin-top: 0.8em;
display: block;
color: #b21c0d;
}
.text_cell_render h6 { /*use this for copyright note*/
font-family: 'Ubuntu Condensed', sans-serif;
font-weight: 300;
font-size: 14pt;
line-height: 100%;
color: #252525;
text-align: right;
margin-bottom: 1px;
margin-top: 1px;
}
.CodeMirror{
font-family: 'Duru Sans', sans-serif;
font-size: 100%;
}
</style>
<script>
MathJax.Hub.Config({
TeX: {
extensions: ["AMSmath.js"],
equationNumbers: { autoNumber: "AMS", useLabelIds: true}
},
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
},
displayAlign: 'center', // Change this to 'center' to center equations.
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 4}}
}
});
</script>