-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
88 lines (72 loc) · 1.73 KB
/
style.scss
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
// Sobrescribe las variables de color
$primary: #5265E1;
$secondary: #FA5959;
// Actualiza los colores temáticos de Bootstrap con tus propios valores
$theme-colors: (
"primary": $primary,
"secondary": $secondary
);
.btn-bd-primary {
--bs-btn-font-weight: 600;
--bs-btn-color: var(--bs-white);
--bs-btn-bg: var(--bd-violet-bg);
--bs-btn-border-color: var(--bd-violet-bg);
--bs-btn-hover-color: var(--bs-white);
--bs-btn-hover-bg: #{shade-color($bd-violet, 10%)};
--bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)};
--bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
--bs-btn-active-color: var(--bs-btn-hover-color);
--bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
--bs-btn-active-border-color: #{shade-color($bd-violet, 20%)};
}
#hoverA:hover{
color: #FA5959;
}
#hover-bp:hover{
background-color: white;
border-color: #5265E1;
color: #5265E1;
}
.deco{
position: relative;
}
.deco::after {
content: "";
top: 0;
left: 10rem;
position: absolute;
width: 100%;
height: 100%;
background-color: #5265E1;
border-radius: 10rem 0px 0px 10rem;
margin-top: 300rem;
}
.margenTop {
margin-top: 5rem;
}
#home-tab {
border: none;
color: rgb(23, 32, 42);
}
#home-tab:active, #home-tab:focus{
border-bottom: 0.3rem solid #FA5959;
font-weight: bold;
}
#profile-tab{
border: none;
color: rgb(23, 32, 42);
}
#profile-tab:active, #profile-tab:focus{
border-bottom: 0.3rem solid #FA5959;
font-weight: bold;
}
#contact-tab{
border: none;
color: rgb(23, 32, 42);
}
#contact-tab:active, #contact-tab:focus{
border-bottom: 0.3rem solid #FA5959;
font-weight: bold;
}
// Importa el archivo principal de Bootstrap después de tus modificaciones
@import "./node_modules/bootstrap/scss/bootstrap";