-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
66 lines (57 loc) · 940 Bytes
/
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
body {
background-color: black;
}
header > h2 {
color: #08e944;
font-size: 35px;
text-align: center;
}
header > h5 {
color: #08e944;
font-size: 28px;
text-align: center;
}
#cotizacionesContainer {
display: flex;
flex-wrap: wrap;
justify-content: center;
color: #08e944;
gap: 2rem;
}
.card {
border: 1px solid #08e944;
width: 260px;
height: 320px;
border-radius: 20px;
text-align: center;
display: flex;
flex-direction: column;
font-family: Arial, Helvetica, sans-serif;
font-size: 28px;
background-color: #033611;
}
.card > hr {
width: 250px;
color: #08e944;
}
.cardCotizaciones {
display: flex;
justify-content: space-around;
}
.cardCompraVenta {
display: flex;
flex-direction: column;
}
.cardSubtitulo {
font-size: 20px;
}
.precio {
font-size: 28px;
font-weight: bold;
}
.v-line {
border-left: 1px solid #30f509;
height: 18%;
left: 50%;
position: absolute;
}