Files
2024-08-01 15:05:02 -04:00

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 -----------*/