More actions
m Change links to other Uni-wiki pages to internal links. Did some "fixing" On some color code that has been in there since the creation but showed up as visible text instead. |
m Put quote into {{Quote}}. Add "Flashy" CSS. It was used but the CSS was not on the page. |
||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ <!-- In page CSS at the end of the page --> | ||
= How to Avoid Losses to War Targets - Starter Edition = | = How to Avoid Losses to War Targets - Starter Edition = | ||
==FIRST THINGS FIRST:== | |||
{{Quote | |||
|Welcome to EVE Online. If you are not busy looking for ways to kill, harass, or at least mildly inconvenience another player, you got a lot of catching up to do.<br> | |||
Remember: Hi-sec is safer, not safe.<br> | |||
CONCORD provides consequences, not security.<br> | |||
EVE Online provides a "PVP FLAG" button. It's labeled and known as the "Undock" button.<br> | |||
EVE Online is, at its core, a (non-consensual) PVP game. | |||
-Unnamed CCP Dev}} | |||
So let's make it clear: it's dangerous in New Eden! And it's particularly dangerous for unwary Unistas when the Uni is at war! <br> | So let's make it clear: it's dangerous in New Eden! And it's particularly dangerous for unwary Unistas when the Uni is at war! <br> | ||
| Line 150: | Line 149: | ||
[[Category:PvP]] | [[Category:PvP]] | ||
{{#css: | |||
@keyframes flashy { | |||
50% { opacity: 0; } | |||
} | |||
@-webkit-keyframes flashy { | |||
50% { opacity: 0; } | |||
} | |||
@-moz-keyframes flashy { | |||
50% { opacity: 0; } | |||
} | |||
@-o-keyframes flashy { | |||
50% { opacity: 0; } | |||
} | |||
.flashy img { | |||
animation-name: flashy; | |||
animation-duration: .5s; | |||
animation-timing-function: linear; | |||
animation-iteration-count: infinite; | |||
animation-direction: alternate; | |||
-webkit-animation-name: flashy; | |||
-webkit-animation-duration: .5s; | |||
-webkit-animation-timing-function: linear; | |||
-webkit-animation-iteration-count: infinite; | |||
-webkit-animation-direction: alternate; | |||
-moz-animation-name: flashy; | |||
-moz-animation-duration: .5s; | |||
-moz-animation-timing-function: linear; | |||
-moz-animation-iteration-count: infinite; | |||
-moz-animation-direction: alternate; | |||
-o-animation-name: flashy; | |||
-o-animation-duration: .5s; | |||
-o-animation-timing-function: linear; | |||
-o-animation-iteration-count: infinite; | |||
-o-animation-direction: alternate; | |||
} | |||
}} | |||