-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (87 loc) · 1.72 KB
/
style.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
*{
padding: 0;
margin: 0;
}
body{
padding: 0;
margin: 0;
font-family: jost;
background-color: #352F44;
color: white;
}
.ageCalulator{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 150px;
}
label{
font-size: 18px;
font-weight: 600;
}
.form{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 20px;
gap: 18px;
border: none;
padding: 40px 40px;
color: #352F44;
border-radius: 10px;
background-color: #b9b4c73b;
filter: drop-shadow(0px 0px 50px #B9B4C7);
}
.DOB,
.currentDate{
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
gap: 2px;
}
input{
padding: 13px 12px;
font-size: 14px;
width: 300px;
background-color: #352F44;
color: white;
border: none;
border-radius: 25px;
}
.btn{
display: flex;
justify-content: center;
align-items: center;
}
button{
border: none;
padding: 13px 131px;
background-color: #352F44;
color: #B9B4C7;
cursor: pointer;
transition: all .3s ease-in-out;
font-weight: 700;
border: 1px solid rgba(0, 0, 0, 0);
border-radius: 30px;
}
button:hover{
background-color:#B9B4C7;
color: #352F44;
border: 1px solid #352F44;
}
#result {
margin-top: 20px;
font-size: 18px;
font-weight: 600;
padding: 8px 22px;
display: flex;
justify-content: center;
align-items: center;
color: white;
background-color: #352F44;
margin: auto;
border: none;
}