-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (55 loc) · 1.04 KB
/
style.css
File metadata and controls
55 lines (55 loc) · 1.04 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
.express-wrapper {
position: fixed;
right: 50px;
bottom: 50px;
z-index: 9999;
}
.express-iframe {
border: 1px #ebebeb solid;
position: fixed;
bottom: 130px;
right: 50px;
border-radius: 5px;
max-height: 90vh;
transition: height .2s, opacity .1s cubic-bezier(0.72, -0.01, 0.76, 0.82);
z-index: 9999;
background: #fff;
}
.express-button {
cursor: pointer;
width: 72px;
height: 72px;
border: 0;
outline: none;
position: relative;
border-radius: 100%;
background-color: #999999;
box-shadow: 0 3px 5px 1px rgba(0,0,0,.2);
transition: all .2s;
}
.express-button:active {
transform: scale(0.9);
}
.express-button:hover {
opacity: .9;
}
.express-button__badge {
position: absolute;
display: flex;
bottom: 0;
right: 0;
font-size: 14px;
background-color: #f14d00;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
height: 30px;
min-width: 30px;
justify-content: center;
align-items: center;
border-radius: 15px;
}
.express-iframe-full {
width: 100%;
height: 100%;
background: #fff;
}