-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (67 loc) · 1.55 KB
/
Copy pathstyles.css
File metadata and controls
75 lines (67 loc) · 1.55 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
body {
padding: 0;
margin: 0;
width: 100%;
}
.container-fluid {
padding-left: 0;
padding-right: 0;
}
.navbar {
margin-bottom: 0;
border-radius: 0;
background-color: #343a40; /* Color de fondo oscuro */
color: #ffffff; /* Color del texto en blanco */
}
.navbar .navbar-brand,
.navbar .nav-link {
color: #ffffff; /* Color del texto en blanco */
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
color: #cccccc; /* Color del texto al pasar el mouse */
}
.navbar .navbar-toggler {
border-color: rgba(255, 255, 255, 0.1); /* Color del borde del toggler */
}
.navbar .navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar .form-control {
margin-right: 10px;
}
.navbar .btn {
color: #ffffff;
background-color: #6c757d;
border-color: #6c757d;
}
.navbar-default {
border: none;
}
.content-section {
text-align: center;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.contact-icons {
font-size: 2em;
margin: 20px 0;
}
.contact-icons a {
margin: 0 15px;
color: #FFFFFF;
text-decoration: none;
}
.contact-icons a:hover {
opacity: 0.7;
color: #FFFFFF;
}
.profile-image {
width: 300px;
height: 300px;
border-radius: 50%;
object-fit: cover;
margin: 20px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}