Compare commits
No commits in common. "52df7b1768f10dc6a63daab7f9b243686ee08a9f" and "34c8d7223bf41d8c1b788779b3e5f422eccb0a7c" have entirely different histories.
52df7b1768
...
34c8d7223b
@ -1,117 +0,0 @@
|
||||
/*
|
||||
------------------------------------------
|
||||
Prettier login screen by u/TheEpicSnowWolf
|
||||
based on code by u/bass-blowfish
|
||||
------------------------------------------
|
||||
*/
|
||||
|
||||
/* CONFIGURATION AREA */
|
||||
#join-game, .watermark {
|
||||
/* Replace "url(data:image...)" with "url("PATH_TO YOUR_IMAGE")".
|
||||
Keep as is if you don't want to add images. */
|
||||
--login-world-logo: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
|
||||
--login-footer-logo: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
|
||||
|
||||
/* Change this to adjust the size of the footer logo */
|
||||
--login-footer-logo-height: 25px;
|
||||
|
||||
/* Here you can change the base and hover color for the buttons
|
||||
on the login form. */
|
||||
--login-button-color: rgb(150, 12, 16);
|
||||
--login-button-color-hover: rgb(228, 9, 19);
|
||||
|
||||
/* Change to "inherit" if you want to keep the text title.
|
||||
You then also need to remove the "World Logo" declaration. */
|
||||
--login-show-text-title: none;
|
||||
}
|
||||
|
||||
/* World Logo - REMOVE THIS IF YOU WANT A TEXT TITLE */
|
||||
#join-game #world-title {
|
||||
background: var(--login-world-logo);
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
height: 120px !important;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Footer Logo */
|
||||
body.vtt.players .watermark:before {
|
||||
display: block;
|
||||
content: " ";
|
||||
background: var(--login-footer-logo);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
width: 100%;
|
||||
height: var(--login-footer-logo-height);
|
||||
margin-top: calc(calc(var(--login-footer-logo-height) * -1) - 5px);
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Hide world description and session info */
|
||||
#join-game .right.flexcol, #join-game .app:not(#world-title) h1, #join-game .left.flexcol .app:nth-of-type(2) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* World title visibility */
|
||||
#join-game #world-title h1 {
|
||||
display: var(--login-show-text-title);
|
||||
}
|
||||
|
||||
/* Login mask width and position */
|
||||
#join-game {
|
||||
width: 400px !important;
|
||||
top: calc(50% - 300px) !important;
|
||||
}
|
||||
|
||||
/* Restyle inputs */
|
||||
#join-game input, #join-game select, #join-game button {
|
||||
min-height: 40px;
|
||||
padding: 10px !important;
|
||||
border: none !important;
|
||||
font-size: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Restyle buttons */
|
||||
#join-game button {
|
||||
background: var(--login-button-color);
|
||||
border: none;
|
||||
color: #fff;
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
||||
#join-game button:hover {
|
||||
background: var(--login-button-color-hover);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Top align form labels */
|
||||
#join-game .form-group {
|
||||
clear: both;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: 10px;
|
||||
margin-top: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#join-game .form-group label {
|
||||
line-height: 31px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Hide placeholder text */
|
||||
#join-game input[type="password"]::placeholder {
|
||||
color:transparent;
|
||||
}
|
||||
|
||||
/* Change login button icon */
|
||||
#join-game button[name="join"] i.fas.fa-check {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#join-game button[name="join"]:after {
|
||||
content: "\1F846";
|
||||
}
|
@ -7,15 +7,5 @@ wget https://raw.githubusercontent.com/TheEpicSnowWolf/Foundry-VTT-Prettier-Logi
|
||||
# Replace the BASE64 Data with the DND Logo
|
||||
sed -i -e 's+url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=)+url("https://static.dnd.theepicsnowwolf.com/naoulan/foundry/dnd_logo.svg")+g' ./foundry_login.css
|
||||
|
||||
# Replace Red with James' Blue
|
||||
sed -i -e 's+rgb(150, 12, 16)+rgb(0, 150, 136)+g' ./foundry_login.css
|
||||
sed -i -e 's+rgb(228, 9, 19)+rgb(0, 188, 170)+g' ./foundry_login.css
|
||||
|
||||
# Make the Width responsive
|
||||
sed -i -e 's+width: 400px !important;+width: 90% !important;+g' ./foundry_login.css
|
||||
|
||||
# Append to the Foundry Style.css
|
||||
cat ./foundry_login.css >> /home/foundry/resources/app/public/css/style.css
|
||||
|
||||
# Note: this is how dockerized Foundry likes to handle the sed... or linux... whatever it's a note, don't read into it
|
||||
#sed -i -e 's+A+B+g' ./foundry_login.css
|
||||
|
Loading…
Reference in New Issue
Block a user