-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracking.css
111 lines (94 loc) · 1.79 KB
/
tracking.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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
}
header {
background: #007BFF;
color: #fff;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
header .logo img {
height: 50px;
}
nav a {
color: #fff;
margin-left: 20px;
text-decoration: none;
transition: color 0.3s;
}
nav a:hover {
color: #FFD700;
}
nav a.active {
text-decoration: underline;
}
.tracking-main {
max-width: 800px;
margin: 50px auto;
padding: 20px;
}
.tracking-section {
background: #ffffff;
border-radius: 8px;
padding: 30px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tracking-section h1 {
margin-bottom: 20px;
font-size: 24px;
}
.tracking-form {
display: flex;
flex-direction: column;
}
.tracking-form label {
margin-bottom: 10px;
font-weight: bold;
}
#tracking-number {
padding: 12px;
margin-bottom: 20px;
border: 1px solid #ced4da;
border-radius: 4px;
font-size: 16px;
}
#tracking-form button {
padding: 12px;
background: #007BFF;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background 0.3s;
}
#tracking-form button:hover {
background: #0056b3;
}
#tracking-result {
margin-top: 20px;
padding: 20px;
border: 1px solid #007BFF;
border-radius: 4px;
background: #f0f9ff;
}
.result-content {
font-size: 18px;
}
.hidden {
display: none;
}
@media (max-width: 600px) {
.tracking-main {
padding: 10px;
}
header {
flex-direction: column;
align-items: flex-start;
}
}