-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patheditArticle.css
175 lines (152 loc) · 5.17 KB
/
editArticle.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* 設置整體頁面的字體和背景顏色 */
body {
font-family: Arial, sans-serif; /* 設定字體 */
margin: 0; /* 去掉預設的邊距 */
padding: 0; /* 去掉預設的內邊距 */
background-color: #f4f4f4; /* 設定背景顏色 */
}
/* 設置頂部功能列樣式 */
header.top-bar {
background-color: #333; /* 設定背景顏色 */
color: #fff; /* 設定字體顏色 */
padding: 10px 0; /* 設定內邊距 */
}
/* 設置頂部容器的樣式 */
.top-container {
display: flex; /* 使用 Flexbox 排版 */
justify-content: space-between; /* 使元素在主軸上分佈 */
align-items: center; /* 垂直對齊元素 */
max-width: 1200px; /* 設定最大寬度 */
margin: 0 auto; /* 使容器居中 */
padding: 0 20px; /* 設定內邊距 */
}
/* 設置 logo 樣式 */
.logo {
font-size: 24px; /* 設定字體大小 */
}
/* 設置導航連結樣式 */
.navigation a {
color: #fff; /* 設定字體顏色 */
text-decoration: none; /* 去掉下劃線 */
margin: 0 10px; /* 設定邊距 */
}
/* 設置導航連結的懸停樣式 */
.navigation a:hover {
text-decoration: underline; /* 懸停時顯示下劃線 */
}
/* 設置使用者登入容器樣式 */
.user-login-container {
display: flex; /* 使用 Flexbox 排版 */
align-items: center; /* 垂直對齊元素 */
}
/* 設置使用者資訊樣式 */
.user-info {
display: flex; /* 使用 Flexbox 排版 */
align-items: center; /* 垂直對齊元素 */
margin-right: 20px; /* 設定右邊距 */
}
/* 設置使用者頭像樣式 */
.user-avatar {
border-radius: 50%; /* 設定圓形邊框 */
margin-right: 10px; /* 設定右邊距 */
}
/* 設置登入按鈕樣式 */
.login-btn button {
background-color: #ff6600; /* 設定背景顏色 */
color: #fff; /* 設定字體顏色 */
border: none; /* 去掉邊框 */
padding: 8px 16px; /* 設定內邊距 */
border-radius: 4px; /* 設定圓角邊框 */
cursor: pointer; /* 設定鼠標指針樣式 */
}
/* 設置登入按鈕懸停樣式 */
.login-btn button:hover {
background-color: #e55b00; /* 懸停時變更背景顏色 */
}
/* 設置主要內容區域樣式 */
main.edit-content {
max-width: 800px; /* 設定最大寬度 */
margin: 20px auto; /* 設定上下邊距並使內容居中 */
padding: 0 20px; /* 設定內邊距 */
}
/* 設置編輯表單容器樣式 */
.edit-form-container {
background-color: #fff; /* 設定背景顏色 */
padding: 20px; /* 設定內邊距 */
border-radius: 8px; /* 設定圓角邊框 */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 設定陰影效果 */
}
/* 設置編輯表單標題樣式 */
.edit-form-container h2 {
margin-bottom: 20px; /* 設定下邊距 */
font-size: 24px; /* 設定字體大小 */
}
/* 設置表單組樣式 */
.form-group {
margin-bottom: 15px; /* 設定下邊距 */
}
/* 設置表單標籤樣式 */
.form-group label {
display: block; /* 設定顯示為區塊元素 */
margin-bottom: 5px; /* 設定下邊距 */
}
/* 設置表單輸入框樣式 */
.form-group input[type="text"],
.form-group select,
.form-group textarea {
width: 100%; /* 設定寬度為 100% */
padding: 10px; /* 設定內邊距 */
border-radius: 4px; /* 設定圓角邊框 */
border: 1px solid #ddd; /* 設定邊框顏色 */
box-sizing: border-box; /* 確保邊框和內邊距包含在寬度內 */
}
/* 設置表單提交按鈕樣式 */
.edit-form-container button {
background-color: #007bff; /* 設定背景顏色 */
color: #fff; /* 設定字體顏色 */
border: none; /* 去掉邊框 */
padding: 10px 20px; /* 設定內邊距 */
border-radius: 4px; /* 設定圓角邊框 */
cursor: pointer; /* 設定鼠標指針樣式 */
margin-right: 10px; /* 設定右邊距 */
}
/* 設置表單提交按鈕懸停樣式 */
.edit-form-container button:hover {
background-color: #0056b3; /* 懸停時變更背景顏色 */
}
/* 設置返回按鈕樣式 */
.edit-form-container button[type="button"] {
background-color: #28a745; /* 設定背景顏色 */
margin-right: 0; /* 去掉右邊距 */
}
/* 設置返回按鈕懸停樣式 */
.edit-form-container button[type="button"]:hover {
background-color: #218838; /* 懸停時變更背景顏色 */
}
/* 設置頁腳樣式 */
.footer {
background-color: #333; /* 背景顏色 */
color: white; /* 文字顏色 */
text-align: center; /* 文字置中 */
padding: 0px; /* 上下內邊距 */
width: 100%; /* 寬度 100% */
bottom: 0; /* 緊貼底部 */
position: fixed; /* 設定固定定位 */
}
/* 設置置頂按鈕樣式 */
.back-to-top {
position: fixed; /* 設定固定定位 */
bottom: 20px; /* 設定距離底部的距離 */
right: 20px; /* 設定距離右邊的距離 */
background-color: #007bff; /* 設定背景顏色 */
color: #fff; /* 設定字體顏色 */
border: none; /* 去掉邊框 */
padding: 10px 20px; /* 設定內邊距 */
border-radius: 4px; /* 設定圓角邊框 */
cursor: pointer; /* 設定鼠標指針樣式 */
text-align: center; /* 設定文字居中 */
}
/* 設置置頂按鈕懸停樣式 */
.back-to-top:hover {
background-color: #0056b3; /* 懸停時變更背景顏色 */
}