fuc/public/assets/css/doc.css
2025-02-23 13:30:57 +08:00

42 lines
621 B
CSS
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.empty-header {
width: 100%;
line-height: 140px;
}
.container-tight {
max-width:none;
}
.page {
margin-top: 0px;
display: block;
}
.empty-text {
text-align: left;
line-height: 20px;
}
/* 当视口宽度小于或等于600px时适用于手机端 */
@media only screen and (max-width: 600px) {
.empty-text {
width: 98%;
}
.empty-img {
max-width: 98%;
}
}
/* 当视口宽度大于600px时适用于电脑端 */
@media only screen and (min-width: 601px) {
.empty-text {
width: 600px;
}
.empty-img {
max-width: 600px;
}
}