-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (45 loc) · 836 Bytes
/
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
*{
margin: 0px;
padding: 0px;
}
.container{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.logo{
position: relative;
display: block;
cursor: pointer;
background: #3B5999;
padding: 40px;
border: 2px solid #3B5999;
}
.logo::before{
content: "";
display: block;
width: 25px;
height: 70px;
border-radius: 20px 0px 0px 0px;
border: 13px solid #fff;
border-right: none;
border-bottom: none;
box-sizing: border-box;
position: absolute;
bottom: 0px;
right: 24px;
}
.logo::after{
content: "";
display: block;
width: 35px;
height: 10px;
position: absolute;
bottom: 30px;
right: 24px;
background: #fff;
}
.logo:hover{
box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.25), 0px 17px 50px rgba(0, 0, 0, 0.20);
}