Skip to content

Instantly share code, notes, and snippets.

View MThakkar121's full-sized avatar
:octocat:
Focusing

Mayur Thakkar MThakkar121

:octocat:
Focusing
View GitHub Profile
@MThakkar121
MThakkar121 / add-to-cart-animation.markdown
Created January 20, 2019 15:28
Add to cart animation
<!DOCTYPE html>
<html>
<head>
<title>menu</title>
<link rel="stylesheet" type="text/css" href="menu5.css">
</head>
<body>
<b class="a1"></b>
<b class="a2">Computer Science VS Software Engineering</b>
<b class="a3">Computer Science is the study of how computers work, mostly from the theoretical and mathematical perspective.
@MThakkar121
MThakkar121 / canvas-image-displacement-portfolio-slider.markdown
Created May 10, 2019 09:59
Canvas image displacement - portfolio slider

Canvas image displacement - portfolio slider

Slider works with your keyboard's arrow keys too!

A Pen by Dan on CodePen.

License.

@MThakkar121
MThakkar121 / geometric-business-card-with-css-grid.markdown
Created June 21, 2019 17:46
Geometric business card with CSS Grid
@MThakkar121
MThakkar121 / intro.md
Created July 19, 2019 17:28 — forked from derhuerst/intro.md
Installing Git on Linux, Mac OS X and Windows
@MThakkar121
MThakkar121 / sass.sass
Created July 31, 2019 09:38
difference files between scss and sass
//Scss syntax
@mixin button-base() {
@include typography(button);
@include ripple-surface;
@include ripple-radius-bounded;
display: inline-flex;
position: relative;
height: $button-height;
border: none;
vertical-align: middle;
@mixin button-base() {
@include typography(button);
@include ripple-surface;
@include ripple-radius-bounded;
display: inline-flex;
position: relative;
height: $button-height;
border: none;
vertical-align: middle;
&:hover {
@MThakkar121
MThakkar121 / sasssyntax.sass
Created July 31, 2019 09:53
difference syntax and basic sass
@mixin button-base()
@include typography(button)
@include ripple-surface
@include ripple-radius-bounded
display: inline-flex
position: relative
height: $button-height
border: none
vertical-align: middle
@MThakkar121
MThakkar121 / comment.scss
Created July 31, 2019 10:01
comments in scss
// This comment won't be included in the CSS.
/* But this comment will, except in compressed mode. */
/* It can also contain interpolation:
* 1 + 1 = #{1 + 1} */
/*! This comment will be included even in compressed mode. */
p /* Multi-line comments can be written anywhere
@MThakkar121
MThakkar121 / comment.sass
Created July 31, 2019 10:04
comments in sass
// This comment won't be included in the CSS.
This is also commented out.
/* But this comment will, except in compressed mode.
/* It can also contain interpolation:
1 + 1 = #{1 + 1}
/*! This comment will be included even in compressed mode.