-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (56 loc) · 1.02 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width:100%;
height:100vh;
background-color: #f7f7f7;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
h1 {
font-size: 220%;
}
main{
background-color: #ffffff;
width:43.5%;
height: 38%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 4.5% auto;
border-radius: 0.5rem;
/* border: solid 2px red; */
gap: 1.5rem;
padding: 2rem;
box-shadow: 0px 0px 6px 3px #dcdada;
}
form{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
width:100%
}
form input{
width:50%;
padding:0.4rem;
border-radius: 0.3rem;
border: 1px rgb(205, 204, 204) solid;
}
form button{
color: white;
background-color: #007bff;
padding: 0.5rem;
border-radius: 0.3rem;
border: none;
width:20%;
}
#show_age{
/* font-size: 1.5rem; */
font-size: 150%;
}