You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
963 B
64 lines
963 B
/* 页面整体 */
|
|
body {
|
|
margin: auto;
|
|
max-width: 580px;
|
|
font-size: 14px;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
/* 页脚 */
|
|
footer {
|
|
color: #888;
|
|
margin-top: 15px;
|
|
text-align: center;
|
|
padding: 10px;
|
|
}
|
|
|
|
/* 头像 */
|
|
.avatar {
|
|
width: 40px;
|
|
}
|
|
|
|
|
|
/* 龙猫图片 */
|
|
.totoro {
|
|
display: block;
|
|
margin: 0 auto;
|
|
height: 400px;
|
|
}
|
|
ul.tools {
|
|
list-style: none;
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
padding: 0;
|
|
}
|
|
|
|
ul.tools li {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* 爬取数据按钮样式 */
|
|
ul.tools .crawl-btn {
|
|
background-color: #42b983;
|
|
color: #fff;
|
|
padding: 5px 16px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
/* 查看数据按钮样式 */
|
|
ul.tools .result-btn {
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
padding: 5px 16px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
/* 调整查看数据按钮的位置 */
|
|
ul.tools .result-btn {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 20px;
|
|
}
|