|
| 1 | +:root { |
| 2 | + --primary-color: #87D7E3; |
| 3 | +} |
| 4 | + |
1 | 5 | .navbar {
|
2 |
| - background-color: rgb(69, 179, 196) !important; |
| 6 | + background-color: var(--primary-color) !important; |
3 | 7 | }
|
4 | 8 |
|
5 |
| -#navbar > ul.navbar-nav > li.nav-item a:hover { |
6 |
| - background-color: rgb(69, 179, 196) !important; |
| 9 | + |
| 10 | +#navbar > ul.navbar-nav > li.nav-item > a { |
| 11 | + color: rgba(255, 255, 255, 0.55); |
7 | 12 | }
|
8 | 13 |
|
9 |
| -.navbar-dark .navbar-nav .nav-link { |
10 |
| - color: rgba(255,255,255,0.70) !important; |
| 14 | +.navbar-dark .navbar-nav .active > .nav-link { |
| 15 | + background-color: var(--primary-color) !important; |
| 16 | + color: #fff !important; |
11 | 17 | }
|
12 | 18 |
|
13 |
| -.navbar-dark .navbar-nav .active>.nav-link { |
14 |
| - background-color: rgb(69, 179, 196) !important; |
15 |
| - color: #fff !important; |
| 19 | +.navbar-brand { |
| 20 | + color: #fff !important; |
| 21 | +} |
| 22 | + |
| 23 | +#navbar > ul.navbar-nav > li.nav-item a:hover { |
| 24 | + background-color: var(--primary-color) !important; |
16 | 25 | }
|
17 | 26 |
|
18 | 27 | .navbar-dark input[type="search"] {
|
19 |
| - background-color: #fff !important; |
20 |
| - color: #444 !important; |
| 28 | + background-color: #fff !important; |
| 29 | + color: #444 !important; |
21 | 30 | }
|
22 | 31 |
|
23 | 32 | nav .text-muted {
|
24 |
| - color: #d8d8d8 !important; |
| 33 | + color: #d8d8d8 !important; |
25 | 34 | }
|
26 | 35 |
|
27 | 36 | a {
|
28 |
| - color: rgb(69, 179, 196); |
| 37 | + color: var(--primary-color); |
29 | 38 | }
|
30 | 39 |
|
31 | 40 | a:hover {
|
32 |
| - color: rgb(63, 162, 177); |
| 41 | + color: #2c2b2b; |
33 | 42 | }
|
34 | 43 |
|
35 | 44 | button.btn.btn-primary.btn-copy-ex {
|
36 |
| - background-color: rgb(69, 179, 196); |
37 |
| - border-color: rgb(69, 179, 196); |
| 45 | + background-color: var(--primary-color); |
| 46 | + border-color: var(--primary-color); |
| 47 | +} |
| 48 | + |
| 49 | +.home { |
| 50 | + left: 0px; |
| 51 | + position: absolute; |
| 52 | + padding: 8px 30px; |
| 53 | + color: rgba(255,255,255,0.55); |
| 54 | +} |
| 55 | + |
| 56 | +.home:hover { |
| 57 | + color: rgba(255,255,255,0.9); |
38 | 58 | }
|
0 commit comments