This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/public/css/debugger.css

67 lines
1.2 KiB
CSS
Raw Normal View History

2021-08-21 21:06:29 -05:00
body, html {
font-family: sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
2021-08-22 13:48:48 -05:00
.footer {
border: 2px solid black;
padding: 0.25em 0.5em;
}
2021-08-21 21:06:29 -05:00
#irreligious-game {
display: flex;
align-items: stretch;
position: relative;
height: 100%;
margin: 0;
padding: 0;
}
#resource-section {
flex-basis: 75%;
margin: 0.25em 0.5em;
overflow: auto;
}
#logging-section {
flex-basis: 25%;
overflow: auto;
background-color: #eee;
border: 2px solid black;
margin: 0.25em 0.5em;
padding: 0.25em 0.5em;
}
#logging-section div p {
margin: 0 0 0.25em 0;
padding: 0;
}
.resource-type-container {
display: flex;
2021-08-21 12:45:58 -05:00
flex-wrap: wrap;
}
.resource {
2021-08-21 19:02:57 -05:00
min-width: 12em;
border: 2px solid black;
2021-08-21 12:45:58 -05:00
padding: 0.25em 0.5em;
margin: 0 0.5em 0.5em 0;
}
2021-08-22 13:08:41 -05:00
.resource.locked {
2021-08-22 13:48:48 -05:00
opacity: 0.25;
2021-08-22 13:08:41 -05:00
}
2021-08-21 19:02:57 -05:00
#resource-container-religion .resource {
background-color: #ccf;
}
2021-08-22 11:07:49 -05:00
#resource-container-job .resource {
background-color: #fcf;
}
#resource-container-purchasable .resource {
2021-08-21 19:02:57 -05:00
background-color: #cfc;
}
#resource-container-infrastructure .resource {
background-color: #fcc;
}
#resource-container-passive .resource {
background-color: #ffc;
}
2021-09-04 23:16:32 -05:00
#resource-container-research .resource {
background-color: #cff;
}