[CSS] focus outline
/* 키보드로 버튼에 포커스 시 */ a.menu-link:focus-visible { outline: 3px solid #000; } /* 마우스, 터치로 버튼에 포커스 시 */ a.menu-link:focus:not(:focus-visible) { outline: none; box-shadow: 1px 1px 5px rgba(1, 1,…
/* 키보드로 버튼에 포커스 시 */ a.menu-link:focus-visible { outline: 3px solid #000; } /* 마우스, 터치로 버튼에 포커스 시 */ a.menu-link:focus:not(:focus-visible) { outline: none; box-shadow: 1px 1px 5px rgba(1, 1,…
git 설치 터미널(CMD) 오픈 //경로로 이동 cd ~/.atom/packages/ //git 페이지에서 해당 패키지 주소 복사 후 터미널에 입력 git clone https://github.com/icetee/remote-ftp.git //해당 패키지 경로로 이동 후 npm install cd ./remote-ftp npm…
원문 : https://syudal.tistory.com/entry/Ubuntu-Nginx-Lets-Encrypt%EB%A1%9C-https-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0 1. CertBot 다운로드 Certbot의 Repo를 등록, 해당 패키지를 다운로드 $ sudo add-apt-repository ppa:certbot/certbot $ sudo apt-get install python3-certbot-nginx 2. SSL 인증서를 적용하여 https 적용하기 $ sudo certbot…
https://yh-kr.tistory.com/34 https://davi06000.tistory.com/61 https://aeong-dev.tistory.com/6
계정 추가 및 www 폴더 생성 sudo adduser blog cd /home/blog sudo mkdir ./www sudo chmod 755 ./www cd ./www 다운로드 wget -c http://wordpress.org/latest.tar.gz 압축 해제 tar -xzvf latest.tar.gz 권한…
원문 : https://velog.io/@pikamon/Linux-3 1. WSL 활성화 Windows PowerShell을 관리자 권한으로 실행 그리고 아래 2개의 명령어를 차례대로 입력 dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart 2. PC 재부팅 3. WSL2…
<% page_num = Request("page_num") scale = Request("scale") keyword = Request("keyword") p_act = Request("p_act") where = "WHERE 1=1 " If p_act <> "" Then where = where & "AND p_act =…