forked from jimrandomh/faceclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
57 lines (48 loc) · 1.05 KB
/
Copy pathapp.css
File metadata and controls
57 lines (48 loc) · 1.05 KB
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
@import '@nativescript/theme/css/core.css';
@import '@nativescript/theme/css/default.css';
Page {
background-color: #ffffff;
color: #222222;
}
ActionBar {
background-color: #424242;
color: #ffffff;
}
ActionItem {
color: #ffffff;
}
TextField {
background-color: #ffffff;
color: #222222;
}
.system-name-modal TextField {
background-color: #ffffff;
color: #222222;
}
Button.-primary {
font-size: 18;
}
/*
* Stands in for the lens preview when showing it would be misleading (silent
* mode, or a disconnect explained by a flat battery). Sized by the view model
* to the preview's own box so the form doesn't reflow, and kept dark so it
* reads as "where the preview goes" rather than as a page-level banner.
*/
.display-preview-message {
background-color: #222222;
color: #ffffff;
padding: 16;
}
.display-preview-message Label {
font-size: 18;
text-align: center;
}
.system-name-modal {
margin: 16;
padding: 16;
background-color: #f6f6f6;
color: #222222;
border-color: #222222;
border-width: 1;
border-radius: 8;
}