-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
184 lines (176 loc) · 2.78 KB
/
Copy pathstyles.css
File metadata and controls
184 lines (176 loc) · 2.78 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #222222;
color: white;
padding: 1em;
display: flex;
align-items: center;
justify-content: space-between;
align-self: flex-start;
width: 100%;
height: 100px;
}
header h1 {
margin: 0;
text-align: left;
margin-left: 0;
}
/* Estilos del menú de navegación */
nav {
display: flex;
padding: 0.5em;
margin-left: auto;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav li {
margin-right: 1em;
font-size: 20px;
}
nav a {
color: white;
text-decoration: none;
}
/*Contenido Principal*/
.main{
background-color: white;
width: 100%;
height: calc(100vh- 200px);
display: flex;
flex-wrap: wrap
}
.section{
background: linear-gradient(to left, #3DCED8, #3DCED8 20%, #2BB1D8 40%, #24a0ed 60%, #2BB1D8 80%, #3DCED8);
width: 40%;
height: calc(100vh- 200px);
}
.aside{
background: #ffffff;
width: 60%;
height: 100%;
height: 100vh;
height: auto;
}
footer {
background-color: #222222;
color: white;
padding: 0;
text-align: center;
align-items: center;
justify-content: center;
position: absolute;
width: 100%;
height: auto;
}
.foto-perfil {
border-radius: 50%;
margin-right: 15px;
width: 200px;
height: 200px;
margin: 30px;
display: block;
}
/* Añadi bordes a las imágenes */
img {
border: 1px solid #ccc;
}
/* Añadi estilos al hover de las imágenes */
img:hover {
box-shadow: 0 0 10px #ccc;
cursor: pointer;
}
h2 {
font-size: 30px;
margin-top: 30px;
margin-left: 40px;
}
h3{
font-size: 25px;
margin-left: 15px;
}
#datos-personales{
margin: 30px;
}
#habilidades-destrezas,#educacion,#informatica{
margin: 40px;
margin-top: 20px
}
#descripcion-personal article{
margin: 40px;
margin-top: 10px;
}
#contacto{
text-align: left;
margin-left: 20px;
font-size: 18px ;
}
.center {
text-align: center;
margin-top: 10px;
}
#formulario-contacto {
position: absolute;
top: calc(100% - 240px);
right: 0;
width: 250px;
height: 200px;
text-align: right;
margin-right: 20px;
}
.whatsapp-link {
color: green;
}
.gmail-link {
color:red
}
.twitter-link{
color: #3DCED8;
}
.instagram-link{
color:#FBCCD2;
}
@media only screen and (max-width: 720px) {
.main {
flex-direction: column;
}
.section, .aside {
width: 100%;
}
}
@media only screen and (max-width: 720px) {
footer {
display: flex;
flex-direction: column;
align-items: center;
}
}
@media only screen and (max-width: 720px) {
#formulario-contacto {
position: static;
text-align: center;
width: 100%;
margin-top: 20px;
}
}
button {
background-color: dodgerblue;
cursor: pointer;
}
#print-btn {
background-color: red;
border: 5px solid;
border-radius: 25px;
text-transform: uppercase;
text-align: center;
font-size: 15px;
line-height: 20px;
margin-top: 30px;
}