~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to resources/css/helioviewer-base.css

  • Committer: V. Keith Hughitt
  • Date: 2009-04-01 21:08:05 UTC
  • Revision ID: hughitt1@kore-20090401210805-372f7dgih07vxk42
nightly build 04-01-2009

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * Helioviewer Client Shared Styles
3
 
*/
4
 
/* HTML elements */
5
 
html, body {
6
 
    font-family: arial,helvetica,liberation sans,bitstream vera sans,freesans,clean,sans-serif;
7
 
}
8
 
button {
9
 
    cursor:pointer
10
 
}
11
 
strong {
12
 
    font-weight:bold;
13
 
}
14
 
 
15
 
/* Text styles */
16
 
a.dark {
17
 
    text-decoration: none;
18
 
    font-weight: bold;
19
 
    color: #262424;
20
 
    }
21
 
a.dark:hover {
22
 
    color: #d18f61;
23
 
    }
24
 
a.light {
25
 
    cursor: pointer;
26
 
    text-decoration: none;
27
 
    font-weight: bold;
28
 
    color: #E8E8E8;
29
 
}
30
 
a.light:hover {
31
 
    color: #d18f61;
32
 
}
33
 
 
34
 
/* Viewport */
35
 
#helioviewer-viewport {
36
 
    background-color: #000000;
37
 
    color: #FFFFFF;
38
 
    overflow: hidden;
39
 
    z-index: 0;
40
 
    padding: 0;
41
 
    position:relative;
42
 
    width:100%;
43
 
    height:100%;
44
 
    left: 0px;
45
 
    top:0px;
46
 
}
47
 
 
48
 
/* This is what actually moves */
49
 
#moving-container {
50
 
  position: absolute;
51
 
  z-index: 0;
52
 
  left: 0px;
53
 
  top: 0px;
54
 
}
55
 
 
56
 
/* Tile layer */
57
 
.tile-layer-container {
58
 
    position: absolute;
59
 
}
60
 
 
61
 
.tile
62
 
{
63
 
    border: 0px;
64
 
    margin: 0;
65
 
    padding: 0;
66
 
    position: absolute;
67
 
    top: 0px;
68
 
    left: 0px;
69
 
    display: block;
70
 
    overflow: visible;
71
 
    -moz-user-select: none;
72
 
}
73
 
 
74
 
/* Mouse coordinates */
75
 
#mouse-coords {
76
 
    background: transparent;
77
 
    color: white;
78
 
    font-size: 1em;
79
 
    font-weight: 600;
80
 
    width: 12em;
81
 
    position: absolute;
82
 
    top: 0;
83
 
    left: -12em;
84
 
    text-align: right;
85
 
}
86
 
 
87
 
#mouse-coords-x, #mouse-coords-y {
88
 
    width: 40%;
89
 
    display: inline-block;
90
 
}
 
 
b'\\ No newline at end of file'