-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (50 loc) · 1.38 KB
/
style.css
File metadata and controls
63 lines (50 loc) · 1.38 KB
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
@keyframes animation {
0% {width: 50px;height: 50px;}
25% {width: 50.5px;height: 50.5px;}
50% {width: 51px;height: 51px;}
75% {width: 50.5px;height: 50.5px;}
}
.fixed-action-btn{
border-color: rgb(39, 108, 176);
width: 50px;
height: 50px;
text-align: center;
position:fixed;
z-index: 5;
border-radius: 100%;
bottom: 3%;
right: 4%;
animation: animation 0.5s linear infinite;
}
.fixed-action-btn:hover{
transition: 1s;
}
/* The sidebar menu */
.sidebar {
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0;
left: 0;
background-color: rgba(255, 255, 255, 0.9); /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 10px; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}
.btn-social {
width: 43px;
height: 40px;
text-align: center;
border-radius: 100%;
}
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 100%; /* Full-width */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
}