Skip to content

Instantly share code, notes, and snippets.

View dustinusey's full-sized avatar
:octocat:
breaking things

Dustin (codewdustin) dustinusey

:octocat:
breaking things
View GitHub Profile
@dustinusey
dustinusey / app.css
Last active August 15, 2023 13:00
AI Image Generator CSS
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
@dustinusey
dustinusey / app.css
Created April 27, 2023 20:28
CSS For "Build a Basic ChatGPT Clone with Vanilla JavaScript"
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
:root {