-
Notifications
You must be signed in to change notification settings - Fork 0
/
11. BG atachment.css
59 lines (51 loc) · 1008 Bytes
/
11. BG atachment.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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Amatic';
/*outline: 1px solid red;*/
}
.container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
justify-content: center;
/* height: 100vh; lo limita*/
}
.atachment {
width: 60%;
height: 60vh;
background-image: url(Imagenes/Gato.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.fixed {
background-attachment: fixed;
/* background-attachment: scroll; */
}
.full {
width: 100vw;
height: 100vh;
}
.titulo {
font-family: amatic;
font-size: 60px;
text-align: center;
line-height: 50vh;
color: #fff;
}
.space {
height: 60vh;
}
/*
.triangulo {
width: 700px;
height: 700px;
background-color: red;
background-image: url(Imagenes/triangulito.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
} */