Skip to content

Instantly share code, notes, and snippets.

@TrueSlu
TrueSlu / html5-editable-table.markdown
Created September 17, 2018 03:40
HTML5 Editable Table

HTML5 Editable Table

Create and edit an HTML5 table without the use of a library. Uses HTML5's contenteditable and minimal JavaScript.

A Pen by Ash Blue on CodePen.

License.

@TrueSlu
TrueSlu / alert-number-modal.markdown
Created September 14, 2018 18:42
Alert Number Modal
@TrueSlu
TrueSlu / full-width-mobile-nav-dropdown.markdown
Created September 14, 2018 03:27
Full width mobile nav dropdown

Full width mobile nav dropdown

Basic structure for a mobile nav dropdown with smooth animations on hamburger menu and nav.

A Pen by Matt Studdert on CodePen.

License.

@TrueSlu
TrueSlu / index.html
Last active October 8, 2018 17:18
Landing Page With Typer
<header id="header">
<div class="vert-text">
<div class="p-img">
<img src="https://res.cloudinary.com/pashagord/image/upload/v1468545314/Portfolio/logos/codepen_logo.png"/>
</div>
<h1 id="typer-size">
<!-- TEXTS -->
<span id="typed"></span>
@TrueSlu
TrueSlu / index.html
Created September 4, 2018 18:10
Landing Page With Typer
<header id="header">
<div class="vert-text">
<div class="p-img">
<img src="https://res.cloudinary.com/pashagord/image/upload/v1468545314/Portfolio/logos/codepen_logo.png"/>
</div>
<h1 id="typer-size">
<!-- TEXTS -->
<span id="typed"></span>
<div id="typed-strings">
@TrueSlu
TrueSlu / dailyui-003-landing-page-with-parallax-bg.markdown
Created September 3, 2018 04:47
DailyUi 003 - Landing Page with Parallax bg

DailyUi 003 - Landing Page with Parallax bg

This is a exercise of Daily Ui number 003. It's a landing page full width with parallax mouvemouse background. The theme is Ballons Festival :)

A Pen by Sara B. on CodePen.

License.

@TrueSlu
TrueSlu / index.html
Created August 29, 2018 23:38
Social Media Icons
<a href="#" class="icon-button twitter"><i class="icon-twitter"></i><span></span></a>
<a href="#" class="icon-button facebook"><i class="icon-facebook"></i><span></span></a>
<a href="#" class="icon-button google-plus"><i class="icon-google-plus"></i><span></span></a>
<a href="#" class="icon-button youtube"><i class="fa fa-youtube"></i><span></span></a>
<a href="#" class="icon-button pinterest"><i class="fa fa-pinterest"></i><span></span></a>
@TrueSlu
TrueSlu / daily-ui-003-landing-page.markdown
Last active August 17, 2019 17:54
Daily UI | #003 - Landing Page
@TrueSlu
TrueSlu / index.haml
Created August 29, 2018 18:47
Login Box Concept
.brand
%a{:href => 'https://www.jamiecoulter.co.uk',:target => '_blank'}
%img{:src => 'https://s3-us-west-2.amazonaws.com/s.cdpn.io/217233/logo.png'}
.login
.login_title
%span Login to your account
.login_fields
.login_fields__user
.icon
%img{:src => 'https://s3-us-west-2.amazonaws.com/s.cdpn.io/217233/user_icon_copy.png'}
@TrueSlu
TrueSlu / index.html
Last active August 29, 2018 19:20
Login
<body class="align">
<div class="grid">
<form action="https://httpbin.org/post" method="POST" class="form login">
<div class="form__field">
<label for="login__username"><svg class="icon"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#user"></use></svg><span class="hidden">Username</span></label>
<input id="login__username" type="text" name="username" class="form__input" placeholder="Username" required>
</div>