diff options
Diffstat (limited to 'js/io/ui/cloudpopup.reel/css/cloudpopup.scss')
-rwxr-xr-x | js/io/ui/cloudpopup.reel/css/cloudpopup.scss | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/js/io/ui/cloudpopup.reel/css/cloudpopup.scss b/js/io/ui/cloudpopup.reel/css/cloudpopup.scss new file mode 100755 index 00000000..047e2dd1 --- /dev/null +++ b/js/io/ui/cloudpopup.reel/css/cloudpopup.scss | |||
@@ -0,0 +1,103 @@ | |||
1 | @charset "UTF-8"; | ||
2 | /* <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> */ | ||
7 | |||
8 | $grey_dark: #292929; | ||
9 | $grey_light: #494949; | ||
10 | |||
11 | .cloud_popup | ||
12 | { | ||
13 | font-size: 12px; | ||
14 | text-shadow: 1px 1px 1px #000; | ||
15 | font-family: 'Droid Sans', sans-serif; | ||
16 | } | ||
17 | |||
18 | .cloud_popup .content | ||
19 | { | ||
20 | width: 360px; | ||
21 | } | ||
22 | |||
23 | .cloud_popup .content h3 | ||
24 | { | ||
25 | text-transform: uppercase; | ||
26 | font-weight: normal; | ||
27 | font-size: 14px; | ||
28 | text-shadow: 1px 1px 1px #000; | ||
29 | font-family: 'Droid Sans', sans-serif; | ||
30 | display: block; | ||
31 | float: left; | ||
32 | clear: both; | ||
33 | margin: 4px 0px 8px 0px; | ||
34 | padding: 0px; | ||
35 | width: 100%; | ||
36 | text-align: center; | ||
37 | } | ||
38 | |||
39 | .cloud_popup .content p | ||
40 | { | ||
41 | text-shadow: 1px 1px 1px #222; | ||
42 | margin: 0px 0px 12px 0px; | ||
43 | text-align: justify; | ||
44 | color: #EEE; | ||
45 | } | ||
46 | |||
47 | .cloud_popup .content .btn_test | ||
48 | { | ||
49 | float: right; | ||
50 | clear: right; | ||
51 | margin: 0px 0px 0px 8px; | ||
52 | width: 60px; | ||
53 | } | ||
54 | |||
55 | .cloud_popup .content label | ||
56 | { | ||
57 | float: left; | ||
58 | margin: 5px 8px 0px 0px; | ||
59 | display: block; | ||
60 | width: 96px; | ||
61 | text-align: right; | ||
62 | } | ||
63 | |||
64 | .cloud_popup .content input | ||
65 | { | ||
66 | display: block; | ||
67 | float: left; | ||
68 | color: #FFF; | ||
69 | border: 0px; | ||
70 | padding: 4px; | ||
71 | margin: 0px; | ||
72 | width: 176px; | ||
73 | border-radius: 4px; | ||
74 | text-shadow: 1px 1px 1px #222; | ||
75 | font-family: 'Droid Sans', sans-serif; | ||
76 | border: 1px lighten($grey_dark, 20%) solid; | ||
77 | background: $grey_dark -webkit-gradient(linear, left top, left bottom, color-stop(45%, lighten($grey_dark, 10%)), color-stop(100%, $grey_dark)); | ||
78 | } | ||
79 | |||
80 | .cloud_popup .content input:focus | ||
81 | { | ||
82 | text-shadow: none; | ||
83 | background: #FFF; | ||
84 | border: 1px $grey_dark solid; | ||
85 | color: $grey_dark; | ||
86 | } | ||
87 | |||
88 | .cloud_popup .content .status | ||
89 | { | ||
90 | float: left; | ||
91 | clear: right; | ||
92 | margin: 5px 0px 0px 6px; | ||
93 | text-shadow: 1px 1px 1px #333; | ||
94 | width: 240px; | ||
95 | } | ||
96 | |||
97 | .cloud_popup .content .btn_ok, .cloud_popup .content .btn_cancel | ||
98 | { | ||
99 | width: 80px; | ||
100 | text-align: center; | ||
101 | float: right; | ||
102 | margin: 8px 0px 0px 8px; | ||
103 | } \ No newline at end of file | ||