-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (49 loc) · 917 Bytes
/
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
body{
background-color: blueviolet;
text-align: left;
}
#title{
text-align: center;
justify-content: center;
}
.about{
text-align: center;
justify-content: center;
}
.form-rows{
display: block;
}
#master-div-style{
margin: auto;
width: 800px;
background-color: #f3f3f3;
border: 1px dashed blue;
border-radius: 10px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 30px;
justify-content: center;
}
.fields{
display: inline-block;
text-align: right;
}
.labels{
text-align: right;
display: inline-block;
width: 50%;
padding: 5px;
vertical-align: top;
margin-top: 10px;
}
.button{
text-align: center;
justify-content: center;
border-radius: 20px;
border: 1px solid blue;
padding: 10px 10px;
margin: auto;
align-items: center;
background-color: aqua;
}