-
Notifications
You must be signed in to change notification settings - Fork 1
/
homepage.css
62 lines (52 loc) · 1.01 KB
/
homepage.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
.profile_display{
background-color: aliceblue;
left: 22%;
width:160px;
border: 2px solid wheat;
border-radius: 15px;
top: 8px;
}
.profile_display_btm{
position: absolute;
display: inline-block;
background-color: #dddddd;
visibility: hidden;
min-width: 160px;
z-index: 1;
font-size: 10px;
padding: 5px;
}
.profile_display:hover .profile_display_btm{
visibility: visible;
cursor: progress;
background-color: whitesmoke;
display: block;
border-radius: 20px 10px;
top:40px;
text-align: left;
color: black;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
}
.profile_display_btm h4{
color: rgb(6, 7, 7);
padding: 5px;
text-align: left;
display: block;
}
.profile_display_btm h4:hover{
cursor: pointer;
color: blue;
}
#profile_border{
position: relative;
border: 3px solid green;
width: 80%;
height: 20px;
border-radius: 5px;
left:9%
}
.log{
left:80%;
size: 20px;
}