-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.index
More file actions
62 lines (51 loc) · 1.01 KB
/
Copy pathcss.index
File metadata and controls
62 lines (51 loc) · 1.01 KB
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
form {
display: block;
text-align: center;
background: linear-gradient(#5C90A2,black);
font-family: sans-serif;
width: 300px;
margin: 40px auto;
padding: 20px;
border-radius: 20px;
height: 400px;
color: white;
box-shadow: 10px 10px 10px 10px #5C90A2;
}
h1 {
color: white;
margin-bottom:65px;
}
.texto {
text-align: center;
border-radius: 30px;
padding: 10px;
background: black;
background-size: cover;
opacity: 0.7;
outline: none;
color: white;
}
.texto::placeholder {
color: white;
}
.enviar input {
text-align: center;
text-decoration: none;
font-family: sans-serif;
font-weight: bold;
border-radius: 10px;
background: linear-gradient(#5C90A2,black);
color: white;
width: 150px;
padding: 10px;
outline: none;
margin-top:50px;
}
.enviar input:hover {
background: linear-gradient(#3D6472,black);
}
@media screen and (max-width: 1000px){
form {
padding: 10px 0 10px 0;
}
}