From b3db1f8bb2322e28f6045c7284a2127be14389f3 Mon Sep 17 00:00:00 2001 From: A1300399510 Date: Fri, 20 Dec 2024 17:16:57 +0800 Subject: [PATCH] no message --- css/indexSide.css | 160 +++++++++++++++++++++++++++ css/indexSide.less | 179 +++++++++++++++++++++++++++++++ html/indexSide.html | 163 ++++++++++++++++++++++++++++ img/side/arrows-circle-white.svg | 6 ++ img/side/quotation-mark..png | Bin 0 -> 995 bytes 5 files changed, 508 insertions(+) create mode 100644 css/indexSide.css create mode 100644 css/indexSide.less create mode 100644 html/indexSide.html create mode 100644 img/side/arrows-circle-white.svg create mode 100644 img/side/quotation-mark..png diff --git a/css/indexSide.css b/css/indexSide.css new file mode 100644 index 0000000..29ab3a8 --- /dev/null +++ b/css/indexSide.css @@ -0,0 +1,160 @@ +* { + padding: 0; + margin: 0; + box-sizing: border-box; + text-decoration: auto; + word-break: break-word; +} +.one-line-display { + word-break: keep-all; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +.flexflex { + display: flex; +} +.flexcenter { + display: flex; + justify-content: center; + align-items: center; +} +.flexjcenter { + display: flex; + justify-content: center; +} +.flexacenter { + display: flex; + align-items: center; +} +.flex1 { + flex: 1; +} +.flexcolumn { + display: flex; + flex-direction: column; +} +.project { + width: 394px; + margin: 50px auto; +} +.project .project-list { + flex-wrap: wrap; + justify-content: space-between; + margin-bottom: 4px; +} +.project .project-list .item { + width: 460px; + width: 100%; + background-color: #ffffff; + border: 1px solid #f2f2f2; + padding: 20px 16px 10px; + position: relative; +} +.project .project-list .item .school { + font-size: 14px; + color: #333333; + position: absolute; + top: 20px; + right: 16px; +} +.project .project-list .item .school .icon { + height: 18px; + margin-right: 8px; +} +.project .project-list .item .name { + font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif; + font-weight: 650; + font-style: normal; + font-size: 16px; + color: #000000; + margin-bottom: 6px; + padding-right: 80px; +} +.project .project-list .item .english { + font-family: "PingFangSC-Regular", "PingFang SC", sans-serif; + font-weight: 400; + font-style: normal; + font-size: 13px; + margin-bottom: 10px; + color: #7f7f7f; +} +.project .project-list .item .introduce { + color: #555555; + font-size: 14px; + margin-bottom: 9px; + flex-wrap: wrap; +} +.project .project-list .item .introduce .quantity { + font-family: "Arial-Black", "Arial Black", sans-serif; + font-weight: 900; + color: #000000; + margin-left: 8px; +} +.project .project-list .item .introduce .line { + color: #d7d7d7; + margin: 0 7px; +} +.project .project-list .item .word { + background-color: #f9f8f8; + border-radius: 5px; + padding: 9px 10px; + font-size: 14px; + color: #7f7f7f; + margin-bottom: 12px; +} +.project .project-list .item .word .img { + width: 15px; + height: 10px; +} +.project .project-btn { + width: 361px; + height: 40px; + line-height: 40px; + background-color: #333333; + border-radius: 141px; + font-size: 16px; + color: #ffffff; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; +} +.project .project-btn .img { + width: 18px; + height: 18px; + margin-left: 10px; +} +.project .tag { + flex-wrap: wrap; +} +.project .tag .tag-item { + width: fit-content; + height: 20px; + line-height: 20px; + background-color: #f9f8f8; + border: 1px solid #aaaaaa; + border-radius: 6px; + padding: 0 6px; + font-size: 12px; + color: #7f7f7f; + margin-right: 10px; + margin-bottom: 10px; + display: flex; + align-items: center; +} +.project .tag .tag-item.gray { + background-color: #333333; + color: #ffffff; + border: none; +} +.project .tag .tag-item.semester { + color: #ffffff; + background-color: #f95d5d; + border: none; +} +.project .tag .tag-item.admissions { + background-color: #73d1e5; + border: none; + color: #fff; +} diff --git a/css/indexSide.less b/css/indexSide.less new file mode 100644 index 0000000..23a3729 --- /dev/null +++ b/css/indexSide.less @@ -0,0 +1,179 @@ +* { + padding: 0; + margin: 0; + box-sizing: border-box; + text-decoration: auto; + word-break: break-word; +} + +.one-line-display { + word-break: keep-all; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.flexflex { + display: flex; +} + +.flexcenter { + display: flex; + justify-content: center; + align-items: center; +} + +.flexjcenter { + display: flex; + justify-content: center; +} + +.flexacenter { + display: flex; + align-items: center; +} + +.flex1 { + flex: 1; +} + +.flexcolumn { + display: flex; + flex-direction: column; +} + +.project { + width: 394px; + margin: 50px auto; + .project-list { + flex-wrap: wrap; + justify-content: space-between; + margin-bottom: 4px; + .item { + width: 460px; + width: 100%; + background-color: rgba(255, 255, 255, 1); + border: 1px solid rgba(242, 242, 242, 1); + // border-radius: 12px; + padding: 20px 16px 10px; + // margin-bottom: 19px; + position: relative; + .school { + font-size: 14px; + color: #333333; + // margin-bottom: 14px; + position: absolute; + top: 20px; + right: 16px; + .icon { + height: 18px; + margin-right: 8px; + } + } + .name { + font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif; + font-weight: 650; + font-style: normal; + font-size: 16px; + color: #000000; + margin-bottom: 6px; + padding-right: 80px; + } + + .english { + font-family: "PingFangSC-Regular", "PingFang SC", sans-serif; + font-weight: 400; + font-style: normal; + font-size: 13px; + margin-bottom: 10px; + color: #7f7f7f; + } + .introduce { + color: #555555; + font-size: 14px; + margin-bottom: 9px; + flex-wrap: wrap; + .quantity { + font-family: "Arial-Black", "Arial Black", sans-serif; + font-weight: 900; + color: #000000; + margin-left: 8px; + } + .line { + color: #d7d7d7; + margin: 0 7px; + } + } + .word { + background-color: rgba(249, 248, 248, 1); + border-radius: 5px; + padding: 9px 10px; + font-size: 14px; + color: #7f7f7f; + margin-bottom: 12px; + + .img { + width: 15px; + height: 10px; + } + } + } + } + + .project-btn { + width: 361px; + height: 40px; + line-height: 40px; + background-color: rgba(51, 51, 51, 1); + border-radius: 141px; + font-size: 16px; + color: #ffffff; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + + .img { + width: 18px; + height: 18px; + margin-left: 10px; + } + } + + .tag { + flex-wrap: wrap; + .tag-item { + width: fit-content; + height: 20px; + line-height: 20px; + background-color: rgba(249, 248, 248, 1); + border: 1px solid rgba(170, 170, 170, 1); + border-radius: 6px; + padding: 0 6px; + font-size: 12px; + color: #7f7f7f; + margin-right: 10px; + margin-bottom: 10px; + // flex-wrap: wrap; + display: flex; + align-items: center; + &.gray { + background-color: rgba(51, 51, 51, 1); + color: #ffffff; + border: none; + } + + &.semester { + color: #ffffff; + background-color: rgba(249, 93, 93, 1); + border: none; + } + + &.admissions { + background-color: rgba(115, 209, 229, 1); + border: none; + color: #fff; + } + } + } +} diff --git a/html/indexSide.html b/html/indexSide.html new file mode 100644 index 0000000..507f30e --- /dev/null +++ b/html/indexSide.html @@ -0,0 +1,163 @@ + + + + + + Document + + + + +
+ + +
+ more + +
+
+ + + + diff --git a/img/side/arrows-circle-white.svg b/img/side/arrows-circle-white.svg new file mode 100644 index 0000000..51376f3 --- /dev/null +++ b/img/side/arrows-circle-white.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/img/side/quotation-mark..png b/img/side/quotation-mark..png new file mode 100644 index 0000000000000000000000000000000000000000..1c7d8ae9dfa775379601fcf85213d99a81ce1da9 GIT binary patch literal 995 zcmV<9104K`P)Px#L}ge>W=%~1DgXcg2mk?xX#fNO00031000^Q000001E2u_0{{R30RRC20H6W@ z1ONa40RR91D4+uX1ONa40RR919RL6T023!sS^xk8O-V#SR9Fe!S6x!uFc4nZ{Jaz< zH)xIkkDX3~dxGW$H3xvGCuleU3LF6U1f?e+q0{LjaDti}K&CGZ*xQv7C6bU5+hwNH z>LJpuR-eAzm8A{9|K9j_-hK`r`4w;Zuvimt{*@)G&9kmuA8ziUu8fQ%ps`S!B{8gM`StLZxY;E`na)Y6%TsG#Hyo*>Imw;`{jzLOt zeS+j^ubdRZA*Qey!aclzYipx`AXAC=XB zd?qK`CJ8-ez>Z)$5?Yo$5e_#+Zd_i>&xc`3QM-khh`kX*LmeEdb6XNQfR<}SB)-5# z%*88_d*)o#R9;FB*nm9kSBaWLQ;~ZtuH2o}(TK>&jyQMcv>Z$^h9bvcUvy3~4X~=8 zk)tfwO=Vy`?uysq+Mcl`FF`&!6sSLY!=5Q}rp4|i7%xtVB{*) zSpn?1dOEo|NemU0Bhg53*0e z@n&vL5FUyoj1in^;bZ9m#`;+F2Gi})cXwJ4MAmjEtI4<{&#q~U0DGofbxe``=$2dy zg3!Qgy)&u`L`#3xKiEZtL9jV)(};O@L`Y1%L68m2iN83uUY!L&hWT@mqPuJ9-BxFx z1;MTOyv{F{LF&4cY*Cy7Spe&u_duvWs9y4YW+KMw(5L5;*4A<-@bxu&3 zY()LKz{=jKf>oUuLEqT6(oh}^xBRjQs%I;T(@JRCi0plZD^)(CPDZAV#$64odyAk{ z%IcOy@!M6Al=IX2FkB7O`LOiokAx z(UnBU!B;3~JF}NHCX@xI`|_QsSHvR7WVB6vqp{kg(Mo%fblh8D*k=EZ^cx2!OgN+S RHSGWZ002ovPDHLkV1n`6vDp9s literal 0 HcmV?d00001