-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractica07.css
70 lines (57 loc) · 1.01 KB
/
practica07.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
:root{
--color-bordes: #D2CECE;
--btn-bc: blue;
--letras-color: white;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,
.formulario{
margin: 20px auto;
}
h1{
text-align: center;
}
.formulario{
width: 400px;
border: 1px solid var(--color-bordes);
box-shadow: 10px 20px 10px;
padding: 0 10px;
}
fieldset{
display: flex;
flex-direction: column;
margin: 20px 5px;
padding: 5px;
border: 1px solid var(--color-bordes);
}
input[type="submit"]{
width: 100%;
background-color: var(--btn-bc);
color: var(--letras-color);
border: none;
padding: 5px;
}
input[type="text"], input[type="email"]{
border: 1px solid var(--color-bordes);
}
input{
height: 30px;
padding: 5px;
outline: none;
margin-bottom: 20px;
border-radius: 4px;
}
input, label{
margin-right: 5px;
margin-left: 5px;
}
label{
margin-bottom: 2px;
}
legend{
padding: 0px 5px;
}