?
This commit is contained in:
parent
e1d30f9adb
commit
2beb638121
3
.idea/.gitignore
vendored
Normal file
3
.idea/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# 默认忽略的文件
|
||||
/shelf/
|
||||
/workspace.xml
|
8
.idea/SinkDark.iml
Normal file
8
.idea/SinkDark.iml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="PYTHON_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="jdk" jdkName="Python 3.11" jdkType="Python SDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
12
.idea/inspectionProfiles/Project_Default.xml
Normal file
12
.idea/inspectionProfiles/Project_Default.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="PyPep8Inspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
|
||||
<option name="ignoredErrors">
|
||||
<list>
|
||||
<option value="E501" />
|
||||
</list>
|
||||
</option>
|
||||
</inspection_tool>
|
||||
</profile>
|
||||
</component>
|
6
.idea/inspectionProfiles/profiles_settings.xml
Normal file
6
.idea/inspectionProfiles/profiles_settings.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<settings>
|
||||
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||
<version value="1.0" />
|
||||
</settings>
|
||||
</component>
|
4
.idea/misc.xml
Normal file
4
.idea/misc.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.11" project-jdk-type="Python SDK" />
|
||||
</project>
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/SinkDark.iml" filepath="$PROJECT_DIR$/.idea/SinkDark.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
6
.idea/vcs.xml
Normal file
6
.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -1,7 +1,13 @@
|
||||
@charset "gb2312";
|
||||
@charset "UTF-8";
|
||||
/* css */
|
||||
* { margin: 0; padding: 0 }
|
||||
body { font: 15px "Microsoft YaHei", Arial, Helvetica, sans-serif; color: #555; background: #efefef; line-height: 1.5; }
|
||||
body {
|
||||
font: 15px "Microsoft YaHei", Arial, Helvetica, sans-serif; /* 设置字体大小和字体族 */
|
||||
background-image: url('../images/盐湖.png'); /* 设置背景图片 */
|
||||
line-height: 1.5; /* 设置行高为字体大小的1.5倍 */
|
||||
background-size: cover; /* 背景图片覆盖整个元素区域,可能会被裁剪以保持宽高比 */
|
||||
background-repeat: no-repeat; /* 背景图片不重复 */
|
||||
}
|
||||
img { border: 0; display: block }
|
||||
ul, li { list-style: none; }
|
||||
a { text-decoration: none; color: #555 }
|
||||
|
@ -60,8 +60,7 @@
|
||||
<h2>站长推荐</h2>
|
||||
<ul>
|
||||
<li><a href="https://blog.csdn.net/HuangZhang_123" target="new">个人专题</a></li>
|
||||
<li><a href="https://item.jd.com/14055920.html" target="new">Django+Vue系统架构设计与实现</a></li>
|
||||
<li><a href="https://item.jd.com/13855631.html" target="new">Django+Vue.js商城项目实战</a></li>
|
||||
<li><a href="https://crossdark.com" target="new">旧网站</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="links">
|
||||
|
Loading…
Reference in New Issue
Block a user