Skip to content

Instantly share code, notes, and snippets.

View adimancv's full-sized avatar
🏠
Working from home

Adiman Cipangwaren adimancv

🏠
Working from home
View GitHub Profile
@adimancv
adimancv / boder-css-lengkap.html
Created March 24, 2018 04:05
border css lengkap cssx.xyz
<!DOCTYPE html>
<html>
<head>
<style>
p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
@adimancv
adimancv / hosts.txt
Last active March 22, 2018 07:57
Cara blokir situs facebook dan situs tertentu
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
@adimancv
adimancv / border-width.html
Created March 21, 2018 08:03
Border Width cssx xyz
<!DOCTYPE html>
<html>
<head>
<style>
p.satu {
border-style: solid;
border-width: 5px;
}
p.dua {
border-style: solid;
@adimancv
adimancv / border-bulat.html
Created March 16, 2018 04:13
Border bulat / rounded
<!DOCTYPE html>
<html>
<head>
<style>
p {font-family:verdana;}
p.normal {
border: 2px solid red;
}
@adimancv
adimancv / border-style-cssx.html
Last active March 15, 2018 10:48
Border Style cssx
<!DOCTYPE html>
<html>
<head>
<style>
p {font-family:verdana;}
p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
@adimancv
adimancv / sitemap-cssx-xyz.js
Created March 15, 2018 09:53
Sitemap cssx.xyz
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('2 3=F H();2 u=F H();2 w=F H();2 q=F H();2 6=F H();2 y=F H();2 7="L";2 17=1s;2 27=2P;2 E="";2 1a=0;r 1Q(a){r b(){4("A"1H a.1i){2 d=a.1i.A.v;1a=d;D=0;B(2 h=0;h<d;h++){2 n=a.1i.A[h];2 e=n.O.$t;2 m=n.23.$t.1x(0,10);2 j;B(2 g=0;g<n.M.v;g++){4(n.M[g].18=="2c"){j=n.M[g].s;U}}2 o="";B(2 g=0;g<n.M.v;g++){4(n.M[g].18=="1Z"){o=n.M[g].s;U}}2 c="";4("16"1H n){B(2 g=0;g<n.16.v;g++){c=n.16[g].28;2 f=c.1v(";");4(f!=-1){c=c.1x(0,f)}6[D]=c;3[D]=e;q[D]=m;u[D]=j;w[D]=o;4(h<10){y[D]=13}I{y[D]=1s}D=D+1}}}}}b();7="L";P(7);19();17=13;1r();9.x()}r 1O(a){1F(0,0);E=a;K(E)}r 1n(){19();E="";K(E)}r P(d){r c(e,g){2 f=3[e];3[e]=3[g];3[g]=f;2 f=q[e];q[e]=q[g];q[g]=f;2 f=u[e];u[e]=u[g];u[g]=f;2 f=6[e];6[e]=6[g];6[g]=f;2 f=
@adimancv
adimancv / css-inline.html
Created March 15, 2018 07:30
Contoh css inline
<!DOCTYPE html>
<html>
<body>
<h1 style="color:blue">Ini teks h1 dengan warna Biru</h1>
@adimancv
adimancv / background-color.html
Created March 12, 2018 02:50
Background Color
<!DOCTYPE html>
<html>
<style>div {height:50px;padding:16px;width:100%;}</style>
<body>
<h1>Colors can be set using color names</h1><div style="background-color:red"><h1 style="color:white">Heading</h1></div><div style="background-color:yellow"><h1 style="color:blue">Heading</h1></div><div style="background-color:blue"><h1 style="color:yellow">Heading</h1></div>
</body>
</html>
@adimancv
adimancv / css-adiman-accordion-for-blogger.css
Created March 8, 2018 04:09
Accordion For Blogger By Adiman
.accordionadiman {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
@adimancv
adimancv / css-accordion-blog.css
Created March 7, 2018 09:58
css accordion blog
.raise {
position: relative;
top: -2em;
}
.uk-container {
max-width: 960px;
margin: auto;
padding: 3em;
}