-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (36 loc) · 710 Bytes
/
style.css
File metadata and controls
39 lines (36 loc) · 710 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
.btn {
height: 50px;
width: 50px;
line-height: 58px;
font-size: 2em;
border-radius: 50%;
background-color: rgb(59, 57, 57);
color: white;
text-align: center;
cursor: pointer;
position: fixed;
bottom: 1%;
right: 1%;
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
transition: all .3s ease-in-out;
}
.btn:hover {
border-radius: 5%;
height: 350px;
width: 200px;
cursor: pointer;
}
.text {
color: #fff;
opacity: 0;
text-align: center;
padding-top: 1px;
transition: all .3s ease-in-out;
}
.btn:hover .text {
padding-top: 1px;
opacity: 1;
}
.app-link{
font-family: 'Montserrat', sans-serif;
}