initial commit

This commit is contained in:
lzh
2023-05-12 18:45:02 +08:00
commit e0f62cec34
58 changed files with 25288 additions and 0 deletions
+85
View File
@@ -0,0 +1,85 @@
@charset "UTF-8";
* {
box-sizing: border-box;
}
/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img {
margin: 0;
padding: 0;
}
fieldset, img, input, button { /*fieldset组合表单中的相关元素*/
border: none;
padding: 0;
margin: 0;
outline-style: none;
}
ul, ol {
list-style: none; /*清除列表风格*/
}
input {
padding-top: 0;
padding-bottom: 0;
font-family: "SimSun", "楷书";
}
select, input {
vertical-align: middle;
}
select, input, textarea {
font-size: 12px;
margin: 0;
}
textarea {
resize: none; /*防止多行文本框拖动*/
}
img {
border: 0;
vertical-align: middle;
}
/* 去掉图片低测默认的3像素空白缝隙*/
table {
border-collapse: collapse; /*合并外边线*/
}
body {
font: 12px/150% Arial, Verdana, "\5b8b\4f53"; /*宋体,Unicode,统一码*/
color: #666;
background: #fff
}
.clearfix:before, .clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1; /*IE/7/6*/
}
a {
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
font-size: 100%;
}
s, i, em {
font-style: normal;
text-decoration: none;
}
+18
View File
@@ -0,0 +1,18 @@
@import url('../bootstrap-3.4.1-dist/css/bootstrap.min.css');
body {
background: #e6e9ee;
}
nav .container-fluid {
background: #544258;
color: #fff;
padding: 0 150px;
}
nav .navbar-collapse .navbar-nav li a {
color: #fff;
}
nav .navbar-collapse .navbar-nav li a:hover {
color: #ccc;
}
nav .navbar-collapse .dropdown-menu a {
color: #544258;
}
+54
View File
@@ -0,0 +1,54 @@
@import url(../bootstrap-3.4.1-dist/css/bootstrap.min.css);
body {
background: #e6e9ee;
}
.main {
margin: 120px auto;
}
.title {
padding-bottom: 20px;
}
.title h2 {
font-size: 42px;
margin-top: 50px;
margin-bottom: 30px;
text-align: center;
letter-spacing: 20px;
color: #824276;
}
.title p {
text-align: center;
color: #554258;
font-weight: 700;
}
.title h3 {
font-size: 27px;
text-align: center;
letter-spacing: 5px;
}
.put .pointout {
text-align: center;
}
.put .pointout span {
padding-right: 40px;
}
.put .pointout samp {
display: inline-block;
line-height: 34px;
text-align: left;
border-radius: 17px;
margin-right: 15px;
padding-left: 10px;
width: 180px;
background: #00605e;
color: #f7f3f3;
}
.put .pointout button {
border-radius: 17px;
background: #cdcdcd;
color: #fff;
}
.put .poem-input {
margin: 30px auto;
width: 1300px;
}
+32
View File
@@ -0,0 +1,32 @@
@import url('../bootstrap-3.4.1-dist/css/bootstrap.min.css');
body {
background: #e6e9ee;
}
.title h2 {
font-size: 42px;
margin-top: 20px;
margin-bottom: 30px;
text-align: center;
letter-spacing: 20px;
color: #824276;
}
.centre {
margin: 0 300px;
}
.main-poem {
display: flex;
justify-content: space-between;
margin-top: 65px;
}
.main-poem .poem-word {
display: flex;
flex-direction: column;
/*flex-wrap: wrap;*/
/*width: 255px;*/
line-height: 25px;
margin-left:200px;
}
.main-poem .poem-word p {
font-family: '楷体';
font-size: 20px;
}
+12
View File
@@ -0,0 +1,12 @@
@import url('../bootstrap-3.4.1-dist/css/bootstrap.min.css');
body {
background: #e6e9ee;
}
.title h2 {
font-size: 42px;
margin-top: 20px;
margin-bottom: 30px;
text-align: center;
letter-spacing: 20px;
color: #824276;
}