-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
59 lines (51 loc) · 1.08 KB
/
styles.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
/* Style for label */
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
color: #333; /* Add the desired text color */
font-size: 20px;
}
/* Style for input[type="date"] */
input[type="date"] {
padding: 8px;
border: 1px solid #ccc;
border-radius: 15px;
margin-bottom: 10px;
font-size: 18px;
color: #333; /* Add the desired text color */
background-color: #fff; /* Add the desired background color */
text-align: center;
}
/* Optional: Adjust the width of the input fields */
#dob,
#ageDate {
width: 200px; /* You can adjust the width as needed */
}
/* Optional: Add some spacing between elements */
br {
margin-bottom: 15px;
}
button {
background-color: #4caf50;
color: white;
padding: 10px 20px;
font-size: 18px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
table {
border-collapse: collapse;
width: 100%;
margin-top: 20px;
font-size: 20px;
}
th, td {
border: 2px solid #6495ED;
padding: 10px;
text-align: center;
}