forked from anush-mish/Bookish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSign_Up.css
More file actions
114 lines (108 loc) · 2.13 KB
/
Sign_Up.css
File metadata and controls
114 lines (108 loc) · 2.13 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*Home page Styling :-*/
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'Urbanist',sans-serif;
}
:root{
--var-primary-color:#2888E8FF;
}
html{
font-size: 62.5%;
}
h1,h2,h3,h4{
font-family:'Urbanist',sans-serif;
}
p{
font-size:1.6rem;
letter-spacing: 0.08rem;
}
button, input[type="submit"]{
border:0.1rem solid #fff;
outline:none;
padding:0.6rem 1.2rem;
font-size:1.7rem;
text-transform:capitalize;
letter-spacing: 0.05rem;
background-color:transparent;
color:#fff;
cursor:pointer;
}
.Sign-Up{
height:100vh;
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("./images/background.jpg");
background-repeat: no-repeat;
background-size: cover;
}
/* Registration page Styling:- */
main{
min-height: 80vh;
display:flex;
justify-content:center;
align-items: center;
color:#fff;
}
.sign_up{
min-height: 30rem;
min-width: 40vw;
background-color: aquamarine;
}
.form-text{
height:inherit;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("./images/formbg.jpg");
background-repeat: no-repeat;
background-size: cover;
padding: 3rem 2rem ;
}
.form-text p{
width:40ch;
text-align: center;
margin:2rem 0 3rem 0;
}
.form-text button{
background-color: #fff;
color:#000;
}
.form-text button:hover{
background-color: transparent;
color:#fff;
}
.sign-up-form{
width:100%;
min-height: 30vh;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.Sign-Up p{
margin:1rem 0 0.7rem 0;
}
.fa-brands {
width:4rem;
height:4rem;
border-radius:50%;
border:0.1rem solid #ccc;
display: inline-flex;
justify-content:center;
align-items: center;
font-size: 1.6rem;
}
.social-icons{
gap:2rem;
display:flex;
margin:1rem 0 1rem 0:
}
input{
width:20rem;
margin:0.7rem 0;
border:none;
background-color: #e8e8e8;
padding: 1rem 1.8rem;
}