realtimecursor
Version:
Real-time collaboration system with cursor tracking and approval workflow
54 lines (45 loc) • 797 B
CSS
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
}
.app {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
header {
margin-bottom: 30px;
text-align: center;
}
header h1 {
margin-bottom: 10px;
}
main {
background-color: white;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
footer {
margin-top: 30px;
text-align: center;
color: #6c757d;
}
footer a {
color: #0d6efd;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.collaborative-editor {
width: 100%;
}
.collaborators {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}