Skip to content

Instantly share code, notes, and snippets.

View galkasv's full-sized avatar

galkasv galkasv

View GitHub Profile
@galkasv
galkasv / micromodal.css
Created April 11, 2021 14:06 — forked from ghosh/micromodal.css
Demo modal styles for micromodal.js and corresponding expected html. If using this, set the `awaitCloseAnimation` in config to true
/**************************\
Basic Modal Styles
\**************************/
.modal {
font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}
.modal__overlay {
position: fixed;
@galkasv
galkasv / index.html
Created September 13, 2019 12:52
Product Template powered with Bootstrap
<div class="site-outer">
<nav class="navbar navbar-fixed-top">
<section class="container-fluid">
<div class="row">
<div class="container-menu">
<nav class="menu" id="hb">
<div></div>
<div></div>
<div></div>
</nav>
@galkasv
galkasv / index.html
Created September 13, 2019 11:53
Sass mixin library for text hover
<button class="btn-nav">
<div class="bar arrow-top-r"></div>
<div class="bar arrow-middle-r"></div>
<div class="bar arrow-bottom-r"></div>
</button>
<div class="links-con">
<a href="https://codepen.io/tonkec/full/zbRKKK" target="_blank" class="nav new">NEW VERSION</a>
<a href="https://antonijasimic.bitbucket.io/text_hover_effects/index.html" target="_blank" class="nav">Home</a>
<a href="https://antonijasimic.bitbucket.io/text_hover_effects/documentation.html" target="_blank" class="nav">Docs</a>
<a href="https://github.com/tonkec/text_hover_effects" class="nav" target="_blank">Download</a>
@galkasv
galkasv / index.html
Created September 13, 2019 11:38
The Hamburger Menu
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>The Hamburger Menu</h1>
<p>(click)</p>
<div class="menu btn1" data-menu="1">
<div class="icon-left"></div>
<div class="icon-right"></div>
</div>
@galkasv
galkasv / bootstrap-sticky-footer.markdown
Created September 13, 2019 11:37
Bootstrap Sticky footer

Admin Menu

A concept for admin menu toggle using little jQuery and mostly CSS.

A Pen by Sazzad on CodePen.

License.

@galkasv
galkasv / index.html
Created October 9, 2018 10:19
Simple jQuery and CSS3 Off-Canvas Menu
<nav id="menu">
<ul class="mobile-nav" id="mobile">
<li class="menu-item menu-item-has-children">
<a href="#">Visit</a>
<ul class="sub-menu">
<li class="menu-item">
<a href="#">What&#8217;s On</a>
</li>
@galkasv
galkasv / easy-ionic-side-menu-transitions.markdown
Created October 9, 2018 10:09
Easy Ionic Side Menu Transitions

Easy Ionic Side Menu Transitions

I've been playing around with the Ionic Framework and Angular for a while now. Building simple apps and whatnot. One thing i thought it lacked (Although absolutely amazing as it is!) was the ability to quickly change the way the menu transitions in. That being said, here is a bunch of slide transitions for you to use in your next ionic project!

A Pen by Jamie Coulter on CodePen.

License.

@galkasv
galkasv / fully-responsive-css3-menu.markdown
Created October 9, 2018 09:50
Fully responsive CSS3 menu

Fully responsive CSS3 menu

A fully responsive menu without any need of JavaScript and using less than 200 lines of functional CSS code.

A Pen by Claudio Holanda on CodePen.

License.

@galkasv
galkasv / httpd-vhost.conf
Created July 17, 2017 09:30 — forked from agragregra/httpd-vhost.conf
XAMPP httpd-vhost.conf
<VirtualHost *:80>
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/"
ServerName localhost
<Directory "/Applications/XAMPP/xamppfiles/htdocs/">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Require all granted
</Directory>
</VirtualHost>