Skip to content

Instantly share code, notes, and snippets.

View arrtemiy's full-sized avatar

Artem arrtemiy

View GitHub Profile
@arrtemiy
arrtemiy / gist:35c966a2f36bfe7a04abba3175ee0686
Created October 31, 2022 11:27 — forked from arbales/gist:592332
Replace checkbox label to custom background
<html>
<head>
<title>Checkbox</title>
<style>
input[type=checkbox] {
display:none;
}
input[type=checkbox] + label
{
@arrtemiy
arrtemiy / nginx.conf
Created April 12, 2022 20:17 — forked from ashleydw/nginx.conf
Laravel nginx conf file
server {
listen 80 default_server;
server_name example.com www.example.com;
access_log /srv/www/example.com/logs/access.log;
error_log /srv/www/example.com/logs/error.log;
root /srv/www/example.com/public;
index index.php index.html;