-
Notifications
You must be signed in to change notification settings - Fork 0
/
EmailLoggedIn.css
54 lines (54 loc) · 1.14 KB
/
EmailLoggedIn.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
#emailLoggedin{
position: absolute;
top: 60px;
right: 10px;
background-color: white;
border-radius: 10px;
height: 140px;
width: 400px;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
padding: 10px;
font-family: Calibri;
color: darkslategrey;
z-index: 9980;
padding-left: 15px;
padding-right: 15px;
outline: 1px solid dimgrey;
display: none;
}
#emailLoggedinDisplay{
margin-top: 20px;
height: 25px;
background-color: lightgray;
border-radius: 4px;
text-align: center;
padding-top: 5px;
color: dodgerblue;
}
#emailLoggedinLogout{
border-radius: 5px;
background-color: red;
color: white;
height: 30px;
width: 90px;
font-size: 15px;
font-family: Calibri;
position: relative;
top: 11px;
left: calc(50% - 45px);
display: flex;
justify-content: center;
align-items: center;
}
#emailLoggedinLogout:hover{
transform: scale(1.04);
transition: transform 120ms ,background-color 0ms;
cursor: pointer;
}
@media (max-width: 600px) {
#emailLoggedin {
width: 85%;
position: absolute;
top: 70px;
}
}