Contacts
ruSPro
Favorite styles: Club House, Deep House, Electro House, House, Progressive House, Techno
Location: Vietnam, Hanoi
PR
3
Blog

Bé yêu ơi!

CÔ K Ú N LÚC HAI TUỔI @)@ 
___^^^^^2011 - Mirror MEMORY


[CÚN«۩۞۩»CON]
» ٩(͡๏̯͡๏)۶ « K Ú N» ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « CON » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶  ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « T Ú N » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ «CON» ٩(͡๏̯͡๏)۶ « CON » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ «K» ٩(͡๏̯͡๏)۶ « ÚN » ٩(͡๏̯͡๏)۶ «
0 ▲
27 January 2016 23:38
no comments

Japan Animators Exhibition



GIRL - Japan Animators Exhibition

Host 1
Host 2
YouTube
Vimeo
OtherServer
OtherServer




Descripcion:

"GIRL" Animacion lanzada en el evento Japan Animators Exhibition,
donde varios grupos de animadores profecionales realizan estos cortos animados.

Codigo desarollado por:

©AnimeCity 2014-2016.



F

acebook


T

witter


G

oogle+


D

eviantart




[DEEJAY«۩۞۩»RUSPRO]
» ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶  ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ «» ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ «» ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ «
0 ▲
22 December 2015 2:12
no comments

CSS3 Rounded Corners Properties


THE WORLD'S LARGEST WEB DEVELOPER SITE

googletag.cmd.push(function() { googletag.display('div-gpt-ad-1422003450156-2'); });

CSS3 Rounded Corners



CSS3 Rounded Corners

With the CSS3 border-radius property, you can give any element "rounded corners".


Browser Support

The numbers in the table specify the first browser version that fully supports the property.
Numbers followed by -webkit- or -moz- specify the first version that worked with a prefix.
Property
border-radius 5.0
4.0 -webkit-
12.0 9.0 4.0
3.0 -moz-
5.0
3.1 -webkit-
10.5


CSS3 border-radius Property

With CSS3, you can give any element "rounded corners", by using the
border-radius property.
Here are three examples:
1. Rounded corners for an element with a specified background color:
Rounded corners!
2. Rounded corners for an element with a border:
Rounded corners!
3. Rounded corners for an element with a background image:
Rounded corners!
Here is the code:

Example

#rcorners1 {
    border-radius: 25px;
   
background: #73AD21;
    padding: 20px;
   
width: 200px;
    height: 150px;
}

#rcorners2 {
   
border-radius: 25px;
    border: 2px solid #73AD21;
   
padding: 20px;
    width: 200px;
   
height: 150px;
}

#rcorners3 {
   
border-radius: 25px;
    background: url(paper.gif);
   
background-position: left top;
    background-repeat:
repeat;
    padding: 20px;
    width:
200px;
    height: 150px;
}
Try it yourself »
NoteTip: The border-radius property is actually a shorthand property for the
border-top-left-radius, border-top-right-radius, border-bottom-right-radius
and border-bottom-left-radius properties.


CSS3 border-radius - Specify Each Corner

If you specify only one value for the border-radius property, this radius
will be applied to all 4 corners.
However, you can specify each corner separately if you wish. Here are the rules:
  • Four values: first value applies to top-left, second value applies to top-right,
    third value applies to bottom-right, and fourth value applies to bottom-left
    corner
  • Three values: first value applies to top-left, second value applies to top-right and bottom-left,
    and third value applies to bottom-right
  • Two values: first value applies to top-left and bottom-right
    corner, and the second value applies to top-right and bottom-left corner
  • One value: all four corners are rounded equally
Here are three examples:
1. Four values - border-radius: 15px 50px 30px 5px:

2. Three values - border-radius: 15px 50px 30px:

3. Two values - border-radius: 15px 50px:

Here is the code:

Example

#rcorners4 {
    border-radius: 15px 50px 30px 5px;
   
background: #73AD21;
    padding: 20px;
   
width: 200px;
    height: 150px;
}

#rcorners5 {
   
border-radius: 15px 50px 30px;
    background: #73AD21;
   
padding: 20px;
    width: 200px;
   
height: 150px;
}

#rcorners6 {
   
border-radius: 15px 50px;
    background: #73AD21;
   
padding: 20px;
    width: 200px;
   
height: 150px;
}
Try it yourself »

You could also create elliptical corners:

Example

#rcorners7 {
    border-radius: 50px/15px;
   
background: #73AD21;
    padding: 20px;
   
width: 200px;
    height: 150px;
}

#rcorners8 {
   
border-radius: 15px/50px;
    background: #73AD21;
   
padding: 20px;
    width: 200px;
   
height: 150px;
}

#rcorners9 {
   
border-radius: 50%;
    background: #73AD21;
   
padding: 20px;
    width: 200px;
   
height: 150px;
}
Try it yourself »



Test Yourself with Exercises!

Exercise 1 »
Exercise 2 »




CSS3 Rounded Corners Properties

Property Description
border-radius A shorthand property for setting all the four border-*-*-radius properties

border-top-left-radius
Defines the shape of the border of the top-left corner

border-top-right-radius
Defines the shape of the border of the top-right corner

border-bottom-right-radius
Defines the shape of the border of the bottom-right corner

border-bottom-left-radius
Defines the shape of the border of the bottom-left corner




googletag.cmd.push(function() { googletag.display('div-gpt-ad-1422003450156-5'); });


COLOR PICKER


colorpicker

SHARE THIS PAGE







» ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶  ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ «» ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ «» ٩(͡๏̯͡๏)۶ « » ٩(͡๏̯͡๏)۶ «
0 ▲
22 December 2015 1:18
no comments

Marquee Behavio Alternate


DEEJAY[(.:«۩۞۩»:.)]SHADOW

DEEJAY[(.:«۩۞۩»:.)]SHADOW

DEEJAY[(.:«۩۞۩»:.)]SHADOW

DEEJAY[(.:«۩۞۩»:.)]SHADOW

DEEJAY[(.:«۩۞۩»:.)]SHADOW

DEEJAY[(.:«۩۞۩»:.)]SHADOW

DEEJAY[(.:«۩۞۩»:.)]SHADOW

DEEJAY[(.:«۩۞۩»:.)]SHADOW

DEEJAY.:[«۩۞۩»]:.RUSPRO


DEEJAY.:[«۩۞۩»]:.RUSPRO

DEEJAY.:[«۩۞۩»]:.RUSPRO

DEEJAY.:[«۩۞۩»]:.RUSPRO

DEEJAY.:[«۩۞۩»]:.RUSPRO

DEEJAY.:[«۩۞۩»]:.RUSPRO

DEEJAY.:[«۩۞۩»]:.RUSPRO

DEEJAY.:[«۩۞۩»]:.RUSPRO

DEEJAY.:[«۩۞۩»]:.RUSPRO

DEEJAY[(.:«۩۞۩»:.)]SHADOW


[DEEJAY«۩۞۩»RUSPRO]
» DEEJAY[(.:«۩۞۩»:.)]SHADOW « » DEEJAY.:[«۩۞۩»]:.RUSPRO «
0 ▲
12 June 2015 13:08
no comments

This is NOT a dating site!



(function ($) { $.fn.showHide = function (options) { //default vars for the plugin var defaults = { speed: 1000, easing: '', changeText: 1, showText: 'Show', hideText: 'Hide' }; var options = $.extend(defaults, options); $(this).click(function () { $('.toggleDiv').fadeOut(options.speed, options.easing); // this var stores which button you've clicked var toggleClick = $(this); // this reads the rel attribute of the button to determine which div id to toggle var toggleDiv = $(this).attr('rel'); // here we toggle show/hide the correct div at the right speed and using which easing effect $(toggleDiv).fadeIn(options.speed, options.easing, function() { // this only fires once the animation is completed if(options.changeText==1){ $(toggleDiv).is(":visible") ? toggleClick.text(options.hideText) : toggleClick.text(options.showText); } }); return false; }); }; })(jQuery);
$(document).ready(function(){ $('.show_hide').showHide({ speed: 400, easing: '', changeText: 1, showText: 'View', hideText: '' }); });
This is NOT a BIG dick size!
intro image
WARNING! You will see nude photos. Please be discreet.
OK
IMPORTANT!
Before we can show you a list and photos of women who live near you and are ready to have sex right now, we need to ask a few quick questions.
Question 1 2 3 4
Many of these women are desperate single moms and cheating wives looking for some fun. They could be your neighbors or someone you know. Do you agree to keep the identity of these women a secret?
Question 1 2 3 4
These women have asked us to not allow men that are seeking a "relationship". They only desire quick sex. Not dating. Do you agree to this request?
Question 1 2 3 4
Do you agree to use a condom when having sex with a partner you meet on our site?


Question 1 2 3 4
Are you at least 24 years old? The women have requested that we not let those younger than 24 contact them because of past rude behavior by younger men.
What type of body turns you on?
(Please choose up to 3 answers)

Skinny


Regular


BBW


Big tits are a must



Sexy ass is a must


What age of women fits you best?
(Please choose up to 3 answers)
18 - 25
25 - 32
32 - 37
37 - 45
45 and above
What type of relationship are you looking for?
(Please choose up to 3 answers)
One night stand
Sex on multiple occasions
Regular sex
Dating
Marriage
Distance between you and her?
(Please choose up to 3 answers)
1-5 miles away from my current location
Same city
Nearby cities are OK
Same country
Doesn't matter
Thank You.
You may now see our list and photos of women who are in your area. Again, please keep their identity a secret.
Click on the "Continue" button and search with your zip code.
[DEEJAY«۩۞۩»RUSPRO]
« WARNING! » »WARNING!« « WARNING! » »WARNING!« « WARNING! » »WARNING!«
0 ▲
11 June 2015 8:09
no comments
Feedback
Please, sign up (it's quick!) or sign in, to post feedbacks and do more fun stuff.