annotate web/style.css @ 2421:ac55319a2eac

don't drop patches that arrive before we get WS connected
author drewp@bigasterisk.com
date Tue, 21 May 2024 16:10:39 -0700
parents 4556eebe5d73
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
1 body {
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
2 background: black;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
3 color: white;
2374
9d47c44d4ae4 experimental tiled-layout home page
drewp@bigasterisk.com
parents: 2127
diff changeset
4 --color-background: black;
9d47c44d4ae4 experimental tiled-layout home page
drewp@bigasterisk.com
parents: 2127
diff changeset
5 --color-text: white;
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
6 font-family: sans-serif;
531
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
7 }
1099
a58e8408f563 compact some css styles
Drew Perttula <drewp@bigasterisk.com>
parents: 1044
diff changeset
8 h1 {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
9 margin: 0;
1099
a58e8408f563 compact some css styles
Drew Perttula <drewp@bigasterisk.com>
parents: 1044
diff changeset
10 }
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
11
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
12 h2 {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
13 margin: 0;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
14 padding: 0;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
15 font-size: 100%;
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
16 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
17
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
18 ul {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
19 margin: 0;
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
20 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
21
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
22 a {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
23 color: rgb(97, 97, 255);
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
24 }
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
25
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
26 input[type="text"] {
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
27 border: 1px inset rgb(177, 177, 177);
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
28 background: rgb(230, 230, 230);
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
29 padding: 3px;
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
30 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
31
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
32 #status {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
33 position: fixed;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
34 bottom: 0px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
35 right: 0px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
36 background: rgba(0, 0, 0, 0.47);
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
37 padding-left: 6px;
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
38 }
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
39
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
40 .songs {
2114
758ce4dfbd2f asco layout
drewp@bigasterisk.com
parents: 2112
diff changeset
41 column-width: 17em;
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
42 }
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
43
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
44 .songs button {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
45 display: inline-block;
2114
758ce4dfbd2f asco layout
drewp@bigasterisk.com
parents: 2112
diff changeset
46 width: 100%;
758ce4dfbd2f asco layout
drewp@bigasterisk.com
parents: 2112
diff changeset
47 min-height: 50px;
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
48 text-align: left;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
49 background: black;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
50 color: white;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
51 margin: 2px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
52 font-size: 130% !important;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
53 font-weight: bold;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
54 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
55 1px 1px 0 #000;
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
56 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
57
963
56218ce0fd37 asco song buttons now have links in them, for dragging
drewp@bigasterisk.com
parents: 938
diff changeset
58 button a {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
59 color: white;
963
56218ce0fd37 asco song buttons now have links in them, for dragging
drewp@bigasterisk.com
parents: 938
diff changeset
60 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
61
529
1156d3531327 new ascoltami2, using gstreamer
drewp@bigasterisk.com
parents:
diff changeset
62 .songs button:hover {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
63 color: black;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
64 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
65 }
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
66
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
67 .commands button {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
68 background: black;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
69 color: white;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
70 padding: 20px;
531
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
71 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
72
531
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
73 .commands button.active {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
74 background: #a90707;
531
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
75 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
76
531
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
77 .key {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
78 color: #888;
531
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
79 }
1954
3ae1e7f8db23 vidref playback smoothness, autodelete short clips, manual-delete clips, vidref keyboard shortcuts
Drew Perttula <drewp@bigasterisk.com>
parents: 1937
diff changeset
80
3ae1e7f8db23 vidref playback smoothness, autodelete short clips, manual-delete clips, vidref keyboard shortcuts
Drew Perttula <drewp@bigasterisk.com>
parents: 1937
diff changeset
81 div.keys {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
82 margin-top: 10px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
83 padding: 5px;
1954
3ae1e7f8db23 vidref playback smoothness, autodelete short clips, manual-delete clips, vidref keyboard shortcuts
Drew Perttula <drewp@bigasterisk.com>
parents: 1937
diff changeset
84 }
3ae1e7f8db23 vidref playback smoothness, autodelete short clips, manual-delete clips, vidref keyboard shortcuts
Drew Perttula <drewp@bigasterisk.com>
parents: 1937
diff changeset
85
3ae1e7f8db23 vidref playback smoothness, autodelete short clips, manual-delete clips, vidref keyboard shortcuts
Drew Perttula <drewp@bigasterisk.com>
parents: 1937
diff changeset
86 .keyCap {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
87 color: #ccc;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
88 background: #525252;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
89 display: inline-block;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
90 border: 1px outset #b3b3b3;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
91 padding: 2px 3px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
92 margin: 3px 0;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
93 font-size: 16px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
94 box-shadow: 0.9px 0.9px 0px 2px #565656;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
95 border-radius: 2px;
1954
3ae1e7f8db23 vidref playback smoothness, autodelete short clips, manual-delete clips, vidref keyboard shortcuts
Drew Perttula <drewp@bigasterisk.com>
parents: 1937
diff changeset
96 }
3ae1e7f8db23 vidref playback smoothness, autodelete short clips, manual-delete clips, vidref keyboard shortcuts
Drew Perttula <drewp@bigasterisk.com>
parents: 1937
diff changeset
97
531
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
98 .currentSong button {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
99 background: #a90707;
531
e8f6722a3881 ascoltami2 web one is in good shape. main missing piece is the auto-go button
drewp@bigasterisk.com
parents: 529
diff changeset
100 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
101
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
102
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
103 .stalled {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
104 opacity: 0.5;
1007
9b1df7c06ec2 asco bigger numbers so 3 year old users can find them
drewp@bigasterisk.com
parents: 1004
diff changeset
105 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
106
1007
9b1df7c06ec2 asco bigger numbers so 3 year old users can find them
drewp@bigasterisk.com
parents: 1004
diff changeset
107 .num {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
108 font-size: 27px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
109 color: rgb(233, 122, 122);
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
110 display: inline-block;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
111 font-size: 200% !important;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
112 font-weight: bold;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
113 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
114 1px 1px 0 #000;
2114
758ce4dfbd2f asco layout
drewp@bigasterisk.com
parents: 2112
diff changeset
115 float: left;
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
116 }
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
117
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
118 .dropTarget {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
119 padding: 10px 5px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
120 border: 2px dashed gray;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
121 font-style: italic;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
122 color: rgb(78, 90, 107);
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
123 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
124
1162
487f0877b7c6 EE can now limit to showing just one song
drewp@bigasterisk.com
parents: 1099
diff changeset
125 .dropTarget:hover {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
126 background: #1f1f0d;
1162
487f0877b7c6 EE can now limit to showing just one song
drewp@bigasterisk.com
parents: 1099
diff changeset
127 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
128
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
129 .twoColList {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
130 -webkit-column-width: 24em;
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
131 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
132
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
133 .twoColList > li {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
134 margin-bottom: 13px;
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
135 }
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
136
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
137 .song {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
138 color: rgb(85, 221, 85);
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
139 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
140
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
141 .song:before {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
142 content: "♫";
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
143 color: black;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
144 background: rgb(85, 221, 85);
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
145 border-radius: 30%;
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
146 }
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
147
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
148 .effect:before {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
149 content: "â›–";
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
150 }
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
151
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
152 .song:before,
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
153 .effect:before {
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
154 margin-right: 3px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
155 text-decoration: none !important;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
156 font-size: 140%;
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
157 }
1044
a2081b9adfe4 effecteval now takes dropped subs and makes new effects out of them
Drew Perttula <drewp@bigasterisk.com>
parents: 1007
diff changeset
158
1226
1ea0629a7fe6 ascoltami mini mode
Drew Perttula <drewp@bigasterisk.com>
parents: 1219
diff changeset
159 /* ascoltami mini mode */
2116
f38ecdcd368e better asco mini mode
drewp@bigasterisk.com
parents: 2114
diff changeset
160 @media (max-width: 600px) {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
161 .songs {
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
162 column-width: 15em;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
163 }
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
164 .songs button {
2116
f38ecdcd368e better asco mini mode
drewp@bigasterisk.com
parents: 2114
diff changeset
165 font-size: initial !important;
f38ecdcd368e better asco mini mode
drewp@bigasterisk.com
parents: 2114
diff changeset
166 min-height: 35px !important;
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
167 width: 100%;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
168 margin: initial;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
169 border-width: 1px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
170 margin-bottom: 2px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
171 }
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
172 .num {
2116
f38ecdcd368e better asco mini mode
drewp@bigasterisk.com
parents: 2114
diff changeset
173 font-size: initial !important;
f38ecdcd368e better asco mini mode
drewp@bigasterisk.com
parents: 2114
diff changeset
174 padding: initial !important;
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
175 }
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
176 .commands button {
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
177 padding: 5px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
178 }
1226
1ea0629a7fe6 ascoltami mini mode
Drew Perttula <drewp@bigasterisk.com>
parents: 1219
diff changeset
179 }
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
180
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
181 /* subserver */
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
182 .vari {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
183 color: white;
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
184 }
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
185
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
186 .sub {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
187 display: inline-block;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
188 vertical-align: top;
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
189 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
190
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
191 .sub.local {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
192 background: rgb(44, 44, 44);
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
193 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
194
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
195 .sub img {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
196 width: 196px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
197 min-height: 40px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
198 margin: 0 6px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
199 background: -webkit-gradient(
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
200 linear,
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
201 right top,
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
202 left bottom,
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
203 color-stop(0, rgb(121, 120, 120)),
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
204 color-stop(1, rgb(54, 54, 54))
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
205 );
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
206 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
207
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
208 .chase {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
209 background: rgb(75, 57, 72);
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
210 }
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
211
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
212 a button {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
213 font-size: 60%;
1218
ab72450ef4b1 style consolidation
Drew Perttula <drewp@bigasterisk.com>
parents: 1212
diff changeset
214 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
215
1219
b15a2d8ef1ab add homepage
Drew Perttula <drewp@bigasterisk.com>
parents: 1218
diff changeset
216 a.big {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
217 background-color: #384052;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
218 padding: 6px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
219 text-shadow: rgba(0, 0, 0, 0.48) -1px -1px 0px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
220 color: rgb(172, 172, 255);
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
221 font-size: 160%;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
222 margin: 0px;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
223 display: inline-block;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
224 border-radius: 5px;
1219
b15a2d8ef1ab add homepage
Drew Perttula <drewp@bigasterisk.com>
parents: 1218
diff changeset
225 }
1541
c1bf296b0a74 collector uses cyclone and gets a web ui showing output attrs
Drew Perttula <drewp@bigasterisk.com>
parents: 1310
diff changeset
226
c1bf296b0a74 collector uses cyclone and gets a web ui showing output attrs
Drew Perttula <drewp@bigasterisk.com>
parents: 1310
diff changeset
227 table {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
228 border-collapse: collapse;
1541
c1bf296b0a74 collector uses cyclone and gets a web ui showing output attrs
Drew Perttula <drewp@bigasterisk.com>
parents: 1310
diff changeset
229 }
c1bf296b0a74 collector uses cyclone and gets a web ui showing output attrs
Drew Perttula <drewp@bigasterisk.com>
parents: 1310
diff changeset
230
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
231 table.borders td,
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
232 table.borders th {
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
233 border: 1px solid #4a4a4a;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
234 padding: 2px 8px;
1589
21a52ce16954 new effects2.html polymer port
Drew Perttula <drewp@bigasterisk.com>
parents: 1541
diff changeset
235 }
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
236
1937
f29e26811206 pmfstats now update at 1hz. some ui improvements to stats lines.
Drew Perttula <drewp@bigasterisk.com>
parents: 1844
diff changeset
237 hr {
2112
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
238 width: 100%;
0b80bcc82cb1 reformat
drewp@bigasterisk.com
parents: 2111
diff changeset
239 border-color: #1d3e1d;
1937
f29e26811206 pmfstats now update at 1hz. some ui improvements to stats lines.
Drew Perttula <drewp@bigasterisk.com>
parents: 1844
diff changeset
240 }