These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
 

IGB CSS

Author
Kosmoto Gothwen
Frenemy Logicians
#1 - 2012-11-07 17:20:23 UTC
I am in the process of developing a few IGB pages Frenemy Logicians IGB, as a warmup to a big project I have in mind. The next thing on my to-do list is come up with css for it, the plan is to have it appear similar to other in-game windows. What I'm wondering is: Can someone share a page that has these stylings?

Thanks in advance,
Kos
Kosmoto Gothwen
Frenemy Logicians
#2 - 2012-11-07 19:00:04 UTC
Ok so I've come up with some basic css, I still need to find a font that matches, pretty sure that was in a devblog back around the time they launched for the Japanese market. If anyone is interested it's as follows:

body {
margin:10px;
padding:0;
background:#272727;
color:#dddddd;
}

a:link {
color:#E09016;
text-decoration:none;
}

a:visited {
color:#E09016;
text-decoration:none;
}

a:hover {
color:#E09016;
text-decoration:none;
}

a:active {
color:#E09016;
text-decoration:none;
}

# This has a similar appearance to blue boxs in evelopedia
table th {
border-style:solid;
border-color:#3A5779;
border-width:3px 3px 3px 10px;
background:#1B2741;
font-size:18pt;
}
Peter Powers
Terrorists of Dimensions
HORSE-KILLERS
#3 - 2012-11-08 12:00:01 UTC
well guess that only works if you don't change your color theme too much ;)

i don't know if those are supported IGB, if not you might want to hint ccp at them:
http://webdesign.about.com/od/colorcharts/l/blsystemcolors.htm

3rdPartyEve.net - your catalogue for 3rd party applications

Kosmoto Gothwen
Frenemy Logicians
#4 - 2012-11-08 14:09:10 UTC
Peter Powers wrote:
well guess that only works if you don't change your color theme too much ;)

So far so good, and that's the beauty of css, it's easy to change and it effects every page you link it to. The example above is just a starting point, not that I would expect it change much. But the idea is a theme that blends into the game.

Peter Powers wrote:
i don't know if those are supported IGB, if not you might want to hint ccp at them:
http://webdesign.about.com/od/colorcharts/l/blsystemcolors.htm

Yes, the igb is css3 compliant, reason people have had problems in the past is they don't make proper html/css which makes slow pages. Also could do triggers with js but that would add more latency which is already a problem with the igb. Simple is better when it comes to the igb.