Browse Source

Add link coloring to styles.

master
Ben Kurtovic 7 years ago
parent
commit
681030e8d6
4 changed files with 32 additions and 0 deletions
  1. +8
    -0
      static/styles/amarr.css
  2. +8
    -0
      static/styles/caldari.css
  3. +8
    -0
      static/styles/gallente.css
  4. +8
    -0
      static/styles/minmatar.css

+ 8
- 0
static/styles/amarr.css View File

@@ -5,3 +5,11 @@ body {
main, header, footer {
border-color: #5F4A26;
}

a {
color: #FFDE78;
}

a:hover {
color: #DDBE68;
}

+ 8
- 0
static/styles/caldari.css View File

@@ -5,3 +5,11 @@ body {
main, header, footer {
border-color: #364A5F;
}

a {
color: #99CCEE;
}

a:hover {
color: #88BBDD;
}

+ 8
- 0
static/styles/gallente.css View File

@@ -5,3 +5,11 @@ body {
main, header, footer {
border-color: #365F4A;
}

a {
color: #66BB99;
}

a:hover {
color: #60AA90;
}

+ 8
- 0
static/styles/minmatar.css View File

@@ -5,3 +5,11 @@ body {
main, header, footer {
border-color: #5F3C42;
}

a {
color: #D89988;
}

a:hover {
color: #C88070;
}

Loading…
Cancel
Save