-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (111 loc) · 1.93 KB
/
Copy pathstyle.css
File metadata and controls
125 lines (111 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
body{
overflow: hidden;
}
.box{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
position: relative;
overflow: hidden;
transition: 0.5s ease;
}
.box .view{
position: absolute;
left: 0;
top: -100%;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
transition: 0.5s ease;
}
.box:hover .view{
top: 0;
}
.card-body{
height: 160px;
}
.view button{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width: 60%;
}
.custom-modal{
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
background: rgba(0,0,0,0.6);
}
.custom-dialog{
position: absolute;
left: 20px;
top: 20px;
right: 20px;
bottom: 20px;
background: #fff;
}
.custom-modal span{
position: absolute;
right: 10px;
top: 10px;
padding: 3px 10px;
font-weight: bolder;
cursor: pointer;
border-radius: 50%;
background: #fff;
color: #f00;
box-shadow: 0px 0px 10px 0px #000;
z-index: 100;
transition: 0.3s ease;
}
.custom-dialog iframe{
width: 100%;
height: 100%;
}
.custom-modal span:hover{
transform: scale(1.5);
}
.loader{
position: fixed;
left:0;
top:0;
bottom:0;
right:0;
background:#000;
transition: 0.2s;
color: #fff;
}
.progresss {
position: absolute;
height: 160px;
width: 160px;
cursor: pointer;
top: 50%;
left: 50%;
margin: -80px 0 0 -80px;
}
.progresss-circle {
transform: rotate(-90deg);
margin-top: -40px;
}
.progresss-circle-back {
fill: none;
stroke: #D2D2D2;
stroke-width:10px;
}
.progresss-circle-prog {
fill: none;
stroke: #4c00fc;
stroke-width: 10px;
stroke-dasharray: 0 999;
stroke-dashoffset: 0px;
transition: stroke-dasharray 0.7s linear 0s;
}
.progresss-text {
width: 100%;
position: absolute;
top: 60px;
text-align: center;
font-size: 2em;
}