-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapril.css
61 lines (50 loc) · 832 Bytes
/
april.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
html, body{
margin: 0;
padding: 0;
}
#sidebar{
font-family: 'Helvetica';
padding: 10px;
position: fixed;
width: 300px;
height: 100vh;
background-color: black;
color: white;
box-shadow: 3px 0px 6px 0px rgba(174,174,174,0.50);
opacity: 0.5;
}
#sidebar:hover{
opacity: 1;
}
.image{
display: block;
width: 100%;
height: 100%;
}
.image img{
width: 100%;
height: 100%;
}
.image p{
display: none;
}
.flappy-button{
right: 30;
bottom: 30;
position: fixed;
width: 150px;
height: 150px;
-webkit-transition: -webkit-transform .5s ease-in-out;
transition: transform .5s ease-in-out;
}
.flappy-button:hover{
filter: drop-shadow(16px 16px 10px #FF69B4);
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
@media screen and (max-width: 480px) {
#sidebar{
width: 100%;
height: 100px;
}
}