This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git subtree push --prefix SUBFOLDER ORIGINNAME master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>First React App</title> | |
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ol { | |
overflow: visible; | |
margin: 0; | |
margin-left: 46px; | |
padding: 0; | |
color: transparent; | |
list-style-type: none; | |
counter-reset: li-counter; | |
} | |
ol li { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Find regex example: | |
Fancy Box</option>[\s]*</parameter>[\s]* | |
Replace: | |
Fancy Box</option></parameter> | |
=========== | |
Find pages with parameter filled in: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$main: rgb(250, 206, 141); | |
$section: purple; | |
$nav: red; | |
$h1: teal; | |
$h2: orange; | |
$h3: pink; | |
main, section, nav, h1, h2, h3 { | |
&:before { font-size: 10px; font-family: 'Courier New', Courier, monospace; font-weight: 400; } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Reset | |
git checkout -- . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#menu { | |
margin-top: 0; | |
} | |
#menu-logo { top: 0; background-size: cover; } | |
.floating_item2 { | |
border:5px solid #c40169; | |
position:absolute !important; | |
left:100px !important; | |
top:105px !important;z-index: 100} | |
.floating_item { border:2px solid blueviolet; position:absolute !important; left:5px !important; top:5px !important; } |