-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (66 loc) · 1.02 KB
/
style.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
body{
margin: 0;
}
.e-box{
text-align: center;
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%,-50%);
height: 200px;
width: 320px;
background-color: #EBECFF;
border-radius: 3px;
box-shadow: 0 0 1px 0 black;
}
.e-box span{
text-align: center;
font-size: 30px;
color: #4680ff;
}
.e-box .e-sh{
height: 40;
width: 95%;
border: 1px solid #4680ff;
border-radius: 5px;
}
.e-box .e-sh input[type="email"]{
height: 40px;
width: 240px;
text-align: center;
outline: none;
border: none;
background-color: #FF960D00;
color: #4680ff;
}
.e-box .e-sh input[type="email"]::placeholder{
color: #4680ff;
}
.e-box .e-sh .bi-envelope{
position: relative;
top: 5px;
font-size: 30px;
color: #4680ff;
}
.btn{
height: 45px;
position: relative;
top: 10px;
background-color: #FF960D00;
color: #4680ff;
cursor: pointer;
transition: all 0.3s;
}
.btn:hover{
background-color: #4680ff;
color:#fff;
}
.btn i{
font-size: 20px;
}
.user span{
color: #4680ff;
}
.user{
display: none;
}