36 lines
945 B
CSS
36 lines
945 B
CSS
/* Change shadow colors and Foundry general font color!! */
|
|
.app {
|
|
box-shadow: 0 0 20px #7e4444; /* Change the color code here for a nice shadow color! */
|
|
color: #dfdfdf; /* Text color for window titles and menu all across Foundry */
|
|
}
|
|
|
|
/* Character and Item Name Titles Text style! */
|
|
.sandbox.sheet .charname input {
|
|
color: #191813;
|
|
font-family: "Signika", sans-serif;
|
|
font-size: 30px;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* custom styles */
|
|
body.system-totem img#logo {
|
|
content: url("/systems/totem/assets/images/ui/logo_totem_foundry.webp");
|
|
height:auto;
|
|
}
|
|
|
|
|
|
/* Customize the chat roll area! */
|
|
#chat-form textarea {
|
|
/*background: url(systems/totem/assets/images/ui/box_background.png) repeat;
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
color: black; */
|
|
}
|
|
|
|
/* Customize the chat history area! */
|
|
#chat-log .message {
|
|
/*background: url(systems/totem/assets/images/ui/box_background.png) repeat;
|
|
color: #191813; */
|
|
}
|
|
|