-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (87 loc) · 1.8 KB
/
style.css
File metadata and controls
102 lines (87 loc) · 1.8 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
* {
box-sizing: border-box;
}
body {
background: #2782e3;
font-family: sans-serif;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background-color: #eee;
min-height: 10rem;
width: 32.5rem;
border-radius: 4px;
height: auto;
}
.heading {
text-align: center;
color: rgb(73, 70, 70);
height: 4rem;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2rem;
box-shadow: .5rem .5rem 3rem rgba(0, 0, 0, .4);
}
.block {
width: 10rem;
display: inline-block;
margin-left: .4rem;
margin-top: 2rem;
padding-left: 1.1rem;
}
.title {
font-size: 1.2rem;
text-align: left;
font-weight: 700;
color: #8b8484;
}
input[type=text] {
width: 7.8rem;
margin: auto;
min-height: 2rem;
border-radius: 3px;
border-style: none;
outline: none;
font-size: 1.1rem;
padding: .8rem 1rem;
color: #8b8484;
}
input[type=text]:focus {
border: 1.5px solid #8b8484;
border-radius: 4px;
}
input[type=button] {
width: 8rem;
outline: none;
border-style: none;
border-radius: 3px;
min-height: 2.3rem;
background-color: #2782e3;
margin-left: 35%;
margin-block: 2.4rem;
color: white;
overflow: hidden;
font-size: 1rem;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display: block;
line-height: 1.5;
cursor: pointer;
}
input[type=button]:hover{
background-color: #0b4d93;
border-style: none;
transform: translateY(-3px);
}
.age {
display: block;
overflow: hidden;
font-size: 1.2rem;
margin-bottom: 1.7rem;
text-align: center;
}