-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupbtn.css
79 lines (79 loc) · 1.64 KB
/
upbtn.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* КНОПКА изначально невидимая */
div.upbtn {
display: none;
position: fixed;
cursor: pointer;
background: none;
text-align: center;
transition: all 0.2s linear;
}
@media screen and (max-width: 750px) {
div.upbtn {
/*left: 30px; */ /* кнопка слева внизу */
right: 30px; /* кнопка справа внизу */
bottom: 30px;
width: 60px;
height: 60px;
}
}
@media screen and (min-width: 751px) {
div.upbtn {
left: 0px;
bottom: 0px;
width: 100px;
height: 100%;
}
}
/* КНОПКА видимая */
div.upbtn.norm {
display: block;
background-color: #DDD;
transition: all 0.2s linear;
}
@media screen and (max-width: 750px) {
div.upbtn.norm {
opacity: 1;
border-radius: 30px; /* в два раза меньше стороны */
/* Material-кнопка для мобилки */
box-shadow: #0a0a0a 0px 2px 12px -2px;
background-color: #2196F3;
}
}
@media screen and (min-width: 751px) {
div.upbtn.norm {
opacity: 0.2;
}
div.upbtn.norm:hover {
opacity: 0.5;
}
}
/* СТРЕЛКА */
div.upbtn div.upbtnarr {
width: 40px;
height: 40px;
display: block;
transition: all 0.2s linear;
transform: rotate(0deg);
background-size: cover;
background-repeat: no-repeat;
background-image: url(upbtn.png);
}
@media screen and (max-width: 750px) {
div.upbtn div.upbtnarr {
width: 40px;
height: 40px;
margin: 10px auto;
}
}
@media screen and (min-width: 751px) {
div.upbtn div.upbtnarr {
width: 40px;
height: 40px;
margin: 20px auto;
}
}
/* СТРЕЛКА перевёрнутая */
div.upbtn div.upbtnarr.down {
/*transition: all 0.2s linear;*/
transform: rotate(180deg);
}