Mercurial > code > home > repos > light9
annotate static/style.css @ 1120:f36fd5bc44e5
fix effecteval output code
Ignore-this: 279d8a0be31656be42eaf0e2e6a44a74
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Fri, 13 Jun 2014 07:23:39 +0000 |
parents | a58e8408f563 |
children | 487f0877b7c6 |
rev | line source |
---|---|
531
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
1 body { |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
2 background: black; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
3 color: white; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
4 font-family: sans-serif; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
5 } |
1099
a58e8408f563
compact some css styles
Drew Perttula <drewp@bigasterisk.com>
parents:
1044
diff
changeset
|
6 h1 { |
a58e8408f563
compact some css styles
Drew Perttula <drewp@bigasterisk.com>
parents:
1044
diff
changeset
|
7 margin: 0; |
a58e8408f563
compact some css styles
Drew Perttula <drewp@bigasterisk.com>
parents:
1044
diff
changeset
|
8 } |
1044
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
9 |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
10 a { |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
11 color: rgb(97, 97, 255); |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
12 |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
13 } |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
14 |
531
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
15 .songs { |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
16 -moz-column-width:205px; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
17 -webkit-column-width:205px; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
18 } |
529 | 19 .songs button { |
531
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
20 display: inline-block; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
21 width: 200px; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
22 height: 50px; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
23 text-align: left; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
24 background: black; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
25 color: white; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
26 margin: 2px; |
1004
18885a10b119
asco style cleanup and button hover color change
drewp@bigasterisk.com
parents:
963
diff
changeset
|
27 font-size: 115%; |
529 | 28 } |
963
56218ce0fd37
asco song buttons now have links in them, for dragging
drewp@bigasterisk.com
parents:
938
diff
changeset
|
29 button a { |
1004
18885a10b119
asco style cleanup and button hover color change
drewp@bigasterisk.com
parents:
963
diff
changeset
|
30 color: white; |
963
56218ce0fd37
asco song buttons now have links in them, for dragging
drewp@bigasterisk.com
parents:
938
diff
changeset
|
31 } |
529 | 32 .songs button:hover { |
531
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
33 color: black; |
1004
18885a10b119
asco style cleanup and button hover color change
drewp@bigasterisk.com
parents:
963
diff
changeset
|
34 background: #333; |
531
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
35 } |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
36 |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
37 .commands button { |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
38 background: black; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
39 color: white; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
40 padding: 20px |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
41 } |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
42 .commands button.active { |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
43 background: #1C4054; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
44 } |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
45 .key { |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
46 color: #888; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
47 } |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
48 .currentSong button { |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
49 background: #55A5C9; |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
50 } |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
51 .timeRow { |
e8f6722a3881
ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents:
529
diff
changeset
|
52 margin: 14px; |
938
c2faa69099e6
asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
drewp@bigasterisk.com
parents:
531
diff
changeset
|
53 } |
c2faa69099e6
asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
drewp@bigasterisk.com
parents:
531
diff
changeset
|
54 .stalled { |
c2faa69099e6
asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
drewp@bigasterisk.com
parents:
531
diff
changeset
|
55 opacity: .5; |
1007
9b1df7c06ec2
asco bigger numbers so 3 year old users can find them
drewp@bigasterisk.com
parents:
1004
diff
changeset
|
56 } |
9b1df7c06ec2
asco bigger numbers so 3 year old users can find them
drewp@bigasterisk.com
parents:
1004
diff
changeset
|
57 .num { |
1044
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
58 font-size: 27px; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
59 color: rgb(233, 122, 122); |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
60 display: inline-block; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
61 } |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
62 |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
63 .dropTarget { |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
64 padding: 5px; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
65 border: 2px dashed gray; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
66 font-style: italic; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
67 color: rgb(78, 90, 107); |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
68 } |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
69 .twoColList { |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
70 -webkit-column-width: 24em; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
71 } |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
72 .twoColList > li { |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
73 margin-bottom: 13px; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
74 } |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
75 |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
76 .song { |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
77 color: rgb(85, 221, 85); |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
78 } |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
79 .song:before { |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
80 |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
81 content: "♫"; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
82 color: black; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
83 background: rgb(85, 221, 85); |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
84 border-radius: 30%; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
85 } |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
86 |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
87 .effect:before { |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
88 content: "⛖"; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
89 } |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
90 |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
91 .song:before, .effect:before { |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
92 margin-right: 3px; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
93 text-decoration: none !important; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
94 font-size: 140%; |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
95 |
a2081b9adfe4
effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents:
1007
diff
changeset
|
96 } |