Skip to content

Instantly share code, notes, and snippets.

View nocodesupplyco's full-sized avatar

No-Code Supply Co nocodesupplyco

View GitHub Profile
@nocodesupplyco
nocodesupplyco / aspect-ratio.css
Created December 16, 2022 18:36
CSS Aspect Ratio
/* Set aspect ratio on an element/class */
.div {
aspect-ratio: 16 / 9;
}
/* Minimum aspect ratio */
@media (min-aspect-ratio: 8/5) {
div {
background: #9af; /* blue */
}
@nocodesupplyco
nocodesupplyco / prefers-dark-light.css
Created December 16, 2022 18:26
@media Prefers Dark/Light Mode
@media (prefers-color-scheme: dark) {
--lightness: 90%;
--text-1: hsl(200 10% var(--lightness));
}
/*Other uses:*/
@media (prefers-contrast: high) {...}
@media (prefers-reduce-transparency: reduce) {...}
@media (forced-colors: high) {...}
@media (light-level: dim) {...}
@nocodesupplyco
nocodesupplyco / prefers-reduced-motion.css
Created December 16, 2022 14:57
@media Prefers Reduced Motion
/*example motion*/
animation: wobbley 1s linear infinite;
@media (prefers-reduced-motion: reduce) {
/*example motion altered for reduced preference*/
animation: cross-fade 3s ease-in-out infinite;
}
@nocodesupplyco
nocodesupplyco / meta-noindex.html
Created December 16, 2022 14:48
Hide Page From Google Search w/ Meta Tag
<meta name="robots" content="noindex, nofollow">
@nocodesupplyco
nocodesupplyco / input-value-to-url.js
Created December 13, 2022 16:12
Redirect Form on Submit and Pass Input Value to URL
$(function() {
//run when form submits - ID must be on the <form> element!
$("#your-form").submit(function(event) {
//store email input value
var emailValue = $("#email").val();
//redirect to sign up
window.location.replace("example.com/signup?email=" + emailValue);
@nocodesupplyco
nocodesupplyco / scrollsnap.css
Created November 26, 2022 14:43
CSS Scroll Snap
/*Horizontal snap*/
.section {
overflow-x: auto;
overscroll-behavior-x: contain;
scroll-snap-type: x mandatory;
}
.section > .picture {
scroll-snap-align: start;
}