Files
parcer/src/index.css

113 lines
2.4 KiB
CSS
Raw Normal View History

2024-06-21 22:24:02 +05:30
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2024-10-18 22:27:29 +05:30
width: 100%;
height: 100%;
margin: 0;
padding: 0;
scrollbar-gutter: stable;
2024-10-19 04:01:10 +05:30
overflow-y: auto;
}
html {
width: 100%;
height: 100%;
overflow-y: auto;
2024-06-21 22:24:02 +05:30
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
2024-10-19 04:01:10 +05:30
#browser-actions {
margin-right: 0.5rem;
margin-top: 0.5rem;
2024-10-19 04:01:24 +05:30
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);
2024-10-19 04:01:10 +05:30
}
#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 {
2024-10-18 22:27:29 +05:30
height: 100%;
width: 100%;
display: flex;
2024-10-18 22:27:29 +05:30
flex-direction: column;
transform: scale(1); /* Ensure no scaling */
transform-origin: top left; /* Keep the position fixed */
}
#browser {
2024-10-19 04:47:53 +05:30
margin-left: 0.5rem;
margin-top: 0.5rem;
}
2024-10-18 22:27:29 +05:30
#browser-window {
overflow-y: auto;
height: 100%;
}
2024-10-18 22:27:29 +05:30
@media (max-width: 1200px) {
2024-10-18 19:28:54 +05:30
#browser-content {
2024-10-18 22:27:29 +05:30
flex-direction: column;
2024-10-18 19:28:54 +05:30
}
.right-side-panel {
2024-10-18 22:27:29 +05:30
height: auto;
2024-10-18 19:28:54 +05:30
}
}
.right-side-panel {
overflow-y: auto;
2024-10-18 22:27:29 +05:30
height: 100%;
margin: 0;
transform: scale(1);
transform-origin: top left;
2024-10-18 19:28:54 +05:30
}