-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
95 lines (95 loc) · 1.81 KB
/
styles.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
*{
box-sizing: border-box;
}
body{
background-color: skyblue;
font-family: sans-serif;
margin: 0;
padding: 0;
}
.container{
background-color: white;
min-height: 100px;
width: 520px;
margin: 100px auto;
border-radius: 5px;
height: auto;
}
.base{
width: 100;
margin: 0;
overflow: hidden;
display: block;
float: none;
}
.base h4{
font-size: 26px;
text-align: center;
font-family: sans-serif;
margin-top: 0%;
box-shadow: 0px 2px #bababa;
font-weight: 800;
color: navy;
background: white;
padding: 5px;
}
.block{
width: 135px;
padding: 5px 20px;
margin-left: 20px;
display: inline-block;
float: left;
}
.title{
font-size: 20px;
text-align: left;
font-family: sans-serif;
font-weight: 600;
letter-spacing: 0.6px;
color: blue;
word-spacing: 2.8px;
}
input[type=text]{
width: 120px;
margin: auto;
outline: none;
min-height: 50px;
border: 1.5px solid black;
border-radius: 2px;
color: blue;
font-size: 17px;
padding: 12px;
}
input[type=text]:focus{
background-color: whitesmoke;
border: 2.5px solid yellow;
}
input[type=button]{
width: 150px;
margin-left:35%;
margin-top: 40px;
outline: none;
border: none;
border-radius: 2px;
background-color: skyblue;
padding: 12px 14px;
color: white;
font-size: 20px;
}
input[type=button]:hover{
background-color: blue;
}
.age{
display: block;
margin: 10px;
margin-top: 35px;
padding-bottom: 20px;
overflow: hidden;
font-family: sans-serif;
font-size: 23px;
font-weight: 600;
line-height: 1.5;
word-spacing: 2.7px;
color: navy;
padding: 10px;
}