-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
98 lines (86 loc) · 1.73 KB
/
styles.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
86
87
88
89
90
91
92
93
94
95
96
97
98
body, div {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Roboto", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
/* prevent text selection */
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.famous-root {
-background-color: #ECECEC;
background-color: white;
}
.header {
line-height: 30px;
font-size: 14px;
text-align: left;
color: #777777;
color: #AAAAAA;
padding-left: 10px;
overflow: hidden;
}
.footer {
-border-bottom: 1px solid #DDDDDD;
}
.ff-tabbar.item.small {
font-size: 12px;
}
.ff-tabbar.item .icon {
font-size: 24px;
}
/* tabbar white */
.ff-tabbar.background.white {
background-color: #ECECEC;
}
.ff-tabbar.item.white {
color: #333333;
}
.ff-tabbar.selectedItemOverlay.white {
border-bottom: 4px solid #1185c3;
}
/* tabbar black */
.ff-tabbar.background.black {
background-color: #101010;
}
.ff-tabbar.item.black {
color: #f7f3f7;
}
.ff-tabbar.selectedItemOverlay.black {
border-bottom: 6px solid #30b6e7;
}
.ff-tabbar.spacer.black:after {
content: "";
background-color: #333333;
width: 100%;
top: 10px;
bottom: 10px;
position: absolute;
}
/* tabbar blue */
.ff-tabbar.background.blue {
background-color: #f5f5f5;
}
.ff-tabbar.item.blue {
color: #818181;
}
.ff-tabbar.item.blue.selected {
color: #1185c3;
}
.ff-tabbar.selectedItemOverlay.blue {
border-bottom: 6px solid #1185c3;
}
/* tabbar orange */
.ff-tabbar.background.orange {
background-color: #f5f5f5;
}
.ff-tabbar.item.orange {
color: #818181;
}
.ff-tabbar.item.orange.selected {
color: #f5f5f5;
background-color: #E14610;
}
.ff-tabbar.selectedItemOverlay.orange {
border-bottom: none;
}