Commit 4409c836016296d2ca089d42d7364db0458c1f89
1 parent
6f207f07
Exists in
master
and in
5 other branches
Melhorando layout android
Showing
1 changed file
with
10 additions
and
21 deletions
Show diff stats
android/res/raw/theme.css
... | ... | @@ -21,34 +21,22 @@ input |
21 | 21 | border: none; |
22 | 22 | padding: 0px; |
23 | 23 | background-color: black; |
24 | - color: #00ff00; | |
24 | + color: #ffff00; | |
25 | 25 | margin-left: 0.5em; |
26 | 26 | margin-right: 0.5em; |
27 | -} | |
28 | - | |
29 | -input:focus | |
30 | -{ | |
27 | + border-radius: 3px; | |
31 | 28 | outline:none; |
32 | 29 | } |
33 | 30 | |
34 | -input[type="text"] | |
35 | -{ | |
36 | - background-color: #101010; | |
37 | -} | |
38 | 31 | |
39 | -input[type="text"]:focus | |
40 | -{ | |
41 | - background-color: #101010; | |
42 | -} | |
43 | - | |
44 | -input[type="password"] | |
32 | +input:focus | |
45 | 33 | { |
46 | - background-color: #101010; | |
34 | + background-color: #303030; | |
47 | 35 | } |
48 | 36 | |
49 | -input[type="password"]:focus | |
37 | +input[type="text"], input[type="password"], input[type="text"]:focus, input[type="password"]:focus | |
50 | 38 | { |
51 | - background-color: #101010; | |
39 | + background-color: #303030; | |
52 | 40 | } |
53 | 41 | |
54 | 42 | #terminal |
... | ... | @@ -60,10 +48,10 @@ input[type="password"]:focus |
60 | 48 | #pfbar |
61 | 49 | { |
62 | 50 | z-index: -1; |
63 | - width: 49em; | |
51 | + width: 48em; | |
64 | 52 | background: black; |
65 | 53 | color: white; |
66 | - text-align: center; | |
54 | + text-align: left; | |
67 | 55 | border-top: 1px solid #fff; |
68 | 56 | } |
69 | 57 | |
... | ... | @@ -78,12 +66,13 @@ a |
78 | 66 | margin: 1px; |
79 | 67 | background: gray; |
80 | 68 | color: black; |
81 | - width: 4em; | |
69 | + width: 3.9em; | |
82 | 70 | border: 1px solid darkgray; |
83 | 71 | text-decoration: none; |
84 | 72 | font-size: 15px; |
85 | 73 | font-family: arial; |
86 | 74 | display: inline-block; |
75 | + text-align: center; | |
87 | 76 | border-radius: 3px; |
88 | 77 | } |
89 | 78 | ... | ... |