-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
107 lines (86 loc) · 1.82 KB
/
styles.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Josefin Sans', sans-serif;
}
body {
padding-top: 30rem; /* Adjust this value based on your navbar height */
}
section {
scroll-margin-top: 5rem; /* Adjust this value based on your navbar height */
}
.mainbg {
background-color: #b8e0d2;
}
@media(max-width:767px) {
.mainbg {
background-color: #b8e0d2;
}
}
.bg{
background-color: #9297c4;
}
.navbar{
padding:0;
}
.navbar-toggler:focus {
box-shadow: none;
}
@media(max-width:767px) {
.ul-bg {
background-color: #9297c4;
}
}
.navbar-brand:hover {
color:#2c666e !important
}
nav .nav-item a:hover{
color: #2c666e !important
}
.animated-text {
transform-origin: center;
transition: transform 1s ease-in-out;
}
.animated-text:hover {
animation: rotateAnimation 2s ease-in-out;
}
@keyframes rotateAnimation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.bg-hover:hover {
background-color: #9297c4;
color: white;
}
.custom-btn {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.custom-btn-primary {
color: #fff;
background-color: #9297c4;
border-color: #9297c4;
}
.custom-btn-primary:hover {
color: #fff;
background-color: #9297c4;
border-color: #9297c4;
}