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
#Script de backup para projetos configurados com o servidor Easy Engine via acesso SSH por terminal | |
#!/bin/bash | |
# Definindo o caminho para o diretório htdocs | |
HTDOCS_DIR="/var/www/htdocs" | |
BACKUP_DIR="/var/www" | |
# Definindo a data e hora do backup | |
WP_BKP_DATE="$(date +"%Y-%m-%d_%H-%M")" |
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
/*Elementor Overflow Fix*/ | |
body { | |
overflow-x: clip; | |
} | |
/* Page structure main selector in Elementor*/ | |
[data-elementor-type="wp-page"] { | |
overflow-x: clip; | |
} |
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
/*Elementor Overflow Fix*/ | |
.elementor-template-canvas { | |
overflow-x: hidden; | |
} | |
.elementor { | |
overflow: hidden; | |
} | |
/*Toggle navbar*/ |
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
/*Formulário CF7*/ | |
.ui-form { | |
display: flex; | |
gap: 16px; | |
max-height: 36px; | |
} | |
.ui-form ::placeholder { | |
color: var(--e-global-color-text); |