-
Notifications
You must be signed in to change notification settings - Fork 0
/
secompletoestilos.css
82 lines (68 loc) · 1.7 KB
/
secompletoestilos.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/*Estilos formulario*/
form{
background: #089c7c; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #3cff87, #089c7c); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #3cff87, #089c7c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
width: 100%; /*Cuerpo del formulario*/
height: 625px;
padding: 100px 150px 60px 150px;
margin: auto;
box-shadow: 2px 2px 6px 2px rgba(255, 255, 255, 0.8);
overflow: hidden;
}
.enviado h2{
text-align: center;
padding: 132px 0px 50px 0px;
cursor: pointer;
}
.enviado i{
margin: 8px;
}
/*Boton de regreso*/
.textosnoticiasextra .botonnotiextra{
margin: 10px 100px 80px 370px;
}
.botonnotiextra{
position: relative;
display: block;
height: 60px;
width: 300px;
border-radius: 10px;
background: #089c7c;
font-size: 20px;
overflow: hidden;
transition: all .5s ease-in-out;
border: 2px;
cursor: pointer;
margin: 0px 0px 100px 0px;
}
.botonnotiextra:hover{
width: 350px;
background: #000000;
box-shadow: 0 0 10px #0000, 0 0 10px, #000000 0 0 10px;
}
.botonnotiextra i{
padding: 5px;
}
.textosnoticiasextra a{
text-decoration: none;
color: #ffffff;
}
@media screen and (max-width:650px){
form{
height: 900px;
padding: 100px 10px 50px 10px;
}
.textosnoticiasextra .botonnotiextra{
width: 250px;
margin: 10px 10px 10px 30px;
}
.botonnotiextra:hover{
width: 300px;
}
}