Dedicated to the memory of someone dear who passed away in January 2019. Missing you every day.
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
<tips>this is tooltips!</tips> | |
<tips>this is new tooltips!</tips> | |
<tips class="line">this is tooltips!</tips> | |
<tips class="line">this is new tooltips!</tips> |
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
<div class="phone"> | |
<header class="header"> | |
<div class="header-logo"> | |
<div> | |
<span></span> | |
<span></span> | |
<span></span> | |
<span></span> | |
</div> | |
</div> |
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
<p>Uploading <i class="fontawesome-camera"></i></p> |
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
<!-- about --> | |
<div class="about"> | |
<a class="bg_links social portfolio" href="https://www.rafaelalucas.com" target="_blank"> | |
<span class="icon"></span> | |
</a> | |
<a class="bg_links social dribbble" href="https://dribbble.com/rafaelalucas" target="_blank"> | |
<span class="icon"></span> | |
</a> | |
<a class="bg_links social linkedin" href="https://www.linkedin.com/in/rafaelalucas/" target="_blank"> | |
<span class="icon"></span> |
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
version: '3' | |
services: | |
mongo1: | |
hostname: mongo1 | |
container_name: localmongo1 | |
image: mongo | |
restart: always | |
expose: | |
- 27017 | |
ports: |
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="zh-cn"> | |
<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>data</title> | |
<style> | |
.date-container { |
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="zh-cn"> | |
<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>loading</title> | |
<style> | |
.bg-wrapper { |
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
<select class="dropdown" placeholder="Please choose"> | |
<option>List entry #1</option> | |
<option>List entry #2</option> | |
<option>List entry #3</option> | |
<option>List entry #4</option> | |
<option>List entry #5</option> | |
<option>List entry #6</option> | |
<option>List entry #7</option> | |
<option>List entry #8</option> | |
<option>List entry #9</option> |
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
mixin SelectBox(name, options) | |
.select-box | |
.select-box__current(tabindex="1") | |
each option, index in options | |
.select-box__value | |
input.select-box__input(type="radio" id=index value=option.value name=name checked) | |
p.select-box__input-text #{option.name} | |
img.select-box__icon(src="http://cdn.onlinewebfonts.com/svg/img_295694.svg" alt="Arrow Icon" aria-hidden="true") | |
ul.select-box__list | |
each option, index in options |
NewerOlder