From 0da9ffee9bf02ca061dd4edad1be22ff2a1d8803 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sun, 12 Mar 2023 17:38:16 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9D=BC=EB=B6=80=20=EB=A9=94=EC=9D=B8?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=83=89=EC=83=81=EA=B0=92?= =?UTF-8?q?=EC=9D=84=20=EC=98=AE=EA=B2=A8=EC=98=A4=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EC=9D=80=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/scss/gameEvent.scss | 71 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/hwe/scss/gameEvent.scss b/hwe/scss/gameEvent.scss index 05897017..aea64de5 100644 --- a/hwe/scss/gameEvent.scss +++ b/hwe/scss/gameEvent.scss @@ -1,3 +1,7 @@ +@import "./common/variables.scss"; +@import "./common/bootswatch_custom_variables.scss"; +@import "bootstrap/scss/functions"; +@import "bootstrap/scss/variables"; .ev_warning { color: orangered; } @@ -26,3 +30,70 @@ color: rgba(0, 0, 0, 0); font-size: 0; } + + +.compensatePositive { + color: $cyan; + display: inline-block; + width: 1rem; +} + +.compensateNegative { + color: $red; + display: inline-block; + width: 1rem; +} + +.compensateNeutral{ + display: inline-block; + width: 1rem; +} + +.commandImpossible { + color: $red; + text-decoration: line-through $red; +} + +.t_date { + font-size: 0.75em; +} + +.t_red { + color: red; +} + +.t_blue { + color: blue; +} + +.t_green { + color: green; +} + +.t_magenta { + color: magenta; +} + +.t_cyan { + color: cyan; +} + +.t_limegreen { + color: limegreen; +} + +.t_skyblue { + color: skyblue; +} + +.t_orangered { + color: orangered; +} + +.t_yellow { + color: yellow; +} + +.t_white { + color: white; +}