Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.css « css « static - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a0f2f3fe84c20a2115cc98a10518f85b74756eb (plain)
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
header .navbar .navbar-nav a {
    color: var(--text-color) !important;
}

#theme-toggle {
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
}

.navbar-toggler {
    border: none;
    outline: none;
    color: var(--text-color);
}
.navbar-toggler svg {
    fill: currentColor;
    color: var(--text-color);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 .05em;
}
.navbar-text {
    font-size: 16px !important;
    opacity: 0.95;
}
header .nav-link{
    transition: none !important;
}
.navbar-brand {
    color: var(--primary-color) !important;
    opacity: 0.95;
} 
.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

li > .dropdown-toggle:focus{
    color: var(--primary-color) !important;
}

.dropdown-menu {
    background-color: var(--background-color) !important;
    border-color: var(--text-secondary-color) !important;
}

.dropdown-item:hover {
    background-color: var(--secondary-color) !important;
}

.dropdown-item:focus, .dropdown-item:active {
    background-color: var(--secondary-color) !important;
}