-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (61 loc) · 1.22 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
64
65
66
67
68
69
70
71
* {
margin: 0;
padding: 0;
}
body, html {
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #c9c0ae66;
flex-direction: column;
}
.form-container {
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
padding: 10px 15px;
border: 1px solid #1875df;
border-radius: 10px;
width: 25%;
background-color: #81a3e9;
}
.form-container form{
width: 100%;
}
.form-container .form-title {
align-self: flex-start;
font-size: 22px;
color: #000000;
padding-bottom: 10px;
border-bottom: 1px solid #1875df;
display: block;
width: 100%;
}
.input-group, .form-check, #send-btn {
margin: 15px 0;
}
#gender-block, #limbs-block {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
#gender-block, #limbs-block {
padding: 0;
}
#gender-block {
margin-right: 50px;
}
#limbs-block .block-title {
margin-right: 5px;
}
#send-btn {
display: block;
width: 100%;
background-color: #3552cfba;
border-bottom: 1px solid #1875df;
}