blob: b56b4ebd6ce1049398acbeebcc77e72d52c16d89 (
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
30
31
32
33
34
35
36
|
:host {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
/*background-image: url("https://www.fineshare.com/background/jellyfish-under-fluorescent-illumination.jpg");*/
background: rgba(0, 0, 0, .65) url("https://4kwallpapers.com/images/wallpapers/blue-jellyfish-aquarium-underwater-glowing-marine-life-1920x1080-3546.jpg");
background-blend-mode: darken;
margin-top: -66px
}
#box {
display: flex;
flex-direction: column;
max-width: 350px;
gap: 10px;
backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.1);
padding: 30px;
color: white;
border-radius: 5px;
border-style: solid;
border-width: 1px;
border-color: rgb(140, 140, 255);
}
.border {
border-style: solid;
border-width: 1px;
padding: 10px;
margin: 10px;
position: absolute;
background-color: white;
box-shadow: 0 0 10px 10px black;
}
|