-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
138 lines (120 loc) · 2.53 KB
/
style.css
File metadata and controls
138 lines (120 loc) · 2.53 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
input {
background-color: #C2C2C2;
border-radius: 10px;
margin-bottom: 5px;
height: 50px;
}
form {
display: flex;
flex-direction: column;
justify-content: space-evenly;
height: 350px;
width: 90%;
}
.login-btn {
padding: 10px 0px 10px 0px;
background-color: #9C27B0;
color: white;
border-radius: 10px;
}
.main {
display: flex;
flex-direction: row;
justify-content: center;
background-color: #dddddd;
padding: 50px;
}
.form-section {
display: flex;
flex-direction: row;
justify-content: center;
border-radius: 25px;
box-shadow: 2px 2px 10px rgb(63, 62, 62);
width: 75%;
}
.left-section {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-color: #EEEEEE;
padding: 25px 15px 5px 15px;
border-top-left-radius: 25px;
border-bottom-left-radius: 25px;
height: 500px;
width: 50%;
}
.right-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: linear-gradient(to bottom right, #31223E,#9C27B0);
padding: 25px 15px 5px 15px;
border-top-right-radius: 25px;
border-bottom-right-radius: 25px;
height: 500px;
width: 50%;
}
.checkbox-section {
display: flex;
flex-direction: row;
align-items: center;
}
.forgot-password-section {
display: flex;
flex-direction: row;
align-items: center;
}
.checkbox-forgot-section {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.connect-with-section {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 90%;
}
.left-hr, .right-hr {
width: 30%;
}
.social-network-section {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
width: 90%;
}
.right-section-h1 {
font-size: 40px;
font-weight: bold;
color: white;
}
.right-section-p {
font-size: 15px;
text-align: center;
color: white;
}
.register-btn {
margin-top: 5px;
padding: 10px 15px 10px 15px;
border: 3px solid white;
color: white;
background-color: rgba(0, 0, 0, 0);
border-radius: 50px;
}
.right-i-color {
color: white;
}
hr {
color: black;
border-radius: 50px;
}