-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.scss
executable file
·60 lines (53 loc) · 1.17 KB
/
App.scss
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
$ci_primaryColor: #cccccc;
$ci_primaryLightColor: lighten($ci_primaryColor, 50%);
$ci_disabledColor: lighten($ci_primaryColor, 80%);
$ci_backgroundColor: white;
$ci_barColor: #A0A0A0;
$ci_barTextColor: #FFFFFF;
$ci_dividerColor: grey;
$ci_textColor: black;
$ci_placeholderColor: #EFEFF4;
$ci_footnoteColor: #EFEFF4;
$ci_footnoteBackgroundColor: #EFEFF4;
$ci_positiveColor: green;
$ci_itemTitleColor: #444;
$ci_itemDescriptionColor: #999;
$ci_headerHeight: 50;
.ci_Header {
color: $ci_barTextColor;
backgroundColor: $ci_barColor;
height: $ci_headerHeight;
}
.ci_itemBox {
paddingHorizontal: 16;
paddingVertical: 12;
backgroundColor: $ci_backgroundColor;
borderBottomWidth: 1px;
borderBottomColor: $ci_primaryColor;
}
.ci_itemTitle {
fontSize: 16;
fontWeight: bold;
color: $ci_itemTitleColor;
}
.ci_itemDescription {
fontSize: 13;
color: $ci_itemDescriptionColor;
}
.ci_formLabel {
// fontSize: 20;
marginTop: 12;
// padding: 2px;
fontWeight: bold;
fontSize: 13;
color: $ci_itemDescriptionColor;
}
.ci_formText {
fontSize: 18;
}
.ci_formContainer {
justifyContent: center;
marginTop: 0;
padding: 15px;
backgroundColor: $ci_backgroundColor;
}