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