-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposicionamiento.css
76 lines (62 loc) · 986 Bytes
/
posicionamiento.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
/* Especificidad = 001 */
section {
position: relative;
top: 80px;
margin-bottom: 90px;
column-count: 2;
column-gap: 3em;
padding: 30px 30px 30px 30px;
min-height: 300px;
}
/* Especificidad = 001 */
img {
width: 100%;
height: auto;
}
/* Especificidad = 001 */
a{
padding: 10px;
position: relative;
top: 7px;
}
/* Especificidad = 001 */
main{
padding: 0px 10px 20px;
position: relative;
top:80px;
}
/* Especificidad = 001 */
h1 {
position: relative;
top: 65px;
}
/* Especificidad = 001 */
div {
display: flex;
gap: 200px;
justify-content: center;
}
/* Especificidad = 001 */
footer{
display: flex;
position: relative;
top: 10px;
justify-content: center;
height: 40px;
border-style: outset ;
}
/* Especificidad = 001 */
video {
margin: 20px 20px 20px 20px;
position: relative;
left: 140px;
top: 10px;
}
/* Especificidad = 001 */
nav{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 50px;
}