-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles-tablets.css
85 lines (73 loc) · 1.65 KB
/
styles-tablets.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
81
82
83
84
85
/*MEDIA QUERIES*/
@media only screen and (min-width: 600px) {
a {
color: black;
}
.sobreMí__síntesis {
display: flex;
flex-direction: row-reverse;
gap: 0.6rem;
flex-wrap: wrap;
padding: 0.2rem;
}
.síntesis__textoYLinks {
max-width: 70vw;
}
.links {
display: flex;
flex-direction: row;
gap: 3.5rem;
max-width: fit-content;
font-size: 1rem;
justify-content: space-around;
padding-top: 0.6rem;
}
.fotoDePerfil {
max-width: 22vw;
max-height: 20vh;
align-self: center;
}
/*SECTOR DE SKILLS*/
.skills__cardsContainer {
display: flex;
flex-wrap: wrap;
width: 80vw;
justify-content: space-evenly;
row-gap: 1.7rem;
column-gap: 0.4rem;
}
.skills__card {
display: flex;
flex-direction: column;
gap: 0.8rem;
background-color: white;
width: 22vw;
padding: 3rem 1rem 1.5rem 1.5rem;
flex-basis: 19vw;
}
.skills__card--backup {
display: flex;
flex-direction: column;
gap: 0.8rem;
background-color: white;
width: 22vw;
padding: 3rem 1rem 0.4rem 1.5rem;
flex-basis: 19vw;
}
/*SECTOR DE FORMACIÓN*/
.formaciónContainer {
display: flex;
flex-direction: row;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
max-width: 80vw;
}
.card__logoContainer {
min-width: 35vw;
max-width: 35vw;
min-height: 7.3rem;
max-height: 7.3rem;
flex-basis: 45vw;
}
}