-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathage.css
More file actions
71 lines (64 loc) · 1.26 KB
/
age.css
File metadata and controls
71 lines (64 loc) · 1.26 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
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
/* General Reset */
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #74ebd5, #acb6e5);
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Container Styling */
.container {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 30px;
width: 90%;
max-width: 400px;
text-align: center;
}
/* Heading */
h1 {
font-size: 2rem;
margin-bottom: 20px;
color: #4a90e2;
}
/* Label */
label {
display: block;
margin-bottom: 10px;
font-size: 1rem;
}
/* Input */
input[type="date"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
box-sizing: border-box;
}
/* Button */
button {
background-color: #4a90e2;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #357ab8;
}
/* Result */
.result {
margin-top: 20px;
font-size: 1.2rem;
font-weight: bold;
color: #333;
}