-
Notifications
You must be signed in to change notification settings - Fork 0
/
17.Extra.css
53 lines (44 loc) · 862 Bytes
/
17.Extra.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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Amatic';
/*outline: 1px solid red;*/
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
gap: 30px;
}
.container {
display: flex;
width: 90%;
background-color: rgba(8, 8, 8, 0.326);
}
.cajas__colores {
margin: 5px;
width: 300px;
height: 200px;
background-color: yellow;
}
.cajas__colores:nth-child(1) {
background-color: #FFFFF5;
}
.cajas__colores:nth-child(2) {
background-color: #F8FEFF;
}
.cajas__colores:nth-child(3) {
background-color: #EFEFEF;
}
.cajas__colores:nth-child(4) {
background-color: #F9FDFE;
}
.cajas__colores:nth-child(5) {
background-color: #F2F6FC;
}
.cajas__colores:nth-child(6) {
background-color: #FFFFF5;
}