-
Notifications
You must be signed in to change notification settings - Fork 2
/
ephemeris.css
85 lines (72 loc) · 1.51 KB
/
ephemeris.css
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
background-color: #18171c;
color: #ffffff;
/* http://cssfontstack.com/ */
font-family: Baskerville, "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif;
}
/* Make highlighted selections hot pink */
::selection {
background: #fe57a1;
}
::-moz-selection { /* dammit mozilla */
background: #fe57a1;
}
table {
margin-top: 75px;
width: 1px;
margin-left: auto;
margin-right: auto;
}
/* Positions that haven't changed since yesterday are semitransparent */
tr {
opacity: 0.2;
text-align: right;
}
.changed {
opacity: 1;
}
/* Just some room to breathe */
td {
padding-left: 2px;
padding-right: 2px;
}
/* Unicode zodiac symbols aren't uniform width, so we center them to look nice */
.sign {
text-align: center;
}
/* This spinner floats independently of the page elements, above the galaxy */
#spinner {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
/* Floats under the spinner, effectively the page background */
#galaxy {
transition: opacity 16s linear;
-webkit-transition: opacity 16s linear; /* dammit webkit */
position: fixed;
top: 0;
left: 0;
z-index: -2;
}
/* By adding or removing this class we trigger CSS transitions */
.hidden {
opacity: 0;
}
#content, #spinner {
transition: opacity 0.5s linear;
-webkit-transition: opacity 0.5s linear; /* dammit webkit */
}
#content {
font-size: x-large;
line-height: 1.4em;
width: 100%;
text-align: center;
}
#info {
margin-top: 25px;
font-size: medium;
}