-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (61 loc) · 880 Bytes
/
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
body{
margin-left: 95px;
margin-top: 145px;
}
h1{
font-size: 45px;
font-weight: 800;
background: green;
color: #fff;
margin-bottom: 3px;
width: 505px;
padding: 7px;
border-radius: 10px;
}
.calculator{
margin-top: 30px;
}
input{
width: 250px;
margin: 2px 0px;
font-size: 20px;
text-align: center;
}
#user-month{
width: 195px;
height: 45px;
text-align: center;
}
#user-day{
width: 195px;
height: 45px;
text-align: center;
}
#user-year{
width: 195px;
height: 45px;
text-align: center;
}
#submit-date{
width: 605px;
height: 55px;
margin-top: 30px;
padding: 10px;
border: none;
border-radius: 2px;
font-size: 18px;
background: #27ACD9;
font-weight: 500;
color: #fff;
}
#message{
margin: 20px 0px;
font-size: 50px;
font-weight: 800;
}
#submit-date:hover{
background: purple;
}
#spacer{
padding-top: 30px;
}