123456789101112131415161718192021222324252627282930313233 |
- /* 设置页面背景色 */
- ion-content {
- display: block;
- background-image: url('/assets/img/漂流瓶.jpg'); /* 设置背景图片路径 */
- background-size: cover; /* 使背景图片覆盖整个元素 */
- background-position: center; /* 将背景图片居中 */
- background-repeat: no-repeat; /* 防止背景图片重复 */
- min-height: 100vh; /* 确保背景图片至少覆盖整个视口高度 */
- }
-
- ion-button {
- font-size: 15px; /* 增大字体大小 */
- margin-top: 8px; /* 上间距,仅在需要时添加 */
- text-transform: none; /* 按钮文字不变形 */
- height: 35px;
- }
-
- ion-toolbar {
- margin: auto;
- }
- .title-text{
- position: absolute;
- display: flex;
- left: 125px;
- margin: auto;
- top: 10px;
- }
-
-
-
-
|