-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (62 loc) · 1.07 KB
/
style.css
File metadata and controls
76 lines (62 loc) · 1.07 KB
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
* {
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1 {
text-align: center;
color: rgb(217, 248, 44);
}
.block input{
width: 100px;
outline: none;
padding: 10px;
border: double 1px rgb(217, 248, 44);
border-radius: 4px;
}
input:focus{
border: 1px solid rgb(171, 199, 14);
}
body {
text-align: center;
}
.block{
text-align: center;
width: 135px;
padding: 5px 20px;
margin-left: 20px;
display: inline-block;
}
#ageP{
font-size: 30px;
color: rgb(255, 255, 255);
}
.title {
text-align: center;
font-size: 25px;
letter-spacing: 0.5px;
color: #222;
}
button{
padding: 10px;
border: none;
background-color: rgb(217, 248, 44);
color: white;
cursor: pointer;
border-radius: 4px;
width: 100%;
margin-top: 10%;
font-size: 25px;
}
button:hover{
transition: 0.6s;
background-color: rgb(171, 199, 14);
border: none;
}
.age{
color: rgb(255, 255, 255);
font-size: 20px;
}