update techy-container icons

This commit is contained in:
lb
2022-11-10 09:01:19 +08:00
parent 3567838049
commit 3c29decb72
7 changed files with 437 additions and 106 deletions

View File

@@ -95,8 +95,7 @@ export default {
position: relative;
color: white;
/* font-size: 24px; */
font-size: 2vh;
padding: calc(100vw / 1920 * 32) 0;
padding: calc(24px * var(--beilv)) 0;
line-height: 1;
background: url(./header-new.png) no-repeat;
/** 背景图片好像左右不对称 : */
@@ -104,22 +103,22 @@ export default {
/* background-size: cover; */
background-size: 100% 100%;
/* background-position: bottom left calc(100vw / 1920 * 40); */
background-position: bottom left calc(100vw / 1920 * 40);
height: calc(100vmin / 1920 * 128);
background-position: bottom left calc(32px * var(--beilv));
height: calc(96px * var(--beilv));
}
.logo-img {
width: calc(100vmin / 1920 * 48);
width: calc(28px * var(--beilv));
}
.techy-header__title {
display: line-block;
margin-left: calc(100vmin / 1920 * 12);
margin-left: calc(12px * var(--beilv));
/* font-size: 29px; */
font-size: calc(100vmin / 1920 * 48);
line-height: 41px;
letter-spacing: 4px;
text-shadow: 0px 0px 11px rgba(221, 237, 255, 0.34);
font-size: calc(29px * var(--beilv));
line-height: calc(41px * var(--beilv));
letter-spacing: calc(2.23px * var(--beilv));
text-shadow: 0px 0px calc(11px * var(--beilv)) rgba(221, 237, 255, 0.34);
}
.date,
@@ -146,20 +145,17 @@ export default {
}
.fullscreen-btn {
/* height: 32px; */
cursor: pointer;
position: absolute;
/* right: 24px; */
/** techy-body 的内部 padding 值 */
right: calc(100vmin / 1920 * 32);
/* top: 42px; */
top: calc(100vmin / 1920 * 64);
right: calc(24px * var(--beilv));
top: calc(44px * var(--beilv));
bottom: 0;
}
.fullscreen-btn > span {
display: inline-block;
width: calc(100vmin / 1920 * 52);
height: calc(100vmin / 1920 * 52);
width: calc(32px * var(--beilv));
height: calc(32px * var(--beilv));
}
</style>