Skip to content

Instantly share code, notes, and snippets.

View trainspotter-rhld's full-sized avatar
🚆
i like trains

Trainspotter Rheinland trainspotter-rhld

🚆
i like trains
View GitHub Profile
@trainspotter-rhld
trainspotter-rhld / tailwind.config.js
Created September 6, 2022 13:38
tailwind css novaui config
/** @type {import('tailwindcss').Config} */
// * Novagon UI 4 tailwindcss config
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors:{
primaryBlue:{
@trainspotter-rhld
trainspotter-rhld / rewrite.css
Created September 6, 2022 13:37
css rewrite for iDevs chat app or Nova Chat
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');
body {
background-color: #000000;
font-family: 'Rubik', sans-serif;
}
h1{
font-family: 'Century Gothic', sans-serif;
font-size: 2.5rem;
color: #fff;
@trainspotter-rhld
trainspotter-rhld / main.ts
Last active May 20, 2022 13:34
challenge
let ts = true;
if(ts) {
console.log('I LOVE TypeScript');
ts = false;
}else {
console.log('I hate TypeScript');
}
//? what will the output be?
@trainspotter-rhld
trainspotter-rhld / style.css
Last active January 29, 2022 10:22
hover
a , li {
color: rgb(224, 224, 224);
transition: color 0.1s ease-out 10ms
}
a:hover {
color: rgb(129, 129, 129);
}