-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (66 loc) · 1.37 KB
/
Copy pathstyles.css
File metadata and controls
66 lines (66 loc) · 1.37 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
* {
margin: 0;
padding: 0;
}
.navbar-brand {
font-family: 'Montserrat', sans-serif;
}
header > div {
background: linear-gradient(90deg, rgba(58,66,72,1) 0%, rgba(22,24,25,1) 57%);
}
.img-fluid {
padding-top: 63px;
}
.text-box {
position: absolute;
top: 100px;
left: 60%;
background-color: rgba(22,24,25,0.2);
}
.text-box > h1 {
font-family: 'Poppins';
color: white;
margin-bottom: 0;
}
.text-box > p {
font-family: 'Montserrat', sans-serif;
color: #c0392b;
font-size: 1.25em;
}
.section-title {
padding: 40px 0;
}
.section-title h3 {
font-size: 46px;
text-align: center;
border-bottom: 1px solid rgba(22,24,25,0.2);
}
.card {
margin: 0 auto;
}
#contacto {
background: linear-gradient(0deg, rgba(52,73,94,1) 0%, rgba(255,255,255,1) 98%);
padding: 0 0 40px 0;
}
footer {
background-color: #6c757d;
color: white;
padding: 40px 0;
}
.footer-brand {
color: #d35400;
}
.contact-icons {
text-align: right;
font-size: 28px;
text-shadow: 2px 2px 1px #1f1f1f;
transition: transform 0.3s ease-out;
}
.contact-icons i:hover {
transform: translateY(8px);
}
.contact-icons i {
padding: 16px;
}