🐛v0.2.1,修复字体问题

This commit is contained in:
Asankilp 2024-08-24 22:36:26 +08:00
parent d5eeea6c80
commit a427dadae9
4 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
@font-face { @font-face {
font-family: "Source Han Sans"; font-family: "Source Han Sans";
src: url("SourceHanSans.otf") format("opentype"); src: url("../SourceHanSans.otf") format("opentype");
} }
body { body {

View File

@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<title>展览信息</title> <title>Show Details</title>
<link rel="stylesheet" href="./css/style.css" /> <link rel="stylesheet" href="./css/style.css" />
<style> <style>
body { body {
@ -15,7 +15,7 @@
<body> <body>
<div class="background"></div> <div class="background"></div>
<div class="container"> <div class="container">
<div class="header">展览信息</div> <div class="header">展览详情</div>
<!-- Banner 图 --> <!-- Banner 图 -->
<div class="banner"> <div class="banner">

View File

@ -14,7 +14,7 @@
<body> <body>
<div class="container"> <div class="container">
<div class="header">展览信息</div> <div class="header">展览列表</div>
{% for show in shows %} {% for show in shows %}
<div class="content"> <div class="content">
<div class="image"> <div class="image">

View File

@ -1,6 +1,6 @@
[project] [project]
name = "nonebot-plugin-acgnshow" name = "nonebot-plugin-acgnshow"
version = "0.2" version = "0.2.1"
description = "Nonebot2插件从哔哩哔哩会员购获取简易展览数据" description = "Nonebot2插件从哔哩哔哩会员购获取简易展览数据"
readme = "README.md" readme = "README.md"
requires-python = "<4.0,>=3.9" requires-python = "<4.0,>=3.9"