-
Notifications
You must be signed in to change notification settings - Fork 0
/
style-hv.css
158 lines (155 loc) · 3.13 KB
/
style-hv.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
html{
font-family: 'Cabin', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Urbanist', sans-serif;
}
body{
margin:0;
background-color: #E0DCFA;
background-image: url(fondo-2.jpg);
background-size: cover;
}
header{
background-color: rgb(100, 98, 112, 0.95);
color: #E0DCFA;
padding: 1rem 2rem;
}
header h1{
font-size: 3rem;
text-align: center;
}
.containe{
transition: box-shadow 0.3s ease;
width: 60rem;
margin: 2rem auto;
background-color: rgb(213, 209, 237, 0.8);
border-radius: 1rem;
}
.containe:hover{
box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.6);
}
.containe p{
font-size: 1.5rem;
/* width: 50rem; */
text-align:center;
margin: 3rem 5rem;
}
.containe img{
margin: 3rem 5rem;
border-radius: 2rem;
}
#objetivo{
transition: box-shadow 0.3s ease;
margin: 2rem 0 0 0;
background-color: rgb(190, 186, 212, 0.9);
}
#objetivo:hover{
box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.6);
}
#objetivo h2{
text-align: center;
font-size: 2rem;
margin: 0 auto;
padding: 1rem;
}
#objetivo p{
text-align: center;
font-size: 1.5rem;
margin: 0 6rem;
}
#objetivo img{
border-radius: 3rem;
margin: 1rem 0 3rem;
}
.imagen{
display: flex;
justify-content: center;
border-radius: 1rem;
/* margin: 1rem auto; */
}
.table-container{
background-color: rgb(100, 98, 112, 0.95);
padding: 2rem 0 2rem 0;
}
.table-container table{
transition: box-shadow 0.3s ease;
margin: 0 auto;
background-color: #D5D1ED;
font-size: 1.5rem;
padding: 2rem;
border-radius: 3rem;
width: 50rem;
}
.table-container table:hover{
box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.6);
}
.table-container h2{
text-align: center;
font-size: 2rem;
padding: 0 0 2rem 0;
}
/*.table-container table tbody{
/* margin: 10rem auto;
}*/
section h2{
text-align: center;
font-size: 2rem;
}
section article{
box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.6);
background-color: #BEBAD4;
}
#experiencia{
background-color: rgb(213, 209, 237, 0.8);
padding: 1rem 0;
}
#experiencia article{
width: 50rem;
text-align: center;
margin: 1rem auto;
border-radius: 3rem;
padding: 0.5rem;
}
#experiencia h2{
font-size: 2rem;
text-decoration: underline;
}
#experiencia article h3{
font-size: 1.3rem;
}
#experiencia article p{
font-size: 1rem;
}
#educacion{
background-color: rgba(194, 187, 235, 0.8);
padding: 1rem 0;
}
#educacion article{
width: 50rem;
text-align: center;
margin: 1rem auto;
border-radius: 3rem;
padding: 0.5rem;
}
#educacion h2{
font-size: 2rem;
text-decoration: underline;
}
#educacion article h3{
font-size: 1.3rem;
}
#educacion article p{
font-size: 1rem;
}
footer{
background-color: rgb(100, 98, 112, 0.85);
padding: 0.1rem;
margin: 10rem 0 0 0;
}
footer section table tbody tr td a{
color:black;
text-decoration: none;
}
footer section table{
margin: 0 auto;
}