1Welcome to code grepper community.
2https://www.codegrepper.com/app/profile.php?id=57722
3We are happy you are here.
1Welcome to code grepper community.
2https://www.codegrepper.com/app/profile.php?id=57722
3We are happy you are here.
4
5
1//O Hello! Welcome to the first
2//Query & Answer system for coders.
3
4//Grepper answers like this will popup
5//when you google search a code related problem.
6
7//If nothing pops up, You can add answers to your
8//search query by pressing “a” from google
9//or by clicking on the “easy code snag” button |G| on
10//any code snippets around the web you come across,
11//that code snippet will popup for you and others
12//the next time you run into the same problem.
13
14//P.S. Show your gratitute if an answers helps you,
15//by upvoting it or donating to the developer.
16
17//Holla at us with questions, concerns or your lonely
18//and want to talk: support@codegrepper.com
1 /* change the background color */
2.navbar-custom {
3 background-color: #ffffff;
4}
5/* change the brand and text color */
6.navbar-custom .navbar-brand,
7.navbar-custom .navbar-text {
8 color: #F827F6;
9 padding: 0.8rem 1rem;
10}
11/* change the link color and add padding for height */
12.navbar-custom .navbar-nav .nav-link {
13 color: red;
14 padding: 1rem 1rem;
15}
16/* change the color of active or hovered links */
17.navbar-custom .nav-item.active .nav-link,
18.navbar-custom .nav-item:hover .nav-link {
19 color: #ffffff;
20 background-color: #ee4400; /* add background-color to active links */
21}.navbar-custom {
22 background-color: #ff5500;
23}
24
25/* change the brand and text color */
26.navbar-custom .navbar-brand,
27.navbar-custom .navbar-text {
28 color: rgba(255,255,255,.8);
29}
30
31/* change the link color */
32.navbar-custom .navbar-nav .nav-link {
33 color: red;
34}
35
36/* change the color of active or hovered links */
37.navbar-custom .nav-item.active .nav-link,
38.navbar-custom .nav-item:hover .nav-link {
39 color: #ffffff;
40}
41
42/* for dropdown only - change the color of droodown */
43.navbar-custom .dropdown-menu {
44 background-color: #ff5500;
45}
46.navbar-custom .dropdown-item {
47 color: #ffffff;
48}
49.navbar-custom .dropdown-item:hover,
50.navbar-custom .dropdown-item:focus {
51 color: #333333;
52 background-color: rgba(255,255,255,.5);
53}