~ubuntu-branches/ubuntu/trusty/qiime/trusty

« back to all changes in this revision

Viewing changes to web/home_static/nih-cloud-apr2012/NIHCloudDemo_Fast_files/page.css

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2013-06-17 18:28:26 UTC
  • mfrom: (9.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20130617182826-376az5ad080a0sfe
Tags: 1.7.0+dfsg-1
Upload preparations done for BioLinux to Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * Primary styles
3
 
 *
4
 
 * Author: IPython Development Team
5
 
 */
6
 
 
7
 
 
8
 
body {
9
 
    background-color: white;
10
 
    /* This makes sure that the body covers the entire window and needs to
11
 
       be in a different element than the display: box in wrapper below */
12
 
    position: absolute;
13
 
    left: 0px;
14
 
    right: 0px;
15
 
    top: 0px;
16
 
    bottom: 0px;
17
 
    overflow: visible;
18
 
}
19
 
 
20
 
 
21
 
div#header {
22
 
    /* Initially hidden to prevent FLOUC */
23
 
    display: none;
24
 
    position: relative;
25
 
    height: 40px;
26
 
    padding: 5px;
27
 
    margin: 0px;
28
 
    width: 100%;
29
 
}
30
 
 
31
 
span#ipython_notebook {
32
 
    position: absolute;
33
 
    padding: 2px 2px 2px 5px;
34
 
}
35
 
 
36
 
span#ipython_notebook h1 img {
37
 
    font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
38
 
    height: 24px;
39
 
    text-decoration:none;
40
 
    display: inline;
41
 
    color: black;
42
 
}
43
 
 
44
 
#site {
45
 
    width: 100%;
46
 
    display: none;
47
 
}
48
 
 
49
 
/* We set the fonts by hand here to override the values in the theme */
50
 
.ui-widget {
51
 
    font-family: "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
52
 
}
53
 
 
54
 
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
55
 
    font-family: "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
56
 
}
57
 
 
58
 
/* Smaller buttons */
59
 
.ui-button .ui-button-text {
60
 
    padding: 0.2em 0.8em;
61
 
    font-size: 77%;
62
 
}
63
 
 
64
 
input.ui-button {
65
 
    padding: 0.3em 0.9em;
66
 
}
67
 
 
68
 
span#login_widget {
69
 
    float: right;
70
 
}
71
 
 
72
 
.border-box-sizing {
73
 
    box-sizing: border-box;
74
 
    -moz-box-sizing: border-box;
75
 
    -webkit-box-sizing: border-box;
76
 
}
77