-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (58 loc) · 1.12 KB
/
styles.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
body {
background-color: #BDF1F6;
font-family: 'Montserrat', sans-serif;
font-size: 0.85em;
color: rgba(66,66,66 ,1);
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
textarea:focus, input:focus{
outline: none;
}
main {
width: 75%;
background-color: #F2FCFC;
display: flex;
border-radius: 15px;
}
/*make the width of both 50% i.e half and equal.*/
section, form {
width: 50%;
padding: 70px 50px;
}
section {
text-align: center
}
p {
line-height: 1.7 /* change this to a higher value like 2 0r 3 to see the difference*/
}
/*Reduce the width of the image*/
img {
width: 100px;
border-radius: 50%;
display: block;
margin: 0 auto;
}
.signup-form input{
margin:20px 0px;
box-sizing: border-box;
padding: 12px 10px 12px 2px;
border:none;
font-family: 'Montserrat', sans-serif;
}
textarea:focus, input:focus{
outline: none;
}
button[type="submit"]{
color:rgb(231, 226, 226);
font-weight: bold;
border:none;
border-radius:35px;
margin:10px 0px;
padding :10px 20px;
background-color: rgb(52, 140, 240);
letter-spacing: 0.1em;
}