-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (72 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (72 loc) · 1.26 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.row{
background-color:#D09CFA;
border-radius: 30px;
box-shadow: 12px 12px 12px;
width: auto;
height: 37rem;
}
img{
width: 120%;
height: 37rem;
border-bottom-left-radius: 232px;
border-top-right-radius: 429px;
}
.login h1{
font-size: 4rem;
font-weight: 300;
}
.inp{
height: 50px;
width: 70%;
border: none;
outline: none;
border-radius: 60px;
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
-ms-border-radius: 60px;
-o-border-radius: 60px;
box-shadow: 2px 5px 2px 5px rgba(0, 0, 0, 0.35);
}
.btn1{
width: 150px;
height: 50px;
border: none;
outline: none;
border-radius: 60px;
background-color: #F3CCFF;
}
.btn1:hover{
background-color: #b168ec;
box-shadow: 2px 5px 2px 2px #F3CCFF;
transition: 0.3s;
cursor: pointer;
}
.fa-facebook{
padding: 10px;
font-size: 30px;
}
.fa-facebook:hover{
color: whitesmoke;
cursor: pointer;
}
.fa-instagram{
padding: 10px;
font-size: 30px;
}
.fa-instagram:hover{
color: whitesmoke;
cursor: pointer;
}
.fa-linkedin{
padding: 10px;
font-size: 30px;
}
.fa-linkedin:hover{
color: whitesmoke;
cursor: pointer;
}