Page 2 of 2

Re: Mod Index and guide

Posted: Tue Jul 30, 2019 11:26 pm
by King of Worms
Filled in the DREAM mod to start it up...

Re: Mod Index and guide

Posted: Wed Jul 31, 2019 4:28 pm
by jayhova
King of Worms wrote: Tue Jul 30, 2019 11:26 pm Filled in the DREAM mod to start it up...
Really great job!
43077258-cartoon-guy-thumbs-up-character-vector-illustration[1].jpg
43077258-cartoon-guy-thumbs-up-character-vector-illustration[1].jpg (106.79 KiB) Viewed 4670 times

Re: Mod Index and guide

Posted: Wed Jul 31, 2019 5:10 pm
by Hazelnut
Do you need me to do this Jayhova? I'm really darn busy at the moment and all my mod info is detailed here on the forums.

Re: Mod Index and guide

Posted: Wed Jul 31, 2019 6:07 pm
by King of Worms
jayhova wrote: Wed Jul 31, 2019 4:28 pm
King of Worms wrote: Tue Jul 30, 2019 11:26 pm Filled in the DREAM mod to start it up...
Really great job!
Spoiler!
43077258-cartoon-guy-thumbs-up-character-vector-illustration[1].jpg
Cant see the spoiler unfortunatelly ;)

Re: Mod Index and guide

Posted: Wed Jul 31, 2019 6:59 pm
by jayhova
Looks fine when I get rid of the spoiler tags
head-scratch[1].jpg
head-scratch[1].jpg (27.87 KiB) Viewed 4653 times

Re: Mod Index and guide

Posted: Thu Aug 08, 2019 6:33 am
by jayhova
For those of you interested, I have placed a published version on an actual web page. I'd like to figure out how to correctly center the DIV in the viewport. Any of you CSS gurus have the answer let me know. If you are interested in expanding this and are a developer let me know. I'm eventually going to place a background on this to make it a bit nicer. Feel free to give feed back.

Re: Mod Index and guide

Posted: Tue Aug 13, 2019 1:39 am
by jayhova
Update!:
I have worked a bit more on getting the page to look better. I fixed a problem with the doc where everything was in a table. I've been fighting the CSS to get this properly centered but it still looks wonky. This page should be around for at least the next 3 years. The link below is also on the first post. Clicking on a mod in the list takes you to the entry for that mod.

The current implementation of this is live

Again, right now I am going to be testing with a few mod developers and getting some feedback. The goal is to provide a comprehensive list of mods to help users select ones that seem the most interesting. I am looking for the sweet spot between brief and informative. Feel free to provide feedback. You may either post in this thread or DM me. If you are willing to write a mod description or eight please message me.

Here is the original google doc
https://docs.google.com/document/d/e/2P ... ahEfpE/pub

Re: Mod Index and guide

Posted: Tue Aug 13, 2019 5:12 pm
by King of Worms
About the mods listed there
I - quite obviously - think, that all dream recomended mods should be there.
They are really good ;)

Re: Mod Index and guide

Posted: Tue Aug 13, 2019 6:31 pm
by jayhova
I'd like all mods in the featured mods to be there. Feel free to add or edit any mod you like. I'd like the actual mod authors to edit their own entries but it is by no means necessary. An author can always change entries. Of course I'd like people other than me to be able to add entries. Until someone else reads the directions and adds an entry I have no idea whether the directions need to be altered. There are lots of people I have not directly contacted, so if you are reading this and want to help expand this document send me a message.

Re: Mod Index and guide

Posted: Thu Aug 15, 2019 11:36 pm
by jayhova
Okay so all the mods currently in the featured mods forum have an entry in the guide. The index fits on a single page. All that is left is to get people to add descriptions, links, etc. The link to the webpage is underlair.com/mods.html .

Below is the HTML /CSS I used to display the doc. you can put it up anywhere.

Code: Select all

<!DOCTYPE html>
<html lang="en">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width" />
	<title>Mods for DFU Quick Guide</title>
	
	<style type="text/css">html, body { 
    background-image: url(https://cdn.shortpixel.ai/client/q_glossy,ret_img/https://www.underlair.com/wp-content/uploads/2017/04/nature-france-rocks-caves-compressed.jpg);
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: green;
    overflow: hidden;
    height:100%;
    text-align: center
}

.iframe-container {
    display: inline-block;
    overflow: hidden;
    position: relative;
    clear: both;
    margin: 0 auto;
    height: 100%;
    // border: 3px solid white;
}
 
.iframe-container iframe {


    display: block;
    height: 100%;
    width: 830px;
//  border: 3px solid #73AD21;
}
	</style>
</head>
<body>
<div class="iframe-container"><iframe frameborder="0" scrolling="yes" src="https://docs.google.com/document/d/e/2PACX-1vS2JGtHtBKCW69b1cy-9Cg_XVNg3a-ydB2a0pUZ0rbPIny2T-xKw5DAJJsdm4_apqQYbOQUDYahEfpE/pub?embedded=true"></iframe></div>
</body>
</html>