From da4257bc32483409af02a06dd342c6981ec786ec Mon Sep 17 00:00:00 2001
From: liulijun <liulijun@hnkhzn.com>
Date: 星期一, 17 十一月 2025 17:14:14 +0800
Subject: [PATCH] 更新大屏幕页面和任务信息页面
---
项目代码/BigScreen/src/assets/scss/style.scss | 185 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 185 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/BigScreen/src/assets/scss/style.scss" "b/\351\241\271\347\233\256\344\273\243\347\240\201/BigScreen/src/assets/scss/style.scss"
new file mode 100644
index 0000000..17b9778
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/BigScreen/src/assets/scss/style.scss"
@@ -0,0 +1,185 @@
+@import "./variables";
+
+// 鍏ㄥ眬鏍峰紡
+* {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+ outline: none;
+ box-sizing: border-box;
+}
+
+html {
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ font-family: Arial, Helvetica, sans-serif;
+ line-height: 1.2em;
+ background-color: #f1f1f1;
+ margin: 0;
+ padding: 0;
+}
+
+a {
+ color: #343440;
+ text-decoration: none;
+}
+
+.clearfix {
+ &::after {
+ content: "";
+ display: table;
+ height: 0;
+ line-height: 0;
+ visibility: hidden;
+ clear: both;
+ }
+}
+
+//娴姩
+.float-r {
+ float: right;
+}
+
+//娴姩
+.float-l {
+ float: left;
+}
+
+// 瀛椾綋鍔犵矖
+.fw-b {
+ font-weight: bold;
+}
+
+//鏂囩珷涓�琛屾樉绀猴紝澶氫綑鐪佺暐鍙锋樉绀�
+.title-item {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+.bg-color-black {
+ background-color: rgba(19, 25, 47, 0.6);
+}
+
+.bg-color-blue {
+ background-color: #1a5cd7;
+}
+
+.colorBlack {
+ color: #272727 !important;
+
+ &:hover {
+ color: #272727 !important;
+ }
+}
+
+.colorGrass {
+ color: #33cea0;
+
+ &:hover {
+ color: #33cea0 !important;
+ }
+}
+
+.colorRed {
+ color: #ff5722;
+
+ &:hover {
+ color: #ff5722 !important;
+ }
+}
+
+.colorText {
+ color: #d3d6dd !important;
+
+ &:hover {
+ color: #d3d6dd !important;
+ }
+}
+
+.colorBlue {
+ color: #257dff !important;
+
+ &:hover {
+ color: #257dff !important;
+ }
+}
+
+//棰滆壊
+@each $colorkey, $color in $colors {
+ .text-#{$colorkey} {
+ color: $color;
+ }
+
+ .bg-#{$colorkey} {
+ background-color: $color;
+ }
+}
+
+//瀵归綈
+@each $var in (left, center, right) {
+ .text-#{$var} {
+ text-align: $var !important;
+ }
+}
+
+//flex
+@each $key, $value in $flex-jc {
+ .jc-#{$key} {
+ justify-content: $value;
+ }
+}
+
+@each $key, $value in $flex-ai {
+ .ai-#{$key} {
+ align-items: $value;
+ }
+}
+
+//瀛椾綋
+@each $fontkey, $fontvalue in $font-sizes {
+ .fs-#{$fontkey} {
+ font-size: $fontvalue * $base-font-size;
+ }
+}
+
+//.mt-1 => margin top
+//spacing
+
+@each $typekey, $type in $spacing-types {
+ //.m-1
+ @each $sizekey, $size in $spacing-sizes {
+ .#{$typekey}-#{$sizekey} {
+ #{$type}: $size * $spacing-base-size;
+ }
+ }
+
+ //.mx-1
+ @each $sizekey, $size in $spacing-sizes {
+ .#{$typekey}x-#{$sizekey} {
+ #{$type}-left: $size * $spacing-base-size;
+ #{$type}-right: $size * $spacing-base-size;
+ }
+
+ .#{$typekey}y-#{$sizekey} {
+ #{$type}-top: $size * $spacing-base-size;
+ #{$type}-bottom: $size * $spacing-base-size;
+ }
+ }
+
+ //.mt-1
+ @each $directionkey, $direction in $spacing-directions {
+ @each $sizekey, $size in $spacing-sizes {
+ .#{$typekey}#{$directionkey}-#{$sizekey} {
+ #{$type}-#{$direction}: $size * $spacing-base-size;
+ }
+ }
+ }
+
+ .#{$typekey} {
+ #{$type}: 0;
+ }
+}
--
Gitblit v1.9.3