Skip to content

Instantly share code, notes, and snippets.

View iqbalmauludy's full-sized avatar

Iqbal Mauludy iqbalmauludy

View GitHub Profile
@iqbalmauludy
iqbalmauludy / function.php
Created June 6, 2017 19:17
Cara Mengganti WordPress Login Logo Secara Manual
function custom_login_logo() {
echo '<style type="text/css">
h1 a {background-image: url('.get_bloginfo('template_directory').'/images/logo-login.png) !important; }
</style>';
}
add_action('login_head', 'custom_login_logo');
//hook into the administrative header output
add_action('wp_before_admin_bar_render', 'custom_login_logo');
@iqbalmauludy
iqbalmauludy / button.html
Created January 5, 2017 16:18
Button Gradien
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Contoh Gradien Button</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<a class="btn" href="#">example</a>
@iqbalmauludy
iqbalmauludy / button.css
Created January 5, 2017 16:17
Button Gradien
.btn {
background: #8134d9;
background-image: -webkit-linear-gradient(top, #8134d9, #b82b4e);
background-image: -moz-linear-gradient(top, #8134d9, #b82b4e);
background-image: -ms-linear-gradient(top, #8134d9, #b82b4e);
background-image: -o-linear-gradient(top, #8134d9, #b82b4e);
background-image: linear-gradient(to bottom, #8134d9, #b82b4e);
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
@iqbalmauludy
iqbalmauludy / hellocode.html
Created January 2, 2017 09:17
Pengenalan HTML5 Untuk Sobat 'Hello Code!'
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5</title>
</head>
<body>
<p>Hello Code!</p>
</body>
</html>
{
// Lighter theme
"theme": "Material-Theme-Lighter.sublime-theme",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Lighter.tmTheme"
}
{
// Darker theme
"theme": "Material-Theme-Darker.sublime-theme",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme"
}
{
// Default theme
"theme": "Material-Theme.sublime-theme",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme"
}
{
// Boxy Monokai
"color_scheme": "Packages/Boxy Theme/schemes/Boxy Monokai.tmTheme",
"theme": "Boxy Monokai.sublime-theme",
}
{
// Boxy Ocean
"color_scheme": "Packages/Boxy Theme/schemes/Boxy Ocean.tmTheme",
"theme": "Boxy Ocean.sublime-theme",
}
{
// Boxy Tomorrow
"color_scheme": "Packages/Boxy Theme/schemes/Boxy Tomorrow.tmTheme",
"theme": "Boxy Tomorrow.sublime-theme",
}