-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (58 loc) · 885 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
*{
margin: 0;
padding: 0;
}
body{
margin-top: 10%;
background-color: #EF6461;
}
h1{
margin-bottom: 2rem;
text-align: center;
}
form{
border: 1px solid;
border-radius: 1.75rem;
width: 20%;
padding: 20px 20px 20px 20px;
background-color: #E4B363;
}
form input{
width: 97%;
margin-top: 5px;
margin-bottom: 20px;
padding-left: 5px;
height: 30px;
}
form select,input,button{
width: 100%;
border-radius: .5rem;
}
form select{
padding-left: 5px;
border-radius: .3rem;
}
#msg{
margin: 20px 0 10px 0;
}
button{
height: 2rem;
cursor: pointer;
background-color: #313638;
color: #fff;
}
.container{
display: flex;
justify-content: center;
}
.all{
display: flex;
justify-content: space-around;
}
i{
margin-top: 40px;
}
img{
margin-left: 40px;
width: 40%;
}