-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (103 loc) · 1.74 KB
/
style.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
/*el largo maximo del contenido*/
.box {
max-height: 330px;
}
/*color personalizado para los botones*/
.btn-primary.custom-btn {
color: white;
background-color: #0caa92;
border-color: #0caa92;
}
.btn-primary:hover {
color: #40af9f;
background-color: #097968 !important;
border-color: #097968 !important;
}
.bgcolor {
background-color: black;
}
/*fondo de video*/
.video-background {
position: absolute;
width: 100%;
min-height: 66vh;
}
/*posicion del texto*/
.caption {
position: relative;
top: 20%;
width: 100%;
}
.caption h1 {
font-size: 4rem;
letter-spacing: .2rem;
text-shadow: .1rem .1rem .8rem;
padding-bottom: 1rem;
}
.caption h3 {
font-size: 2rem;
letter-spacing: .2rem;
text-shadow: .1rem .1rem .8rem;
padding-bottom: 1rem;
}
a:link {
color: #0caa92;
}
/*posicion de los iconos de las redes*/
.redes {
position: relative;
top: 10%;
width: 100%;
}
.btn-lg {
border-width: medium;
}
.btn.btn-cv {
color: #fff;
background-color: #0caa92;
border-color: #0bceaf;
border-radius: 40px;
}
.btn-cv:hover {
color: #fff;
background-color: #0bceaf;
border-color: #0bceaf;
}
ul {
margin: 0;
padding: 0;
}
/*el borde solo afecta a la clase skills*/
ul li.skills {
border: 1px solid #0bceaf;
padding: 4px 10px;
border-radius: 4px;
color: white;
}
/*acomoda los skills en linea*/
li {
margin: 0px 6px;
margin-bottom: 0px;
border-radius: 4px;
margin-bottom: 10px;
padding: 0px 0px;
display: inline-block;
}
/*MEDIA QUERIES*/
@media (max-width: 768px) {
.box {
max-height: 470px;
}
.caption h1 {
font-size: 2rem;
letter-spacing: .2rem;
text-shadow: .1rem .1rem .8rem;
padding-bottom: 1rem;
}
.caption h3 {
font-size: 1rem;
letter-spacing: .1rem;
text-shadow: .1rem .1rem .8rem;
padding-bottom: 1rem;
}
}