blob: c752de3aa9fe82ba2c5c39b97f79725a6c559fbd (
plain) (
blame)
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
|
:host {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
background-image: url("https://www.fineshare.com/background/jellyfish-under-fluorescent-illumination.jpg");
}
#box {
display: flex;
flex-direction: column;
max-width: 330px;
gap: 7px;
backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.1);
padding: 30px;
color: white;
border-radius: 5px;
}
.border {
border-style: solid;
border-width: 1px;
padding: 10px;
margin: 10px;
position: absolute;
background-color: white;
box-shadow: 0 0 10px 10px black;
}
|