Skip to content

Gitleptune/lantern-startpage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

An easily customisable, minimalist lightweight startpage for Lantern Theme.

Installing

Vivaldi

Go into Settings -> Tabs -> New Tab Page -> Last Option (Enter either file location or url)

Firefox

r/startpages/how-to-set-a-custom-new-tab-page-in-firefox

Other Chromium browsers

chromestore/new-tab-redirect

Configuring

To do any configuration you should fork the repository and then edit the files.

Changing Links

Go into index.html and add new entries with <li><a href="new-link-url">text i want to see</a></li>.

Adding new link boxes

Go into index.html and add a new box with:

<fieldset>
	<legend>text in the border of the box</legend>
	<ul>
		<li><a href="new-link-url">text i want to see</a></li>
	</ul>
</fieldset>

Changing gif

Go into index.html file and change the image source like this: <img src="new-gif-link.gif">

Changing colours

Colour configuration is done via changing 5 variables:

:root {
	--background: #261b17; /* Affects the background of the page */
	--shadow: #1b110e; /* Affects the shadow under the link boxes */
	--accent: #e86420; /* Affects link on hover colour and heading shadow colour */
	--foreground: #e4cbb3; /* Affects the text colour */
	--accent-alt: #e01d1d; /* Affects link on click colour */
}