Files
parcer/src/index.css

133 lines
2.9 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 {
right: 0;
overflow-x: hidden;
2024-10-19 04:01:24 +05:30
background: rgb(255, 255, 255);
2024-10-19 20:55:10 +05:30
background: rgb(255, 255, 255);
2024-10-19 04:01:24 +05:30
background: -moz-radial-gradient(
circle,
rgba(255, 255, 255, 1) 0%,
2024-10-19 20:55:10 +05:30
rgba(232, 191, 222, 1) 100%,
2024-10-19 04:01:24 +05:30
rgba(255, 255, 255, 1) 100%
);
background: -webkit-radial-gradient(
circle,
rgba(255, 255, 255, 1) 0%,
2024-10-19 20:55:10 +05:30
rgba(232, 191, 222, 1) 100%,
2024-10-19 04:01:24 +05:30
rgba(255, 255, 255, 1) 100%
);
background: radial-gradient(
circle,
rgba(255, 255, 255, 1) 0%,
2024-10-19 20:55:10 +05:30
rgba(232, 191, 222, 1) 100%,
2024-10-19 04:01:24 +05:30
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%,
2024-10-19 20:55:10 +05:30
rgba(232, 191, 222, 1) 100%,
2024-10-19 04:01:10 +05:30
rgba(255, 255, 255, 1) 100%
);
background: -webkit-radial-gradient(
circle,
rgba(255, 255, 255, 1) 0%,
2024-10-19 20:55:10 +05:30
rgba(232, 191, 222, 1) 100%,
2024-10-19 04:01:10 +05:30
rgba(255, 255, 255, 1) 100%
);
background: radial-gradient(
circle,
rgba(255, 255, 255, 1) 0%,
2024-10-19 20:55:10 +05:30
rgba(232, 191, 222, 1) 100%,
2024-10-19 04:01:10 +05:30
rgba(255, 255, 255, 1) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
display: flex;
2024-10-19 20:55:10 +05:30
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
2024-10-19 04:01:10 +05:30
}
#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-18 22:27:29 +05:30
#browser-window {
overflow-y: auto;
height: 100%;
}
.right-side-panel {
margin: 0;
transform: scale(1);
transform-origin: top left;
overflow: hidden;
position: relative;
}
/* For laptops (between 1024px and 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
#browser-recorder {
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem;
2024-10-18 19:28:54 +05:30
}
}
2024-10-18 19:28:54 +05:30
/* For desktops (between 1441px and 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
/* Styles for desktops */
.your-element {
font-size: 18px;
padding: 16px;
2024-10-18 19:28:54 +05:30
}
}
/* For very large desktops (greater than 1920px) */
@media (min-width: 1921px) {
/* Styles for very large desktops */
.your-element {
font-size: 20px;
padding: 20px;
}
2024-10-18 19:28:54 +05:30
}