From 1c69b70a6e818ca4fa4181206a2596f41713c4d9 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 19 Oct 2024 04:01:10 +0530 Subject: [PATCH] feat: gradient bg --- src/index.css | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index cc514c80..55e7af04 100644 --- a/src/index.css +++ b/src/index.css @@ -10,7 +10,13 @@ body { margin: 0; padding: 0; scrollbar-gutter: stable; - overflow: hidden; + overflow-y: auto; +} + +html { + width: 100%; + height: 100%; + overflow-y: auto; } code { @@ -18,6 +24,39 @@ code { monospace; } +#browser-actions { +background: rgb(255,255,255); +background: -moz-radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(247,155,225,1) 100%, rgba(255,255,255,1) 100%); +background: -webkit-radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(247,155,225,1) 100%, rgba(255,255,255,1) 100%); +background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(247,155,225,1) 100%, rgba(255,255,255,1) 100%); +filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1); +} + +#browser-recorder { + background: rgb(255, 255, 255); + background: -moz-radial-gradient( + circle, + rgba(255, 255, 255, 1) 0%, + rgba(247, 155, 225, 1) 100%, + rgba(255, 255, 255, 1) 100% + ); + background: -webkit-radial-gradient( + circle, + rgba(255, 255, 255, 1) 0%, + rgba(247, 155, 225, 1) 100%, + rgba(255, 255, 255, 1) 100% + ); + background: radial-gradient( + circle, + rgba(255, 255, 255, 1) 0%, + rgba(247, 155, 225, 1) 100%, + rgba(255, 255, 255, 1) 100% + ); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1); + height: 100vh; + display: flex; +} + #browser-content { height: 100%; width: 100%;