Skip to content

Commit e128704

Browse files
committed
First Commit
0 parents  commit e128704

File tree

4 files changed

+28331
-0
lines changed

4 files changed

+28331
-0
lines changed

custom.css

+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/*
2+
Placeholder for custom user CSS
3+
4+
mainly to be overridden in profile/static/custom/custom.css
5+
6+
This will always be an empty file in IPython
7+
*/
8+
9+
.reveal h1,
10+
.reveal h2 {
11+
margin: 0 0 22px 0;
12+
/*color: #e2e2e2;*/
13+
color: #f08;
14+
font-family: "Proxima Nova","League Gothic", Impact, sans-serif;
15+
line-height: 0.8em;
16+
letter-spacing: 0.02em;
17+
text-transform: uppercase;
18+
text-shadow: none;
19+
text-align: left;
20+
}
21+
22+
h3,
23+
h4,
24+
h5,
25+
h6 {
26+
margin: 0 0 22px 0;
27+
/*color: #e2e2e2;*/
28+
color: #151516;
29+
font-family: "Proxima Nova","League Gothic", Impact, sans-serif;
30+
line-height: 0.8em;
31+
letter-spacing: 0.02em;
32+
text-shadow: none;
33+
text-align: left;}
34+
35+
em {
36+
color:#f08;
37+
}
38+
39+
strong {
40+
background: rgba(81, 190, 122,.3);
41+
color: #149c47;
42+
}
43+
44+
table {
45+
font-size: 12px;
46+
color:#151515;
47+
margin: 45px;
48+
width: 480px;
49+
text-align: left;
50+
border-collapse: collapse;
51+
border-color: #fff !important;
52+
}
53+
54+
th {
55+
padding: 6px;
56+
font-weight: normal !important;
57+
font-size: 13px;
58+
color: #ffffff;
59+
background: #336688;
60+
}
61+
62+
tbody tr th {
63+
padding: 6px;
64+
font-weight: normal !important;
65+
font-size: 12px;
66+
color: #ffffff;
67+
background: #5293be;
68+
}
69+
70+
/*tr:nth-child(even) {
71+
padding: 5px;
72+
background: #CFCFCF;
73+
border-top: 1px solid #ffffff;
74+
color: #669;
75+
}
76+
77+
tr:nth-child(odd) {
78+
padding: 5px;
79+
background: #EDEDED;
80+
border-top: 1px solid #ffffff;
81+
color: #669;
82+
}*/
83+
84+
td {
85+
padding: 5px;
86+
border-top: 1px solid #ffffff;
87+
color: #151516;
88+
}
89+
90+
91+
92+
tbody tr:hover td {
93+
background: #d0dafd;
94+
}
95+
96+
.rendered_html tr, .rendered_html td {
97+
border: 1px solid #fff !important;
98+
}
99+
100+
.rendered_html th {
101+
border: 2px solid #fff !important;
102+
}
103+
104+
tr:nth-child(even) {
105+
padding: 5px;
106+
background: #ffffff;
107+
border-top: 1px solid #95B3D7;
108+
color: #669;
109+
}
110+
tr:nth-child(odd) {
111+
padding: 5px;
112+
background: #DCE6F1;
113+
border-top: 1px solid #95B3D7;
114+
color: #669;
115+
}
116+
117+

0 commit comments

Comments
 (0)