mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
32 lines
582 B
CSS
32 lines
582 B
CSS
.sheet-container {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
header {
|
|
background-color: lightgray;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.dropdown {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
/*----------- Tabs Setup -------------*/
|
|
|
|
|
|
/*Configure the tab buttons*/
|
|
.charsheet .sheet-talenttraits,
|
|
.charsheet .sheet-otherstuff
|
|
{
|
|
display: none;
|
|
}
|
|
|
|
/* show the selected tab */
|
|
.charsheet .sheet-tabstoggle[value="talenttraits"] ~ div.sheet-talenttraits,
|
|
.charsheet .sheet-tabstoggle[value="otherstuff"] ~ div.sheet-otherstuff
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
/*----------- End Tab Setup -----------*/ |