-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
71 lines (62 loc) · 1.22 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Quicksand:wght@300;500;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #3D8361;
}
.titulo {
font-family: 'Quicksand', sans-serif;
color: white;
font-size: 36px;
}
.subtitulo {
color: white;
font-size: 20px;
}
h1 {
display: flex;
flex-direction: row;
align-content: flex-end;
align-items: flex-start;
justify-content: center;
}
h2 {
display: flex;
}
#ver-mapa {
display: flex;
flex-direction: row;
align-items: flex-start;
align-content: flex-start;
justify-content: space-between;
margin: 10px;
padding: 40px;
}
#contenedor-tarjeta {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
justify-content: center;
}
#frutas {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 10px;
padding: 40px;
}
.tarjeta-de-fruta img {
width: 100px;
height: 100px;
padding: 3px;
box-sizing: border-box;
margin: 4px;
border: 1px solid white;
border-radius: 25px;
display: flex;
align-items: center;
justify-content: center;
}
input {
display: none;
}