blob: d3ab25276afda986c262fd77dfaddfaff7405cd4 (
plain)
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
|
/*
Placeholder for custom user CSS
mainly to be overridden in profile/static/custom/custom.css
This will always be an empty file in IPython
*/
.input_area {
width: 90%;
}
.code_cell {
position: relative;
}
.question {
position: absolute;
top: 5%;
right: 4%;
display: inline;
width: 30px;
text-align: center;
text-decoration: none;
color: #ffffff;
-webkit-transition: all .5s ease-out;
-moz-transition: all .5s ease-out;
-o-transition: all .5s ease-out;
transition: all .5s ease-out;
}
.question:hover {
text-decoration: none;
background: #ffffff;
color: #333333;
}
.comment-frame {
width: 100%;
height: 250px;
border: none;
}
/* hiding running/custom tabs */
#running, #clusters {
display: none;
}
/* padding for the branding div */
.navbar .container {
padding-top: 10px;
padding-bottom: 10px;
}
|