-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.css
89 lines (67 loc) · 1.26 KB
/
contacto.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
* {
margin: 0;
padding:0;
box-sizing: border-box;
}
body {
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
}
.container{
height: 450px;
width: 300px;
box-shadow: 0 10px 20px #000;
background-size: cover;
justify-content: center;
align-items: center;
text-align: center;
overflow: hidden;
font-family: sans-serif;
}
.shape {
background-color: #002244;
height: 250px;
width: 400px;
margin-left: -20px;
position: relative;
top: -80px;
box-shadow: 0 2px 15px #000;
transform: rotate(25deg);
}
.image {
height: 100px;
width: 100px;
background-image: url(marca_personal.jpg);
position: relative;
top: 200px;
margin-left: 170px;
background-size: cover;
border: none;
border-radius: 50%;
box-shadow: 0 2px 15 px rgb(58,54, 54);
transform: rotate(-22deg);
}
.title{
font-size: 15px;
padding-bottom: 6px;
color: #002244
}
h3 {
margin-bottom: 10px;
}
p{
text-align: center;
padding-left:30px ;
padding-right: 30px;
line-height: 2;
color: black;
font-size: 15px;
}
.icons i{
margin-left: 10px;
font-size: 20px;
transition: 3s;
color: #002244;
}