##// END OF EJS Templates
replace b by strong for semantic, more change in boilerplate
Matthias BUSSONNIER -
Show More
@@ -1,79 +1,74 b''
1 1 /**
2 2 * HTML5 ✰ Boilerplate
3 3 *
4 4 * style.css contains a reset, font normalization and some base styles.
5 5 *
6 6 * Credit is left where credit is due.
7 7 * Much inspiration was taken from these projects:
8 8 * - yui.yahooapis.com/2.8.1/build/base/base.css
9 9 * - camendesign.com/design/
10 10 * - praegnanz.de/weblog/htmlcssjs-kickstart
11 11 */
12 12
13 13
14 14 /**
15 15 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
16 16 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
17 17 * html5doctor.com/html-5-reset-stylesheet/
18 18 */
19 19
20 20 html, body, div, span, object, iframe,
21 21 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
22 22 abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
23 23 small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
24 24 fieldset, form, label, legend,
25 25 table, caption, tbody, tfoot, thead, tr, th, td,
26 26 article, aside, canvas, details, figcaption, figure,
27 27 footer, header, hgroup, menu, nav, section, summary,
28 28 time, mark, audio, video {
29 29 margin: 0;
30 30 padding: 0;
31 31 border: 0;
32 32 font-size: 100%;
33 33 font: inherit;
34 34 vertical-align: baseline;
35 35 }
36 36
37 37 article, aside, details, figcaption, figure,
38 38 footer, header, hgroup, menu, nav, section {
39 39 display: block;
40 40 }
41 41
42 42 blockquote, q { quotes: none; }
43 43
44 44 blockquote:before, blockquote:after,
45 45 q:before, q:after { content: ""; content: none; }
46 46
47 47 ins { background-color: #ff9; color: #000; text-decoration: none; }
48 48
49 49 mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }
50 50
51 51 del { text-decoration: line-through; }
52 52
53 53 abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
54 54
55 55 table { border-collapse: collapse; border-spacing: 0; }
56 56
57 57 hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
58 58
59 59 input, select { vertical-align: middle; }
60 60
61 61
62 62 /**
63 63 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
64 64 */
65 65
66 66 body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */
67 67 select, input, textarea, button { font:99% sans-serif; }
68 68
69 69 /* Normalize monospace sizing:
70 70 en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
71 71 pre, code, kbd, samp { font-family: monospace, sans-serif; }
72 72
73 i {
74 font-variant: italic;
75 }
76
77 b {
78 font-weight:bold;
79 }
73 em,i { font-style: italic; }
74 b,strong { font-weight: bold; }
@@ -1,81 +1,81 b''
1 1 {% extends page.html %}
2 2
3 3 {% block title %}IPython Dashboard{% end %}
4 4
5 5 {% block stylesheet %}
6 6 <link rel="stylesheet" href="{{static_url("css/projectdashboard.css") }}" type="text/css" />
7 7 <link rel="stylesheet" href="{{static_url("css/alternateuploadform.css") }}" type="text/css" />
8 8 {% end %}
9 9
10 10
11 11 {% block params %}
12 12
13 13 data-project={{project}}
14 14 data-base-project-url={{base_project_url}}
15 15 data-base-kernel-url={{base_kernel_url}}
16 16 data-read-only={{read_only}}
17 17
18 18 {% end %}
19 19
20 20
21 21 {% block site %}
22 22
23 23 <div id="main_app">
24 24
25 25 <div id="tabs">
26 26 <ul>
27 27 <li><a href="#tab1">Notebooks</a></li>
28 28 <li><a href="#tab2">Clusters</a></li>
29 29 </ul>
30 30
31 31 <div id="tab1">
32 32 {% if logged_in or not read_only %}
33 33 <div id="notebook_toolbar">
34 34 <form id='alternate_upload' class='alternate_upload' >
35 35 <span id="drag_info" style="position:absolute" >Drag files
36 onto the list, or <b>click here</b>, to import
36 onto the list, or <strong>click here</strong>, to import
37 37 notebooks.</span>
38 38 <input type="file" name="datafile" class="fileinput" multiple='multiple'>
39 39 </form>
40 40 <span id="notebook_buttons">
41 41 <button id="refresh_notebook_list" title="Refresh notebook list">Refresh</button>
42 42 <button id="new_notebook" title="Create new notebook">New Notebook</button>
43 43 </span>
44 44 </div>
45 45 {% end %}
46 46
47 47 <div id="notebook_list">
48 48 <div id="project_name"><h2>{{project}}</h2></div>
49 49 </div>
50 50 </div>
51 51 <div id="tab2">
52 52
53 53 <div id="cluster_toolbar">
54 54 <span id="cluster_list_info">IPython parallel computing clusters</span>
55 55
56 56 <span id="cluster_buttons">
57 57 <button id="refresh_cluster_list" title="Refresh cluster list">Refresh</button>
58 58 </span>
59 59 </div>
60 60
61 61 <div id="cluster_list">
62 62 <div id="cluster_header">
63 63 <span>profile</span>
64 64 <span>action</span>
65 65 <span title="Enter the number of engines to start or empty for default"># of engines</span>
66 66 <span>status</span>
67 67 </div>
68 68 </div>
69 69
70 70 </div>
71 71 </div>
72 72
73 73 </div>
74 74
75 75 {% end %}
76 76
77 77 {% block script %}
78 78 <script src="{{static_url("js/notebooklist.js") }}" type="text/javascript" charset="utf-8"></script>
79 79 <script src="{{static_url("js/clusterlist.js") }}" type="text/javascript" charset="utf-8"></script>
80 80 <script src="{{static_url("js/projectdashboardmain.js") }}" type="text/javascript" charset="utf-8"></script>
81 81 {% end %}
General Comments 0
You need to be logged in to leave comments. Login now