Skip to content

Instantly share code, notes, and snippets.

View shahab570's full-sized avatar

MD SHAHAB UDDIN shahab570

View GitHub Profile
//style.scss
@import "./variables";
@import "./mixins";
@include reset; //imported from "_mixins.scss"
body {
width: 100%;
height: 100vh;
background-color: $black;
@include center; //imported from "_mixins.scss"
//_variables.scss
$black: #0f3057;
$green: #008891;
$grey: #e7e7de;
//_mixins.scss
@mixin reset {
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
}
@shahab570
shahab570 / index.html
Last active December 29, 2020 12:24
index.html
//index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>New</title>
<link rel="stylesheet" href="./style.css" />
</head>