12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* 设置页面背景色 */
- ion-content {
- --background: #f9f9f9; /* 设置内容背景色 */
- margin: 0;
- padding: 0;
- font-family: Arial, sans-serif;
- }
- /* 设置头部标题样式 */
- h1 {
- color: #333333;
- text-align: center;
- margin: 20px 0;
- }
-
- /* 输入框和文本域的样式 */
- ion-input, ion-textarea {
- width: 100%;
- margin: 0 auto;
- padding: 10px;
- border: 1px solid #cccccc0c;
- border-radius: 5px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- margin-bottom: 20px;
- }
-
- /* 按钮样式 */
- ion-button {
- color: white;
- border: none;
- border-radius: 5px;
- margin: 0 auto;
- display: block;
- width: 60%;
- padding: 10px;
- font-size: 16px;
- text-transform: uppercase;
- letter-spacing: 1px;
- box-shadow: 0 4px 6px rgba(255, 255, 255, 0.904);
- }
-
- /* 特别为Markdown预览设置样式 */
- fm-markdown-preview {
- font-size: 16px;
- line-height: 1.5;
- color: #333333;
- }
-
- /* 可选:增加一些过渡效果 */
- ion-input, ion-textarea, ion-button, div.response-msg, fm-markdown-preview {
- transition: all 0.3s ease;
- }
- .title-text{
- position: absolute;
- display: flex;
- left: 65px;
- margin: auto;
- top: 10px;
- }
- ion-toolbar {
- margin: auto;
- }
|