Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
aa152147
五子棋
提交
c96a9811
五
五子棋
项目概览
aa152147
/
五子棋
与 Fork 源项目一致
Fork自
inscode / VueJS
通知
1
Star
43
Fork
23
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
五
五子棋
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
“f1db457ce6e2f63cb01022f58c0c023838958bd1”上不存在“include/uapi/linux/blktrace_api.h”
提交
c96a9811
编写于
7月 01, 2023
作者:
6
63db3122f0950a2aef64df95
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Sat Jul 1 15:51:00 UTC 2023 inscode
上级
28bba002
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
15 addition
and
6 deletion
+15
-6
src/assets/base.css
src/assets/base.css
+2
-0
src/assets/main.css
src/assets/main.css
+13
-6
未找到文件。
src/assets/base.css
浏览文件 @
c96a9811
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
--vt-c-text-light-2
:
rgba
(
60
,
60
,
60
,
0.66
);
--vt-c-text-light-2
:
rgba
(
60
,
60
,
60
,
0.66
);
--vt-c-text-dark-1
:
var
(
--vt-c-white
);
--vt-c-text-dark-1
:
var
(
--vt-c-white
);
--vt-c-text-dark-2
:
rgba
(
235
,
235
,
235
,
0.64
);
--vt-c-text-dark-2
:
rgba
(
235
,
235
,
235
,
0.64
);
}
}
/* semantic color variables for this project */
/* semantic color variables for this project */
...
...
src/assets/main.css
浏览文件 @
c96a9811
...
@@ -5,6 +5,12 @@
...
@@ -5,6 +5,12 @@
padding
:
0
;
padding
:
0
;
}
}
html
,
body
,
#app
{
height
:
100%
;
}
#app
{
#app
{
margin
:
0
auto
;
margin
:
0
auto
;
...
@@ -38,7 +44,7 @@ input {
...
@@ -38,7 +44,7 @@ input {
}
}
.border-top
{
.border-top
{
border-top
:
1px
solid
#ccc
;
border-top
:
1px
solid
var
(
--color-border
)
;
}
}
.content-lattice
{
.content-lattice
{
...
@@ -65,7 +71,7 @@ input {
...
@@ -65,7 +71,7 @@ input {
text-align
:
center
;
text-align
:
center
;
height
:
1px
;
height
:
1px
;
width
:
100%
;
width
:
100%
;
background
:
#999
;
background
:
var
(
--color-border
)
;
position
:
absolute
;
position
:
absolute
;
top
:
calc
(
50%
-
1px
);
top
:
calc
(
50%
-
1px
);
left
:
0
;
left
:
0
;
...
@@ -76,7 +82,7 @@ input {
...
@@ -76,7 +82,7 @@ input {
content
:
''
;
content
:
''
;
width
:
1px
;
width
:
1px
;
height
:
100%
;
height
:
100%
;
background
:
#999
;
background
:
var
(
--color-border
)
;
position
:
absolute
;
position
:
absolute
;
left
:
calc
(
50%
-
1px
);
left
:
calc
(
50%
-
1px
);
top
:
0
;
top
:
0
;
...
@@ -90,7 +96,7 @@ input {
...
@@ -90,7 +96,7 @@ input {
height
:
90%
;
height
:
90%
;
top
:
calc
((
20px
-
20px
*
0.9
)
*
0.5
);
top
:
calc
((
20px
-
20px
*
0.9
)
*
0.5
);
left
:
calc
((
20px
-
20px
*
0.9
)
*
0.5
);
left
:
calc
((
20px
-
20px
*
0.9
)
*
0.5
);
border
:
1px
solid
#999
;
border
:
1px
solid
var
(
--color-border
)
;
}
}
/* 竖线隐藏 */
/* 竖线隐藏 */
...
@@ -102,16 +108,17 @@ input {
...
@@ -102,16 +108,17 @@ input {
.isWhite
::after
{
.isWhite
::after
{
background-color
:
white
;
background-color
:
white
;
border
:
1px
solid
var
(
--color-border
);
}
}
.isBlack
::after
{
.isBlack
::after
{
background-color
:
black
;
background-color
:
black
;
border
:
1px
solid
black
;
border
:
1px
solid
var
(
--color-border
)
;
}
}
.isWin
::after
{
.isWin
::after
{
background-color
:
red
;
background-color
:
red
;
border
:
1px
solid
red
;
border
:
1px
solid
var
(
--color-border
)
;
}
}
.space-nowrap
{
.space-nowrap
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录