1/* Copyright (C) 2016 The Android Open Source Project
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7      http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14*/
15.row.home-tabs-row {
16    margin-bottom: 50px;
17}
18
19.row.home-tabs-row li.col.tab {
20    cursor: pointer;
21    user-select: none;
22}
23
24#add-button-wrapper {
25    margin-top: 10px;
26    height: 61px;
27}
28
29.btn-container > .btn-flat {
30    margin-top: 8px;
31    user-select: none;
32    color: grey;
33}
34
35.btn-container > .btn-flat.inactive {
36    color: lightgray;
37}
38
39.row .col.card.option {
40    padding: 6px 15px 6px 15px;
41    margin: 5px 0;
42    border-radius: 25px;
43}
44
45#error-container {
46    padding-top: 50px;
47    padding-bottom: 50px;
48}
49
50.entry {
51    font-size: 20px;
52    font-weight: 300;
53    position: relative;
54}
55
56.indicator {
57    color: white;
58    font-size: 12px;
59    font-weight: bold;
60    padding: 1px 6px;
61    right: 0;
62    min-width: 40px;
63    border-radius: 10px;
64    margin-top: 5px;
65}
66
67#show-button {
68    border-radius: 100px;
69}
70
71#show-button-arrow {
72    margin-left: 3px;
73}
74
75#section-header {
76    cursor: default;
77    user-select: none;
78    color: #ee6e73;
79}
80
81#section-header:after {
82    border: 1px solid #ee6e73;
83    margin-top: 10px;
84    margin-bottom: 0;
85    display: block;
86    content: " ";
87}
88
89.ui-menu {
90    overflow-y: auto;
91    z-index: 100;
92    max-height: 50%;
93}
94
95.ui-menu-item {
96    font-size: 16px;
97    padding: 4px 10px;
98    transition: background-color .25s;
99}
100
101.ui-menu-item:hover {
102    background-color: #e0f2f1;
103}
104
105.ui-menu-item:active {
106    background-color: #b2dfdb;
107}
108
109.ui-helper-hidden-accessible {
110    display: none;
111}
112