-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos.css
80 lines (63 loc) · 1.41 KB
/
estilos.css
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* CSS Document */
* {
margin:0;
padding:0;
}
body, html, #principal {
width:100%;
height:100%;
font-family:sans-serif;
}
body {
background-color:#EBF6FB;
color:#666;
font-size:20px
}
a {
text-decoration:none;
color:#FFF;
}
#principal {
display:table;
text-align:center;
}
#flogin {
display:table-cell;
vertical-align:middle;
}
#flogin > input {
margin:10px 0;
padding-left:10px;
width:400px;
height:50px;
outline:none;
-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;
-moz-box-shadow:0px 0px 1px #ccc;-webkit-box-shadow:0px 0px 1px #ccc;box-shadow:0px 0px 1px #ccc;
border:none;
font-size:20px;
color:#ccc;
}
#flogin > input:active{
-moz-box-shadow:0px 0px 3px #089CDA;-webkit-box-shadow:0px 0px 3px #089CDA;box-shadow:0px 0px 3px #089CDA;
}
#flogin > input:focus{
-moz-box-shadow:0px 0px 3px #089CDA;-webkit-box-shadow:0px 0px 3px #089CDA;box-shadow:0px 0px 3px #089CDA;
}
#logo {
width:400px;
margin-bottom:20px;
}
.fb-login-button {
display:inline;
height:50px;
}
.boton {
background-color:#FF8119;
padding:9px 20px 0px 20px;
margin:10px 0;
display:inline-block;
width:100px;
}
.boton:hover{color:#fff;background-color:#FF8C2E}
.boton:active {-moz-box-shadow: #999 0px 0px 1px 1px;box-shadow: #999 0px 0px 1px 1px;-webkit-box-shadow: #999 0px 0px 1px 1px;}
.boton, .fb-login-button {-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;height:40px;}