-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
108 lines (91 loc) · 2.05 KB
/
style2.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.container-skills{
box-sizing: border-box;
outline: none; border: none;
text-decoration: none;
}
.container-skills{
background-color: #f5f5f5;
padding: 15px 9%;
padding-bottom: 100px;
}
.container-skills .heading{
text-align: center;
padding-bottom: 15px;
font-family: 'Raleway';
font-style: normal;
font-weight: 700;
font-size: 32px;
color: #464646;
}
.container-skills .box-container{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 15px;
padding-top: 30px;
}
.container-skills .box-container .box{
background-color: #ffffff;
text-align: center;
padding: 50px 20px;
}
.container-skills .box-container .box img{
height: 200px;
}
.container-skills .box-container .box h3{
line-height: 2.8;
}
/*FORMACION ACADEMICA*/
.container-formacion{
box-sizing: border-box;
outline: none; border: none;
text-decoration: none;
}
.container-formacion{
background-color: #EAF2FD;
padding: 15px 9%;
padding-bottom: 100px;
}
.container-formacion .heading{
text-align: center;
padding-bottom:15px;
font-family: 'Raleway';
font-style: normal;
font-weight: 700;
font-size: 32px;
color: #464646;
margin-top: 2rem;
}
.container-formacion .box-container{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
grid-gap: 80px 15px;
padding-top: 70px;
}
.container-formacion .box-container .box{
background-color: #ffffff;
text-align: center;
padding: 50px 20px;
}
.container-formacion .box-container .box img{
height: 100px;
}
.container-formacion .box-container h3{
font-family: 'Raleway';
font-style: normal;
font-weight: 700;
font-size: 20px;
color: #464646;
}
.container-formacion .box-container p{
font-size: 1rem;
color: #464646;
font-weight: 500;
}
.container-formacion .box-container h3{
position: absolute;
margin-top: 3.5rem;
}
.container-formacion .box-container p{
position: absolute;
margin-top: 5.5rem;
}