view misc/misc.css @ 2833:d0e186348cb2 default tip

Add mention of soft level limitation to 'Eightleg woods'.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 26 May 2024 20:33:53 +0300
parents f8f50ff19dd0
children
line wrap: on
line source

body {
  background: black;
  color: white;
  font-family: Arial, Verdana, sans-serif;
  padding: 0;
  margin: 0;
}

body > h1 {
  margin: 0;
  font-size: 1.5em;
  background: #222;
  padding: 0.3em;
}


#tooltip {
  position: absolute;
  display: none;

  min-width: 200px;
  max-width: 500px;
  padding: 0.5em;
  border: 0.2em solid gray;

  background: white;
  color: black;
  border-radius: 0.5em;
  font-size: 0.75em;

  z-index: 15;
}

#tooltip h1 {
  font-size: 1.1em;
  margin: 0;
  padding: 0;
}

#tooltip .names {
  color: red;
}

#tooltip .freeform {
}

pre.map {
}

#smap {
  position: absolute;
  left: 0;
  right: 20%;
  top: 2.5em;
  bottom: 0;
  margin: 0;
  padding: 0;
  overflow: auto;
  text-align: center;
  font-size: 1.25em;
}

#smap.old {
}

#smap.old .loc {
  color: white !important;
}

#smap.new {
  font-weight: bold;
}

#smap a.loc {
  background: black;
  color: red;
  text-decoration: none;
}

#smap a.loc:hover {
  background: white;
  color: red;
}


#loclist {
  background: black;
  color: white;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 19%;
  z-index: 10;
  border-left: 0.2em solid gray;
  overflow: auto;
  font-size: 0.75em;

  padding: 0.5em;
}

#loclist a.item {
  display: block;
  color: red;
  text-decoration: none;
  padding: 0.1em;
}

#loclist a.item:hover {
  background: #666;
}

#loclist a.item.ltguild.lt1  {
  color: #080;
}

#loclist a.item.ltguild.lt2  {
  color: #0f0;
}

#loclist a.item.ltgov.lt0 {
  color: #f0f;
}

#loclist a.item.ltgov.lt1 {
  color: #a0a;
}

#loclist a.item.ltgov.lt2 {
  color: #ff0;
}

#loclist a.item.ltshop {
  color: #cc0;
}

#loclist a.item.ltprimary {
}

#loclist a.item.ltsubitems {
  text-decoration: underline;
}

#loclist a.item.ltsecondary {
  padding-left: 1em;
}

#loclist a.item.ltsecondary::before {
  content: "•";
  padding-right: 0.5em;
}


.lochilite {
  color: white !important;
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% { background: #000; }
  50% { background: #f00; }
  100% { background: #000; }
}

.locactive {
  background: white !important;
  color: red !important;
}