Skip to content

Instantly share code, notes, and snippets.

View nraloux's full-sized avatar

Raloux Nouebissie nraloux

View GitHub Profile
@nraloux
nraloux / index.html
Created March 15, 2020 18:42
digital-marketing-landing
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="h-screen overflow-hidden flex items-center justify-center" style="background: #edf2f7;">
<div class="bg-purple-800 p-6">
@nraloux
nraloux / index.html
Created March 15, 2020 18:41
dark-mode-vs-light-mode-navigation
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="h-screen overflow-hidden flex items-center justify-center" style="background: #edf2f7;">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet">
@nraloux
nraloux / index.html
Last active March 15, 2020 18:40
landing-page-with-tailwind-css
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="h-screen overflow-hidden flex items-center justify-center" style="background: #edf2f7;">
<!-- This is an example component -->
@nraloux
nraloux / index.html
Created February 20, 2020 17:10
Pure CSS Fly In Sidebar Nav
<section class="app">
<aside class="sidebar">
<header>
Menu
</header>
<nav class="sidebar-nav">
<ul>
<li>
<a href="#"><i class="ion-bag"></i> <span>Shop</span></a>
@nraloux
nraloux / css-hamburger-menus.markdown
Created February 20, 2020 16:08
CSS hamburger menus
@nraloux
nraloux / index.pug
Created February 20, 2020 16:07
Menu test - css only - effects
.burgers
label.burger.burger1(for="burger1")
input#burger1.hidden(type="checkbox")
span
label.burger.burger2(for="burger2")
input#burger2.hidden(type="checkbox")
span
label.burger.burger3(for="burger3")
input#burger3.hidden(type="checkbox")
span
@nraloux
nraloux / css-challenge-day-2.markdown
Created February 20, 2020 16:06
CSS Challenge - Day 2
@nraloux
nraloux / corner-ribbons.markdown
Created February 20, 2020 14:34
Corner Ribbons

Corner Ribbons

Got this wonderful idea of these cool corner ribbons and decided to make it ready for use. Custom styles like colors work with simple class changes.

A Pen by Miro Karilahti on CodePen.

License.

@nraloux
nraloux / alert-message.markdown
Created February 20, 2020 14:20
alert message
@nraloux
nraloux / index.pug
Created February 20, 2020 14:17
List UI
.heading
h1 Ordered List UI
.container
.nav
a(href='#')
i(class='fal fa-home')
a(href='https://twitter.com/collinscode_' target='_blank')
i(class='fab fa-twitter')
a(href='https://github.com/cmdeveloped' target='_blank')