source: tapas/web/resources/js/TwitterLogin/front.css @ 414

Last change on this file since 414 was 414, checked in by vmipsl, 12 years ago

login application
servlet data
ControllerEponge?

File size: 3.9 KB
Line 
1body {
2        margin:0;
3        padding:0;
4        font:13px/16px "Lucida Grande", Arial, Sans-serif;
5        color:#789;
6        background-color: #ddeef6;
7        background-image: url(images/front-bg.gif);
8        background-repeat: repeat;
9}
10#container {
11        width:780px;
12        margin:0 auto;
13        position: relative;
14}
15
16#content {
17        width:520px;
18        min-height:500px;
19}
20a:link, a:visited {
21        color:#27b;
22        text-decoration:none;
23}
24a:hover {
25        text-decoration:underline;
26}
27a img {
28        border-width:0;
29}
30#topnav {
31        padding:10px 0px 12px;
32        font-size:11px;
33        line-height:23px;
34        text-align:right;
35}
36#topnav a.signin {
37        background:#88bbd4;
38        padding:4px 6px 6px;
39        text-decoration:none;
40        font-weight:bold;
41        color:#fff;
42        -webkit-border-radius:4px;
43        -moz-border-radius:4px;
44        border-radius:4px;
45        *background:transparent url("images/signin-nav-bg-ie.png") no-repeat 0 0;
46        *padding:4px 12px 6px;
47}
48#topnav a.signin:hover {
49        background:#59B;
50        *background:transparent url("images/signin-nav-bg-hover-ie.png") no-repeat 0 0;
51        *padding:4px 12px 6px;
52}
53#topnav a.signin, #topnav a.signin:hover {
54        *background-position:0 3px!important;
55}
56
57a.signin {
58        position:relative;
59        margin-left:3px;
60}
61a.signin span {
62        background-image:url("images/toggle_down_light.png");
63        background-repeat:no-repeat;
64        background-position:100% 50%;
65        padding:4px 16px 6px 0;
66}
67#topnav a.menu-open {
68        background:#ddeef6!important;
69        color:#666!important;
70        outline:none;
71}
72#small_signup {
73        display:inline;
74        float:none;
75        line-height:23px;
76        margin:25px 0 0;
77        width:170px;
78}
79a.signin.menu-open span {
80        background-image:url("images/toggle_up_dark.png");
81        color:#789;
82}
83
84#signin_menu {
85        -moz-border-radius-topleft:5px;
86        -moz-border-radius-bottomleft:5px;
87        -moz-border-radius-bottomright:5px;
88        -webkit-border-top-left-radius:5px;
89        -webkit-border-bottom-left-radius:5px;
90        -webkit-border-bottom-right-radius:5px;
91        display:none;
92        background-color:#ddeef6;
93        position:absolute;
94        width:210px;
95        z-index:100;
96        border:1px transparent;
97        text-align:left;
98        padding:12px;
99        top: 24.5px; 
100        right: 0px; 
101        margin-top:5px;
102        margin-right: 0px;
103        *margin-right: -1px;
104        color:#789;
105        font-size:11px;
106}
107
108#signin_menu input[type=text], #signin_menu input[type=password] {
109        display:block;
110        -moz-border-radius:4px;
111        -webkit-border-radius:4px;
112        border:1px solid #ACE;
113        font-size:13px;
114        margin:0 0 5px;
115        padding:5px;
116        width:203px;
117}
118#signin_menu p {
119        margin:0;
120}
121#signin_menu a {
122        color:#6AC;
123}
124#signin_menu label {
125        font-weight:normal;
126}
127#signin_menu p.remember {
128        padding:10px 0;
129}
130#signin_menu p.forgot, #signin_menu p.complete {
131        clear:both;
132        margin:5px 0;
133}
134#signin_menu p a {
135        color:#27B!important;
136}
137#signin_submit {
138        -moz-border-radius:4px;
139        -webkit-border-radius:4px;
140        background:#39d url('images/bg-btn-blue.png') repeat-x scroll 0 0;
141        border:1px solid #39D;
142        color:#fff;
143        text-shadow:0 -1px 0 #39d;
144        padding:4px 10px 5px;
145        font-size:11px;
146        margin:0 5px 0 0;
147        font-weight:bold;
148}
149#signin_submit::-moz-focus-inner {
150padding:0;
151border:0;
152}
153#signin_submit:hover, #signin_submit:focus {
154        background-position:0 -5px;
155        cursor:pointer;
156}
157
158.tipsy-inner {
159        padding:10px 15px;
160        line-height:1.5em;
161        font-weight:bold;
162}
163.tipsy {
164        opacity:.8;
165        filter:alpha(opacity=80);
166        background-repeat:no-repeat;
167        padding:5px;
168}
169.tipsy-inner {
170        padding:8px 8px;
171        max-width:200px;
172        font:11px 'Lucida Grande', sans-serif;
173        font-weight:bold;
174        -moz-border-radius:4px;
175        -khtml-border-radius:4px;
176        -webkit-border-radius:4px;
177        border-radius:4px;
178        background-color:#000;
179        color:white;
180        text-align:left;
181}
182.tipsy-north {
183        background-image:url(images/tipsy-north.gif);
184        background-position:top center;
185}
186.tipsy-south {
187        background-image:url(images/tipsy-south.gif);
188        background-position:bottom center;
189}
190.tipsy-east {
191        background-image:url(images/tipsy-east.gif);
192        background-position:right center;
193}
194.tipsy-west {
195        background-image:url(images/tipsy-west.gif);
196        background-position:left center;
197}
Note: See TracBrowser for help on using the repository browser.