-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (37 loc) · 717 Bytes
/
style.css
File metadata and controls
41 lines (37 loc) · 717 Bytes
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
html, body {
margin: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at top, #1b1f3b, #0a0c16);
font-family: Inter, system-ui, sans-serif;
}
.container {
width: 94%;
height: 94%;
margin: auto;
margin-top: 3%;
border-radius: 20px;
overflow: hidden;
backdrop-filter: blur(20px);
background: rgba(255,255,255,0.07);
box-shadow: 0 0 80px rgba(120,140,255,0.45);
}
iframe {
width: 100%;
height: 100%;
border: none;
}
.loader {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
letter-spacing: 0.2em;
color: #fff;
background: rgba(0,0,0,0.6);
transition: opacity 0.6s ease;
}
.loader.hidden {
opacity: 0;
}