-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (91 loc) · 1.92 KB
/
style.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
80
81
82
83
84
85
86
87
88
89
90
91
92
body
{
background-image: url("https://images.hdqwalls.com/download/neblua-space-planet-art-4k-ye-2560x1440.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
display: flow-root;
justify-content: center;
align-items: center;
height: 1000px;
width: auto;
max-height: 2000px;
}
body div
{
margin-left: 100px;
margin-top: 50px;
}
#title
{
background-color: black;
margin: 0 0 0 0;
border-radius: 10px;
}
#title p
{
color: white;
text-align: center;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#frosted-glass0
{
height: 300px;
width: 300px;
box-shadow: 0 20px 50px -10px rgb(0 0 0 / 85%);
overflow: hidden;
display: inline-block;
text-align: center;
border-radius: 20px;
backdrop-filter: blur(3px);
animation-name: frosted-glass-fly;
animation-duration: 4s;
animation-iteration-count: infinite;
}
#frosted-glass1
{
height: 300px;
width: 300px;
box-shadow: 0 20px 50px -10px rgb(0 0 0 / 85%);
overflow: hidden;
display: inline-block;
text-align: center;
border-radius: 20px;
backdrop-filter: blur(5px);
}
#frosted-glass2
{
height: 300px;
width: 300px;
box-shadow: 0 20px 50px -10px rgb(0 0 0 / 85%);
overflow: hidden;
display: inline-block;
text-align: center;
border-radius: 20px;
backdrop-filter: blur(7px);
}
#frosted-glass3
{
height: 300px;
width: 300px;
box-shadow: 0 20px 50px -10px rgb(0 0 0 / 85%);
overflow: hidden;
display: inline-block;
text-align: center;
border-radius: 20px;
backdrop-filter: blur(10px);
}
@keyframes frosted-glass-fly {
0%{
margin-left: 100px;
margin-top: 50px;
}
50%{
margin-left: 100px;
margin-top: 250px;
}
100%{
margin-left: 100px;
margin-top: 50px;
}
}