-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
53 lines (53 loc) · 1 KB
/
Copy pathstyling.css
File metadata and controls
53 lines (53 loc) · 1 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
body
{
margin: 0;
padding: 0;
background: url("images/sunset.jpg");
background-size: cover;
}
.notification
{
position: absolute;
top: 0;
width: max-content;
padding: 20px 15px;
border-radius: 4px;
background-color: #0f1114;
color: #f6f5f9;
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
transform: translateY(-30px);
opacity: 0;
visibility: hidden;
animation: fade-in 7s linear forwards;
}
.notification_progress
{
position: absolute;
left: 5px;
bottom: 5px;
width: calc(100% - 10px);
height: 3px;
transform: scaleX(0);
transform-origin: left;
background-image: linear-gradient(to right, #539bdb, #3250bf);
border-radius: inherit;
animation: load 6s 0.25s linear forwards;
}
@keyframes fade-in
{
5%{
opacity: 1;
visibility: visible;
transform: translateY(0);
}
90%{
opacity: 1;
transform: translateY(0);
}
}
@keyframes load
{
to{
transform: scaleX(1);
}
}