-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
89 lines (77 loc) · 1.61 KB
/
estilo.css
File metadata and controls
89 lines (77 loc) · 1.61 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
*{
padding: 0%;
margin: 0;
font-family: "ubuntu", sans-serif;
color: #fff;
}
body{
background-color: #1c1c1c ;
}
/* ==========CONTENEDOR TOTAL========== */
.contenedor{
width: 75%;
height: 500px;
margin: auto;
}
/* ==========CONTENEDOR MI CONTACTO=========== */
.mi_contacto{
position: fixed;
bottom: 10px;
right: 0;
line-height: 30px;
text-align:center;
width: 150px;
}
.mi_contacto a{
display: inline-block;
text-decoration: none;
text-align: center;
background-color: rgba(126, 126, 126, 0.191);
width: 100px;
border-radius: 5px;
}
/* ==========TITULO 'MIS REDES'========== */
.titulo{
position: relative;
text-align: center;
top: 100px;
}
/* ==========CONTENEDOR REDES========== */
.redes{
position: relative;
top: 150px;
}
.redes a {
display: block;
text-align: center;
text-decoration: none;
margin-bottom: 10px;
line-height: 50px;
border-radius: 5px;
}
/* ==========COLOR REDES========== */
#insta{
background-color: #d62b7e;
}
#face{
background-color: #2522e3;
}
#youtu{
background-color: #c91a1a;
}
#tik_tok{
background-color: #301b30;
border-bottom: 1px solid #0a74a6;
border-top: 1px solid #c71e1e ;
}
#discort{
background-color: #262552;
}
#wp{
background-color: #0f6e2a;
}
@media screen and (max-height: 615px) {
.mi_contacto{
top: 0;
}
}