-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (69 loc) · 1.29 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
/* Age Calculator */
body {
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0 auto;
background-color: #4a171e;
}
.age-calculator {
background: #fafafa;
padding: 20px;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
background-color: #e2b144;
}
.heading {
font-size: 2.5rem;
font-weight: bold;
text-align: center;
color: #000000;
}
.controls {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.controls input {
width: 200px;
height: 40px;
border-radius: 5px;
border: 1px solid #ccc;
padding: 0 10px;
}
.controls button {
width: 100px;
height: 40px;
border-radius: 5px;
border: 1px solid #ccc;
background: #4a171e;
color: #fff;
font-weight: bold;
cursor: pointer;
border: none;
margin-left: 5px;
}
.result {
margin-top: 20px;
text-align: center;
}
.birthdate {
font-size: 22px;
}
.age {
font-weight: bold;
font-size: 25px;
}
.wishing {
font-size: 40px;
color: #4a171e;
font-weight: bold;
margin-top: 40px;
}