-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (79 loc) · 1.23 KB
/
style.css
File metadata and controls
84 lines (79 loc) · 1.23 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
*{
padding: 0;
margin: 0;
}
body{
background:black;
background-size: cover;
align-items: center;
justify-content: center;
display: flex;
font-family: ink free;
}
.container{
position: relative;
margin-top: 50px;
width: 30%;
height: 10%;
background: pink;
border-radius: 5px;
color:black;
font-weight: bold;
}
.label{
padding: 20px 60px;
font-size: 100%;
font-weight: bold;
color: black;
}
.login_form{
padding: 15px 15px;
}
.login_form .font{
font-size: 90%;
color: black;
margin: 3px 0;
}
.login_form input{
height: 20px;
width: 60%;
padding: 0 5px;
font-size: 70%;
outline: none;
border: 1px solid silver;
}
.login_form .font2{
margin-top: 6%;
}
.login_form button{
margin: 30px 0 30px 0;
height: 30px;
width: 40%;
font-size: 10px;
color: white;
outline: none;
cursor: pointer;
font-weight: bold;
background: black;
border-radius: 3px;
border: 1px solid #3949AB;
transition: .5s;
}
.login_form button:hover{
background: #151c6a;
color:yellow;
display:flex;
}
.login_form #email_error,
.login_form #pass_error{
margin-top: 5px;
width: 40%;
font-size: 10px;
color: white;
background: black;
text-align: center;
padding: 5px 8px;
border-radius: 3px;
border: 1px solid #EF9A9A;
display: none;
}