Files
parcer/src/index.css

93 lines
1.8 KiB
CSS
Raw Normal View History

2025-03-14 23:45:07 +05:30
/* Base styles */
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;
}
2025-03-14 23:45:07 +05:30
html {
width: 100%;
height: 100%;
overflow-y: auto;
}
/* Form element autofill styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0 1000px transparent inset !important;
transition: background-color 5000s ease-in-out 0s !important;
}
2024-10-24 04:59:30 +05:30
a {
color: #ff00c3;
2025-03-14 23:45:07 +05:30
}
2025-03-04 02:23:26 +05:30
2025-03-14 23:45:07 +05:30
a:hover {
color: #ff00c3;
2024-10-24 04:59:30 +05:30
}
2024-06-21 22:24:02 +05:30
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
2025-03-04 02:23:26 +05:30
monospace;
2024-11-19 00:20:32 +05:30
color: #ff00c3;
2024-06-21 22:24:02 +05:30
}
2025-03-14 23:45:07 +05:30
/* Browser-specific elements */
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;
position: relative;
2025-03-14 23:45:07 +05:30
box-sizing: border-box;
2025-03-21 00:52:11 +05:30
width: 100%;
height: calc(100vh - 2rem);
2025-03-21 01:09:06 +05:30
margin: 1rem;
2025-03-14 23:45:07 +05:30
overflow: hidden;
2024-10-19 04:01:10 +05:30
}
#browser-content {
2024-10-18 22:27:29 +05:30
height: 100%;
width: 100%;
display: flex;
2025-03-14 23:45:07 +05:30
flex-direction: column;
2025-03-04 02:23:26 +05:30
transform: scale(1);
transform-origin: top left;
}
2024-10-18 22:27:29 +05:30
#browser-window {
overflow-y: auto;
height: 100%;
}
.right-side-panel {
transform: scale(1);
transform-origin: top left;
overflow: hidden;
position: relative;
}
2025-03-14 23:45:07 +05:30
.MuiButton-root[sx*="position: 'absolute'"] {
bottom: 2rem !important;
margin-bottom: 0 !important;
2025-03-04 02:23:26 +05:30
}