This file contains 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
<?php | |
/** | |
* Copyright (c) 2017. Ezeclip | |
*/ | |
namespace App\Services; | |
class MapService { | |
// Define Constants | |
const GOOGLE_API_KEY = "XXXXX"; |
This file contains 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
body { | |
font-family: arial, verdana, sans-serif; | |
font-size: 8px; | |
background: #1E1E20; | |
text-align: center; | |
} | |
.switch { | |
display: inline-block; | |
margin: 10em 2em; |
This file contains 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
<span class="switch"> | |
<span class="switch-border1"> | |
<span class="switch-border2"> | |
<input id="switch1" type="checkbox" checked /> | |
<label for="switch1"></label> | |
<span class="switch-top"></span> | |
<span class="switch-shadow"></span> | |
<span class="switch-handle"></span> | |
<span class="switch-handle-left"></span> | |
<span class="switch-handle-right"></span> |