-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (34 loc) · 1.09 KB
/
style.css
File metadata and controls
39 lines (34 loc) · 1.09 KB
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
/* 全局樣式調整 */
body {
background-color: #cccccc;
color: #100F18;
/* 防止手機版水平滾動 */
overflow-x: hidden;
}
/* 自定義 Date Picker 樣式,使其符合設計風格 */
input[type="date"] {
appearance: none;
-webkit-appearance: none;
background-color: transparent;
font-family: 'Noto Sans TC', sans-serif;
color: #100F18;
width: 100%;
cursor: pointer;
}
/* 移除 Date Picker 預設圖標,改用我們自己的佈局 */
input[type="date"]::-webkit-calendar-picker-indicator {
opacity: 0.5;
cursor: pointer;
}
/* 邊框與過渡效果 */
.neo-border {
border: 2px solid #100F18;
}
.btn-hover:active {
transform: scale(0.98);
}
/* 響應式字體調整 */
.result-text-big {
font-size: clamp(2rem, 5vw, 3.5rem);
line-height: 1.1;
}