Skip to content
Snippets Groups Projects
Commit be1c8fd0 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'css2' into 'pregmod-master'

Move CSS files in their own directory Part 2

See merge request pregmodfan/fc-pregmod!8580
parents be2f346a 6c154418
No related branches found
No related tags found
1 merge request!8580Move CSS files in their own directory Part 2
Showing
with 85 additions and 13 deletions
......@@ -7,11 +7,19 @@
height: calc(100% - 1.5em);
margin: 1.5em 0;
}
#ui-bar-body > :not(:first-child) {
/* margin-top: 2em; */
margin-top: 1.5em;
}
#story-author {
/* margin-top: 2em; */
margin-top: 0;
}
/* make cheat text boxes fit in sidebar */
#story-caption input {
min-width: 0;
width: calc(100% - 0.8em - 2px);
}
File moved
div.slave-report {
margin-top: 1em;
margin-bottom: 1em;
}
File moved
File moved
/* FEEL FREE TO MOVE */
.child-section {
margin-top: 1em;
margin-bottom: 1em;
......
File moved
table.stats {
table.facility-stats {
width: 100%;
padding-left: 20px;
padding-right: 20px;
}
table.stats > tr.header {
table.facility-stats > tr.header {
border-bottom: 2px solid white;
}
table.stats > tr.total {
table.facility-stats > tr.total {
border-top: 1px solid white;
}
table.stats > tr > th.narrow {
table.facility-stats > tr > th.narrow {
width: 10em;
text-align: right;
}
table.stats > tr > th.wide {
table.facility-stats > tr > th.wide {
width: 20em;
text-align: right;
}
table.stats-slave {
table.facility-stats-slave {
width: 100%;
font-size: 90%;
line-height: 110%;
}
table.stats-slave > tr {
table.facility-stats-slave > tr {
border-bottom: 1px solid #aaa;
border-left: none;
border-right: none;
border-top: none
}
table.stats-slave > tr > th.narrow {
table.facility-stats-slave > tr > th.narrow {
width: 11em;
text-align: right;
}
table.stats-slave > tr > th.wide {
table.facility-stats-slave > tr > th.wide {
width: 22em;
text-align: right;
}
......@@ -52,4 +52,4 @@ td.value {
.decimalZero {
opacity: 0.3;
}
\ No newline at end of file
}
......@@ -40,7 +40,8 @@
font-weight: bold;
}
.major-link, .bold {
/* strong is deprecated, use bold instead */
.major-link, .bold, .strong {
font-weight: bold;
}
......
......@@ -36,3 +36,8 @@ div.double-indent, p.double-indent {
.double-choices, .double-choices {
margin-left: 4em;
}
div.grid-2columns-auto {
display: grid;
grid-template-columns: max-content auto;
}
div.output {
width: 100vw;
max-width: 100%;
word-break: break-all;
white-space: normal;
}
File moved
.favorite, .favorite:hover {
color: yellow;
text-decoration: none;
}
.not-favorite, .not-favorite:hover {
color: grey;
text-decoration: none;
}
ul.choicesStrip {
display: inline;
list-style-type: none;
padding: 0mm;
margin-left: 0em;
}
ul.choicesStrip li {
display: inline;
}
ul.choicesStrip li + li:before {
content: " | ";
}
a.disabled {
color: white;
pointer-events: none;
cursor: default;
}
File moved
File moved
File moved
/* TODO unify tooltip systems */
.hasTooltip {
text-decoration: underline;
}
/* interactable tooltip-like container - created/destroyed dynamically */
.details-overlay {
display: inline-block;
font-size: smaller;
width: max-content;
height: max-content;
border-style: solid;
border-color: slategray;
border-width: 2px;
border-radius: 3px;
background-color: rgb(17, 17, 17);
padding: 3px;
position: absolute;
z-index: 2;
text-indent: 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment