-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmb.css
More file actions
46 lines (40 loc) · 716 Bytes
/
Copy pathsmb.css
File metadata and controls
46 lines (40 loc) · 716 Bytes
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
body {
margin : 0;
padding : 0;
background : #9c88ff;
}
.middle {
position : absolute;
top : 50%;
left : 50%;
transform : translate(-50%, -50%);
}
.sm-container{
text-align : center;
}
.sm-container i{
color : #f5f6fa;
padding : 20px;
font-size : 20px;
cursor : pointer;
transition : 0.4s;
}
.sm-container i:hover {
transform : scale(1.2);
}
.sm-menu {
background : #487eb0;
position : absolute;
border-radius : 8px;
display: none;
}
.sm-menu::before {
content : "";
width : 10px;
height : 10px;
position : absolute;
background: #487eb0;
top : -5px;
left : 50%;
transform : translate(-50%) rotate(45deg);
}