Browse Source

design: change color of links in dark mode

pull/5/head
Rohan Verma 6 years ago
parent
commit
a0b6ca94fe
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      assets/css/custom.css

+ 8
- 0
assets/css/custom.css View File

color: #422eff; color: #422eff;
border-bottom: 1px solid #00ff9c; border-bottom: 1px solid #00ff9c;
} }
.dark a {
color: rgb(82, 174, 255);
border-bottom: 1px solid rgb(0, 204, 125);
}
.light a:hover { .light a:hover {
color: #000; color: #000;
background-color: #00ff9c; background-color: #00ff9c;
} }
.dark a:hover {
color: #333;
background-color: #00ff9c;
}
.muted, .help-block { .muted, .help-block {
opacity: 0.70; opacity: 0.70;
} }

Loading…
Cancel
Save