blob: ffeac0aa754761405bde1f2910d0ebcffc03a552 [file] [log] [blame]
Parvathi Mef749632016-07-07 13:30:43 -07001/* css for sample app custom view */
2
3#ov-sample-custom {
4 padding: 20px;
5}
6.light #ov-sample-custom {
7 color: navy;
8}
9.dark #ov-sample-custom {
10 color: #88f;
11}
12
13#ov-sample-custom .button-panel {
14 margin: 10px;
15 width: 200px;
16}
17
18.light #ov-sample-custom .button-panel {
19 background-color: #ccf;
20}
21.dark #ov-sample-custom .button-panel {
22 background-color: #444;
23}
24
25#ov-sample-custom .my-button {
26 cursor: pointer;
27 padding: 4px;
28 text-align: center;
29}
30
31.light #ov-sample-custom .my-button {
32 color: white;
33 background-color: #99d;
34}
35.dark #ov-sample-custom .my-button {
36 color: black;
37 background-color: #aaa;
38}
39
40#ov-sample-custom .number {
41 font-size: 140%;
42 text-align: right;
43}
44
45#ov-sample-custom .quote {
46 margin: 10px 20px;
47 font-style: italic;
48}