-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (55 loc) · 844 Bytes
/
styles.css
File metadata and controls
60 lines (55 loc) · 844 Bytes
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
.title {
padding: 30px;
text-align: center;
font-size: 50px;
}
.main {
display: flex;
justify-content: center;
align-items: center;
}
.main img{
max-width: 600px;
}
.main-info{
max-width: 500px;
}
.main-info p{
font-size: 20px;
color: #404a8f;
}
.main-info ul{
padding: 17px;
}
.main-info a{
font-size: 20px;
color: #006dd4;
}
.form{
max-width: 420px;
margin: 50px auto;
display: flex;
flex-direction: column;
}
.form h2{
text-align: center;
font-size: 30px;
}
.form input{
padding: 10px;
font-size: 23px;
border-radius: 5px;
margin-bottom: 20px;
border: 2px solid #d7d7d7;
}
.form button{
background: green;
color: white;
padding: 16px;
border-radius: 5px;
border:0;
font-size: 20px;
}
.title span{
color: green;
}