-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (93 loc) · 1.73 KB
/
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
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
*{
padding: 0px;
margin: 0px;
/*background-image: url(facebook.jpg);*/
}
body{
background-color: #ebebeb;
font-family: sans-serif;
}
.text-center{
padding:200px;
height: 19vh;
justify-content: center;
}
.text-center h1{
color: #3b5998;
font-size: 60px;
}
.p-tag{
font-size: 20px;
}
.box{
box-shadow: 20px white;
background-color: white;
justify-content: center;
align-items: center;
display: inline-block;
display: flex;
}
form{
display: flex;
flex-direction: column;
align-items: center;
bottom:100px;
box-shadow: 0 0 10px #a3a2a2;
border-radius: 7px;
background-color: white;
position: absolute;
right: 150px;
width: 300px;
padding: 30px;
margin: 30px;
}
.form-field input:focus{
outline: none;
}
form .form-field input{
border-radius: 5px;
margin: 5px;
padding: 5px;
background-color: white;
width: 290px;
height: 40px;
border: 1px solid rgb(201, 200, 200);
box-shadow: 0 0 5px #e2dddd;
}
.login-btn{
background-color: #3b5998;
width: 302px;
height: 40px;
color: white;
border: none;
border-radius: 5px;
font-weight: 700;
cursor: pointer;
margin-bottom: 10px;
}
.Create-btn button{
background-color: rgb(48, 148, 48);
width: 200px;
height: 40px;
color: white;
border: none;
font-weight: 700;
cursor: pointer;
border-radius: 5px;
}
.Create-text{
float: right;
padding-top: 10px;
padding-right: 230px;
padding-bottom:40px ;
font-size: 13px;
}
form .forget{
color: rgb(65, 65, 216);
cursor: pointer;
}
hr{
width: 100%;
margin: 15px;
box-shadow: 0 0 5px ghostwhite;
}