From b37cb25a1a5a6ac6e0d0869702afbbaabd83d3de Mon Sep 17 00:00:00 2001 From: Daniel Beaupre Date: Tue, 15 Aug 2023 04:50:41 -0400 Subject: [PATCH] Whoops --- .../Shared/Components/StatContainer.razor.css | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 BrotatoServer/Shared/Components/StatContainer.razor.css diff --git a/BrotatoServer/Shared/Components/StatContainer.razor.css b/BrotatoServer/Shared/Components/StatContainer.razor.css new file mode 100644 index 0000000..aae2728 --- /dev/null +++ b/BrotatoServer/Shared/Components/StatContainer.razor.css @@ -0,0 +1,36 @@ + +/* + * Stats + */ + +.stats-container { + background-color: rgba(0, 0, 0, 0.5); + border-radius: 10px; + padding: 20px; + color: white; + width: 240px; + font-size: 16px; + float: right; +} + +.stats-container tr.current-level td { + padding-bottom: 15px; +} + +.stats-container .neg { + color: #f00; +} + +.stats-container .pos { + color: #0f0; +} + +.stats-container td.stat-value { + text-align: right; + white-space: nowrap; +} + +.stats img { + width: 20px; + height: 20px; +} \ No newline at end of file