Files
parcer/src/index.css

167 lines
3.1 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;
2024-11-08 21:51:53 +05:30
2024-10-19 04:01:10 +05:30
}
html {
width: 100%;
height: 100%;
overflow-y: auto;
2024-06-21 22:24:02 +05:30
}
2024-10-24 04:59:30 +05:30
a {
color: #ff00c3;
&:hover {
color: #ff00c3;
}
}
2024-06-21 22:24:02 +05:30
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
2024-11-19 00:20:32 +05:30
monospace;
color: #ff00c3;
2024-06-21 22:24:02 +05:30
}
2024-10-19 04:01:10 +05:30
#browser-actions {
right: 0;
overflow-x: hidden;
2024-10-19 04:01:10 +05:30
}
#browser-recorder {
display: flex;
2024-10-24 04:58:35 +05:30
justify-content: center;
2024-10-19 20:55:10 +05:30
align-items: center;
overflow: hidden;
position: relative;
2024-11-08 21:51:53 +05:30
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 */
}
2024-11-23 19:11:54 +05:30
#browser {
2024-11-08 21:51:53 +05:30
}
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;
}
2024-10-25 23:09:19 +05:30
@media (min-width: 1024px) and (max-width: 1211px) {
#browser-recorder {
box-sizing: border-box;
height: 100vh;
margin: 0;
}
}
/* For laptops (between 1024px and 1440px) */
2024-10-25 23:09:19 +05:30
@media (min-width: 1211px) and (max-width: 1440px) {
#browser-recorder {
box-sizing: border-box;
2024-10-20 22:37:14 +05:30
height: calc(100vh - 0.6rem);
margin: 0.3rem;
2024-10-18 19:28:54 +05:30
}
}
2024-10-18 19:28:54 +05:30
/* For desktops (between 1441px and 1920px) */
2024-10-20 20:49:45 +05:30
@media (min-width: 1441px) and (max-width: 1500px) {
2024-10-24 04:58:35 +05:30
#browser-recorder {
2024-10-20 20:49:45 +05:30
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem;
}
}
@media (min-width: 1501px) and (max-width: 1700px) {
2024-10-24 04:58:35 +05:30
#browser-recorder {
2024-10-20 20:49:45 +05:30
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem 8rem;
}
}
@media (min-width: 1701px) and (max-width: 1800px) {
2024-10-24 04:58:35 +05:30
#browser-recorder {
2024-10-20 20:49:45 +05:30
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem 14rem;
}
}
@media (min-width: 1801px) and (max-width: 1900px) {
2024-10-24 04:58:35 +05:30
#browser-recorder {
2024-10-20 20:49:45 +05:30
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem 18.5rem;
}
}
@media (min-width: 1900px) and (max-width: 1920px) {
2024-10-24 04:58:35 +05:30
#browser-recorder {
2024-10-20 20:49:45 +05:30
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem 20rem;
2024-10-18 19:28:54 +05:30
}
}
/* For very large desktops (greater than 1920px) */
2024-10-20 20:49:45 +05:30
@media (min-width: 1921px) and (max-width: 2000px) {
#browser-recorder {
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem 20rem;
}
}
@media (min-width: 2001px) and (max-width: 2500px) {
#browser-recorder {
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem 24rem;
}
}
@media (min-width: 2501px) and (max-width: 2999px) {
#browser-recorder {
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem 40rem;
}
}
@media (min-width: 3000px) {
#browser-recorder {
box-sizing: border-box;
height: calc(100vh - 2rem);
margin: 1rem 55rem;
}
2024-10-18 19:28:54 +05:30
}