mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
* Alice Is Missing Character Sheet Adding the Alice Is Missing character sheet to the repository. * Alice Is Missing JSON Correction Corrected the incorrect JSON syntax * Update JSON Added Instructions to JSON * UpdateAgainJSON Another update to JSON for instructions * JSON Syntax Correction I'm new at this, updated syntax
36 lines
598 B
CSS
36 lines
598 B
CSS
@import url('https://fonts.googleapis.com/css?family=Oswald&display=swap');
|
|
|
|
.sheet-secret{
|
|
font-family: 'Oswald';
|
|
}
|
|
|
|
.sheet-container-1{
|
|
display:flex;
|
|
justify-content:space-between;
|
|
font-family: 'Oswald';
|
|
}
|
|
|
|
.sheet-column{
|
|
display:flex;
|
|
flex-direction:column;
|
|
flex-basis:30%;
|
|
}
|
|
|
|
textarea { height: 60px; }
|
|
input { width:100%;}
|
|
|
|
.sheet-container-1 div{
|
|
padding:3px;
|
|
}
|
|
|
|
button {
|
|
background-color: #4CAF50; /* Green */
|
|
border: none;
|
|
color: white;
|
|
padding: 15px 32px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
}
|