-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
118 lines (116 loc) · 1.96 KB
/
style1.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
109
110
111
112
113
114
115
116
117
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap');
*
{
font-family: 'poppins' ,sans-serif;
}
body
{
background-image: url("img/signinpage.jpg");
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
}
.logo
{
border-radius: 150px;
width: 82px;
padding-left: 2px;
padding-top: 3px;
}
.box
{
display: flex;
justify-content: center;
align-items: center;
min-height: 90vh;
}
.container
{
width: 350px;
display: flex;
flex-direction: column;
padding: 0 15px 0 15px;
}
span
{
font-weight: 900;
color: #020202;
font-size: small;
display: flex;
justify-content: center;
padding: 10px 0 10px 0;
}
header
{
font-weight: 700;
color: #050505;
font-size: 30px;
display: flex;
justify-content: center;
padding: 10px 0 10px 0;
}
.input-field .input
{
font-weight: 700;
height: 45px;
width: 87%;
border: none;
border-radius: 30px;
color: #040404;
font-size: 15px;
padding: 0 0 0 45px;
background: rgba(255, 255, 255, 0.664);
outline: none;
}
i
{
position: relative;
top: -33px;
left: 17px;
color: #080808;
}
::-webkit-input-placeholder
{
color: #030303;
}
.submit
{
border: none;
border-radius: 30px;
font-size: 15px;
height: 45px;
outline: none;
width: 100%;
color: black;
background: rgba(255, 255, 255, 0.656);
cursor: pointer;
font-weight: 750;
transition: .3s ;
}
.submit:hover
{
box-shadow: 1px 5px 7px 1px rgba(0, 0, 0, 0.2);
}
.two-col
{
display: block;
flex-direction: row;
justify-content: baseline;
color: black;
font-size: 15px;
margin-top: 20px;
font-weight: 700;
}
.one
{
display: flex;
}
label a
{
border-radius: 11px;
background-color: rgba(250, 247, 247, 0.777);
font-weight: 200;
text-decoration: none;
color: #0408f5;
}