-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo1.css
executable file
·109 lines (93 loc) · 1.36 KB
/
estilo1.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
*
{
padding: 0;
margin: 0;
}
marquee
{
font-size: 25px;
text-align: center;
color: white;
background-color: green;
height: 40px;
padding-top: 15px;
}
body
{
background-color: rgba(0,0,0,0.7);
background-position: center;
}
#menu
{
width: 300px;
margin-top: 60px;
}
#menu > ul
{
list-style: none;
}
#menu > ul li
{
margin-top: 25px;
font-size: 20px;
font-family: Tahoma;
background-color: #639bb3;
width: 200px;
padding:15px;
border-radius: 0px 20px 20px 0px;
box-shadow: 5px 0px 10px #939393;
padding-left: 25px;
-webkit-transition: padding-left 0.5s;
color : white;
}
#menu ul li:hover
{
padding-left: 50px;
cursor: pointer;
}
/*Logueo*/
h2
{
color: white;
font-size: 40px;
text-align: center;
margin: 30px 0;
}
form
{
background: #333333;
width: 360px;
border : 2px solid white;
border-radius: 10px;
box-shadow: inset 0 0 10px #000;
margin: 100px auto;
}
form input
{
width: 280px;
height: 35px;
padding: 0 10px;
margin: 10px 30px;
color: gray;
text-align: center;
font-size: 25px;
}
#boton
{
width: 280px;
height: 50px;
margin: 10px 30px ;
padding: 0 10px;
background: #5dade2;
border-radius: 10px;
color: white;
}
#boton:hover
{
background: white;
color: #4AA4DF;
}
#boton:active
{
background: pink;
}