From 1a5107250e60d901ecc2283a12979cdc85e8e718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=8C=E7=8B=BC=E8=93=9D=E5=A4=A9?= Date: Thu, 8 Aug 2024 20:12:44 +0800 Subject: [PATCH] first commit --- .idea/.gitignore | 5 ++ .idea/modules.xml | 8 ++ .idea/简历.iml | 12 +++ index.html | 169 ++++++++++++++++++++++++++++++++++++++++ style.css | 193 ++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 387 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/简历.iml create mode 100644 index.html create mode 100644 style.css diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..10b731c --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..0cad828 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/简历.iml b/.idea/简历.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/简历.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..0102e29 --- /dev/null +++ b/index.html @@ -0,0 +1,169 @@ + + + + + + A4 Paper Print + + + + +
+
+
+
+
+ +
+ +
+
+

个人作品 | 更多项目请访问:https://i.mllt.cc | https://git.mllt.cc

+
+
+
+

自媒体资源分享平台  原创  全栈  Vue3+Vant、Java Spring、MySQL

+

项目简介:多身份、个人信息维护、资源搜索、积分下载、下载历史记录、收藏、邮箱注册、滑动验证

+
+
+

账单管理系统  原创  全栈  Vue3+AntDesignVue+Echarts、Python Flask、MySQL

+

项目简介:邮箱注册、多身份、数据统计、数据可视化

+
+
+

自动打卡平台  原创  全栈  Flask(业务端)+Ruoyi Springboot(管理端)+Redis+MySQL

+

项目简介:业务端与管理端分离互不影响、Redis+代理IP降低成本、执行结果邮件通知

+
+
+ + + +
+
+

在校经历

+
+ +
+
+ +
+

+     重庆移通学院     统招    2023-09 —— 2025-06    专业:人工智能 +

+

+     校园经历:网络与信息管理中心软件开发组组长、创新创业先锋班学员、双体系软件精英学院学员 +

+
+
+
+ +
+

+     重庆工业职业技术学院     统招    2020-09 —— 2023-06    专业:软件技术 +

+

+     校园经历:学生处助理、院新媒体中心负责人、华为耀星校园大使、统信UOS校园大使 +

+
+
+
+ +
+
+

获奖经历 | 国家级荣誉2项 省级奖项6项 校级创新创业类5+项,校级活动类7+项 +


+
+
重庆市  中国大学生计算机设计大赛三等奖
+
重庆市  第二十四届中国机器人及人工智能大赛智能驾驶赛三等奖
+
重庆市  巴渝工匠杯乡村振兴技术技能大赛人工智能工程技术项目优胜奖
+
重庆市  第七届中国国际“互联网+”大学生创新创业大赛铜奖
+
重庆市  第十四届“挑战杯”中国大学生创业计划竞赛铜奖
+
重庆市  北斗杯全国青少年空天科技体验与创新大赛一等奖
+
个人荣誉  国家励志奖学金 优秀毕业生 优秀干部 优秀学生助理 先进个人 三下乡优秀个人
+
其他  MS Office二级、C语言二级、人工智能训练师数据标注员四级/中级工职业证书
+
+
+
+
+ +
+
+
+

这是A4大小的简历

+

本网站设计尺寸为A4大小,为了您的浏览体验,建议使用电脑打开并全屏浏览

+ + +
+
+
+ +
+ + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..e2130bf --- /dev/null +++ b/style.css @@ -0,0 +1,193 @@ +:root{ + /*背景颜色*/ + --color-background:#ead7c8; + /*边框颜色*/ + --color-border: var(--color-background); + /*正文字体颜色*/ + --color-font-content: #937036; + /*标签字体颜色*/ + --color-tag-font:#ff6400; + /*标签背景颜色*/ + --color-tag-background: #ffefe5; + /*圆角大小*/ + --yuanjiao-usual:10px; + --yuanjiao-mini:5px; + /*标题字体大小*/ + --size-font-title:24px; +} +/*标签样式统一设置*/ +body { + height: 100%; + width: 100%; + margin: 0; + padding: 0; + color:var(--color-font-content) +} +p{ + margin: 0; +} +a{ + color: var(--color-font-content); + text-decoration: none; +} +/*框架/盒子*/ +.container{ + width: 100%; + height: 100%; + padding: 2em; + box-sizing: border-box; +} +.a4-paper { + margin: auto; + /*padding: 1mm;*/ + box-sizing: border-box; + width: 210mm; + height: 297mm; + box-shadow: 0 2px 5px 2px rgba(0,0,0,0.1); + display: flex; + justify-content: center; /* 水平居中 */ + align-items: center; /* 垂直居中 */ +} +.box-limit{ + width: 95%; + height: 95%; + margin: 1em auto; + padding: 1em; + box-sizing: border-box; + border: 5px solid var(--color-border); + border-radius: var(--yuanjiao-usual); +} + +.header,.footer{ + justify-content: center; /* 水平居中 */ + align-items: center; /* 垂直居中 */ + flex-flow: row; +} +.main{ + justify-content: left; /* 水平居中 */ + padding: 1em; + box-sizing: border-box; + flex-flow: column; +} +.header,.main,.footer{ + margin: 0 0 1em 0; + display: flex; + background: var(--color-background); + border-radius: var(--yuanjiao-usual); +} +/*通用样式*/ +.line{ + width: 100%; + height: 2px; + /*color: var(--color-font-content);*/ + background: var(--color-font-content); + border: none; +} +.title{ + font-size: var(--size-font-title); + font-weight: bold; +} +.name{ + margin: 0.5em auto; +} +.tag{ + border-radius: var(--yuanjiao-mini); + color: var(--color-tag-font); + background: var(--color-tag-background); + padding: 1px 5px; + box-sizing: border-box; +} +.round{ + border-radius: var(--yuanjiao-mini); +} +.shadow{ + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); +} +.header .profile-box{ + width: 150px; + height: 150px; + padding: 0; + margin:1em; + box-sizing: border-box; +} +.header .profile-box .profile{ + width: 150px; + height: 150px; + /*border: 3px solid var(--color-border);*/ + border-radius: var(--yuanjiao-usual); +} +.header .user-info{ + width: calc(100% - 150px); + height: 155px; + margin: 0 0.5em; + padding: 0 0.5em; + box-sizing: border-box; +} +.flex-column,.school { + display: flex; + flex-flow: column; +} +.flex-row{ + display: flex; + flex-flow: row; + margin: 0.5em; +} +.school .school-info{ + display: flex; + flex-flow: row; + margin: 0.5em; +} +.school .school-info .logo{ + width: 50px; + height: 50px; +} +.school .school-info .logo img{ + width: 50px; + height: 50px; + border-radius: 50px; +} +.school .school-info .shool-name{ + +} + +.rongyu .jiangxiang{ + margin: 0.5em; +} +.project-item{ + margin: 0.5em; +} +/*提示框*/ +.overlay { + display: none; + position: fixed; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + justify-content: center; + align-items: center; + /*background-color: rgba(0, 0, 0, 0.5); !* 可选的半透明背景 *!*/ + z-index: 1000; /* 确保此div位于其他所有元素之上 */ + +} +.content { + width: 90%; + min-width: 350px; + max-width: 500px; + background-color: white; + padding: 20px; + border-radius: 5px; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + transform: translateY(-50%); +} +.msg-btn{ + width: 20%; + max-width: 150px; + min-width: 50px; + height: 2em; + margin: 1em auto; + color:var(--color-font-content); + background: var(--color-background); + outline: none; + border: none; +}