Quellcode durchsuchen

Better styling

tags/v0.2.8
Fen Dweller vor 7 Jahren
Ursprung
Commit
a222ac03d3
3 geänderte Dateien mit 37 neuen und 3 gelöschten Zeilen
  1. +8
    -1
      feast.css
  2. +28
    -1
      feast.html
  3. +1
    -1
      feast.js

+ 8
- 1
feast.css Datei anzeigen

@@ -3,7 +3,12 @@ body {
color: #eee;
height: 100%;
width: 100%;
font-family: sans-serif;
font-family: Arial;
}

a {
color: #7777FF;
text-decoration: none;
}

body.combat {
@@ -145,6 +150,8 @@ button {
}

#create {
color: #eee;
padding: 25px;
text-align: center;
}



+ 28
- 1
feast.html Datei anzeigen

@@ -25,7 +25,15 @@
<div id="game">
<div id="game-and-stats">
<div id="log">
Welcome to Feast v0.1.4
<div>
Welcome to Feast v0.1.5
</div>
<div>
&nbsp;
</div>
<div>
It's early morning, and you feel like eating a bunch of people
</div>
</div>
<div class="stats">
<div id="player-stats">
@@ -144,6 +152,25 @@
</div>
</div>
<div id="create">
<p>
Welcome to Feast v0.1.5
</p>

<p>
<b>This game features 18+ content</b>
</p>

<p>
<a href="/feast">Changelog</a>
</p>

<p>
<a href="https://t.me/joinchat/BSXHzQp-Isn9N9XgT2QRpw">Telegram</a>
</p>

<p>
<a href="https://discord.gg/7pdcVhD">Discord</a>
</p>
<form id="character-form">
<ul id="character-form-list">
<li>


+ 1
- 1
feast.js Datei anzeigen

@@ -302,7 +302,7 @@ function start() {
world = createWorld();
currentRoom = world["Bedroom"];
respawnRoom = currentRoom;
moveTo(currentRoom);
moveTo(currentRoom,"");
updateDisplay();
}



Laden…
Abbrechen
Speichern