-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio6.css
115 lines (84 loc) · 1.51 KB
/
Ejercicio6.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
110
111
112
113
114
115
/*001*/
body {
background-color: #FFE6A7;
font-size: large;
}
/*001*/
h1 {
font-family: "Segoe UI", sans-serif;
font-size: 1.8em;
font-weight: 700;
line-height: 2em;
background-color: #6F1D1B;
color: white;
text-transform: uppercase;
padding-top: 3%;
padding-bottom: 3%;
text-align: center;
grid-area: header;
}
/*001*/
h2 {
text-align: center;
}
/*001*/
footer {
text-align: center;
}
/*001*/
nav form label {
color: white;
}
input[type="file"] {
color: white;
}
/* 011 */
label[for="Hombre"],
label[for="Mujer"] {
display: block;
}
form {
display: flex;
flex-direction: column;
width: 50%;
margin-left: auto;
margin-right: auto;
}
fieldset {
border-style: solid;
border-width: 0.4em;
border-color: #99582A;
}
/*001*/
nav {
background-color: #99582A;
display: flex;
flex-direction: column;
padding: 1em;
text-align: center;
}
/*002*/
nav a {
float: inline-start;
color: white;
padding: 0.8em 1em;
text-decoration: none;
font-size: 20px;
}
/*012*/
nav a:hover {
background-color: #FFE6A7;
color: black;
}
/*001*/
input[type="submit"] {
text-decoration: none;
padding: 0.5em;
font-weight: 600;
font-size: 1.1em;
color: #ffffff;
background-color: #99582A;
border-radius: 0.5em;
margin-top: 0.5em;
margin-bottom: 0.3em;
}