[ DEV Ed ] glass webpage 중간중간 메모
# www.youtube.com/watch?v=O7WbVj5apxU&t=568s ## CSS # 우측 위를 향하는 배경 그라데이션 background: linear-gradient(to right top, #65dfc9, #6cddeb); # div 중앙에 띄우기 display: flex; align-items: center; //가로 justify-content: center; //세로 # rgba 투명도까지 처리할수 있는 색상 코드 rgba(255, 255, 255, 0.7) # 모서리 둥글게 border-radius: 2rem; # 완전히 둥글게 border-radius: 50%; # 블러 처리 backdrop-filter: blur(2rem); # 가로로 놓기 display: flex; # 가로로..