tabletop-companion/app/assets/stylesheets/characters.css

107 lines
1.9 KiB
CSS
Raw Normal View History

2024-06-05 17:49:34 +00:00
.character {
background-color: var(--inset-bg-color);
border-radius: var(--border-radius);
padding: 1em;
h5 {
font-size: 1.1em;
margin: 0;
}
h5 a:link, h5 a:visited {
color: inherit;
text-decoration: none;
}
> ul {
padding: 0;
li {
list-style-type: none;
display: inline;
color: var(--secondary-text-color);
font-size: .8em;
&:after {
content: " • ";
}
&:last-child:after {
content: "";
}
}
}
}
.character-sheet-section.top-level {
background-color: var(--inset-bg-color);
}
.character-sheet-section {
border: 1px solid var(--background-color);
border-radius: var(--border-radius);
margin-top: .3em;
h4 {
background-color: var(--background-color);
color: var(--header-text-color);
margin: 0;
padding: .5em;
}
.content {
padding: 1em;
}
}
2024-06-07 15:53:32 +00:00
2024-06-12 16:51:57 +00:00
.stats, .counters {
2024-06-07 15:53:32 +00:00
display: flex;
flex-wrap: wrap;
gap: .2em;
justify-content: center;
}
2024-06-18 07:11:05 +00:00
.stat, .counter, .text-field {
2024-06-07 15:53:32 +00:00
display: flex;
flex-direction: column;
border-radius: var(--border-radius);
2024-06-18 07:43:39 +00:00
h6, .feature-edit-buttons {
2024-06-07 15:53:32 +00:00
font-size: .8em;
text-align: center;
background-color: var(--background-color);
color: var(--header-text-color);
margin: 0;
padding: .5em;
}
2024-06-13 16:04:25 +00:00
input, .stat-value {
2024-06-18 07:11:05 +00:00
font-size: 3em;
width: 2.5em;
}
input, .stat-value, .trix-content {
2024-06-17 14:11:14 +00:00
padding: .5em;
color: var(--text-color);
background-color: var(--input-background);
2024-06-07 15:53:32 +00:00
text-align: center;
2024-06-13 16:04:25 +00:00
border: 1px solid var(--background-color);
2024-06-18 07:11:05 +00:00
height: 120px;
}
trix-toolbar {
display: none;
}
.trix-content {
min-width: 10em;
max-width: 20em;
overflow-y: scroll;
font-size: .8em;
}
input[type=submit] {
width: 100%;
font-size: .8em;
height: auto;
padding: auto;
2024-06-07 15:53:32 +00:00
}
}
2024-06-18 07:43:39 +00:00
.feature-edit-buttons {
a:link, a:visited {
color: inherit;
text-decoration: none;
}
}