32 lines
641 B
CSS
32 lines
641 B
CSS
/* styles/globals.css */
|
|
@font-face {
|
|
font-family: 'San Francisco';
|
|
src: url('/assets/fonts/font.otf') format('opentype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
.glass {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
-webkit-backdrop-filter: blur(40px);
|
|
backdrop-filter: blur(40px);
|
|
position: fixed;
|
|
z-index: 50;
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
|
|
.glass2 {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
-webkit-backdrop-filter: blur(40px);
|
|
backdrop-filter: blur(40px);
|
|
position: fixed;
|
|
z-index: 1;
|
|
}
|
|
|
|
.glass3 {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
-webkit-backdrop-filter: blur(40px);
|
|
backdrop-filter: blur(40px);
|
|
}
|