-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
80 lines (70 loc) · 1.11 KB
/
styles.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
/* selector de tipo */
h2{
color: royalblue;
font-size: xx-large;
text-align: center;
}
/* flexbox layout + selector de clase class*/
.list{
display: flex;
flex-flow: row wrap;
}
/* selecto de hijos */
ul > li{
display: unset;
}
/* selector de ids */
#link{
font-size: xx-large;
color: black;
}
#container{
display: flex;
align-items: stretch;
}
#container > #left{
color: aliceblue;
background-color: rgb(158, 35, 35);
}
#container > #center{
color:black;
background-color: aliceblue;
}
#container > #right{
color: beige;
background-color: slategrey;
}
.wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
grid-auto-rows: minmax(100px, auto);
}
.one {
grid-column: 1 ;
grid-row: 1;
}
.two {
grid-column: 2 ;
grid-row: 1 ;
}
.three {
grid-column: 3;
grid-row: 1;
}
.four {
grid-column: 1;
grid-row: 2;
}
.five {
grid-column: 2;
grid-row: 2;
}
/* Modelo de caja */
#Video{
border: 2px solid rebeccapurple;
padding: .5em;
width: 100px;
height: 30px;
margin: 10px;
}