
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@codinglace/css
Advanced tools
A modern, lightweight CSS framework with TypeScript components, focusing on performance, accessibility, and developer experience.
npm install codelace
yarn add codelace
<!-- CSS -->
<link href="https://unpkg.com/codelace@1.0.0/dist/css/codelace.min.css" rel="stylesheet">
<!-- JavaScript -->
<script src="https://unpkg.com/codelace@1.0.0/dist/js/codelace.min.js"></script>
// Import specific components
import { Tab, Popover, Modal } from 'codelace';
// Import styles
import 'codelace/css'; // or import 'codelace/dist/css/codelace.min.css';
// Initialize components
const tab = new Tab('#myTab');
const popover = new Popover('#myPopover', {
content: 'Hello World!',
placement: 'top',
offset: 8
});
const modal = new Modal('#myModal', {
backdrop: true,
keyboard: true
});
<!-- Tab System -->
<div class="cl-tabs" id="myTab">
<ul class="cl-tab-list" role="tablist">
<li class="cl-tab-item">
<button class="cl-tab-link active" data-toggle="tab" data-target="#home">Home</button>
</li>
<li class="cl-tab-item">
<button class="cl-tab-link" data-toggle="tab" data-target="#profile">Profile</button>
</li>
</ul>
<div class="cl-tab-content">
<div class="cl-tab-pane active" id="home">Home content</div>
<div class="cl-tab-pane" id="profile">Profile content</div>
</div>
</div>
<!-- Modal -->
<button class="cl-btn cl-btn-primary" data-toggle="modal" data-target="#myModal">
Open Modal
</button>
<div class="cl-modal" id="myModal">
<div class="cl-modal-dialog">
<div class="cl-modal-content">
<div class="cl-modal-header">
<h5 class="cl-modal-title">Modal Title</h5>
<button class="cl-modal-close" data-dismiss="modal">×</button>
</div>
<div class="cl-modal-body">
Modal content goes here...
</div>
<div class="cl-modal-footer">
<button class="cl-btn cl-btn-secondary" data-dismiss="modal">Close</button>
<button class="cl-btn cl-btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
// Import all styles
@import "codelace/scss/codelace";
// Or import specific components
@import "codelace/scss/components/buttons";
@import "codelace/scss/components/modals";
@import "codelace/scss/components/tabs";
// Customize variables
$primary: #007bff;
$secondary: #6c757d;
$success: #28a745;
// ... more variables
CodeLace supports all modern browsers:
Comprehensive documentation is coming soon. In the meantime, you can:
git checkout -b feature/amazing-feature)git commit -am 'Add amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A modern, lightweight CSS framework with TypeScript components
We found that @codinglace/css demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.