-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_in.css
127 lines (125 loc) · 2.33 KB
/
log_in.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
118
119
120
121
122
123
124
125
126
127
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
.container{
border: 0px yellow solid;
display: flex;
flex-direction: column;
overflow: auto;
height: 100vh;
background-color: #ffffff;
justify-content: normal;
font-family: Dosis;
}
.heading{
background-image:url("images/chicken_jollof.jpg");
background-size: 100% 100%;
background-repeat: no-repeat;
border: 0px black solid;
width: 100%;
height: 50%;
padding-bottom: 10%;
}
h3{
font-size: 40px;
color: #000000;
font-weight:bolder;
background-color: #50c878;
text-align: center;
padding: 5% 2% 5% 2%;
}
h3 span{
color: #ff5e00;
}
.form{
border: 0px greenyellow solid;
width: 100%;
height: 50%;
margin-top: 15%;
}
.checkbox{
display: flex;
width: 100vw;
text-align: center;
padding-top: 5%;
font-size: 12px;
}
#rememberMe{
margin: 0;
padding: 0;
width: 100px;
display: inline;
}
.inputs{
border: 0px blue solid;
width: 100%;
height: 70%;
align-self: center;
}
.inputs i{
position: absolute;
}
input{
width: 80%;
padding: 5%;
margin-top: 5%;
border: 0;
border-radius: 6px;
border-bottom: 2px solid #ff5e00;
margin: 0% 10% 0% 10% ;
font-family: Dosis;
color: #272424;
}
.btn{
border: 0px red solid;
width: 100%;
height: 30%;
text-align: center;
}
button{
width: 80%;
padding: 2% 20%;
background-color: #ff5e00;
color: #ffffff;
border-radius: 30px;
margin-top: 10%;
box-shadow: 0px 2px #000000;
font-family: Dosis;
}
p{
margin-top: 2%;
}
a{
text-decoration: none;
color: #ff5e00;
}
p a:hover{
transform: scale(0.8);
}
@media screen and (min-width: 550px) {
body{
background-image: url("images/chicken_jollof.jpg");
background-size: cover;
}
.container{
width: 400px;
height: 540px;
margin: 50px auto;
border-radius: 6%;
}
.heading{
background-image: none;
background-color: #ffffff;
border: 0px black solid;
width: 100%;
height: 15%;
}
p{
margin-bottom: 5%;
}
.checkbox{
width: 100%;
}
}