Skip to content

Instantly share code, notes, and snippets.

View mongoltolbo's full-sized avatar

Lkhamsuren Amarjargal mongoltolbo

View GitHub Profile
@mongoltolbo
mongoltolbo / CSS3 Glowing Inputs
Created June 6, 2013 04:28
CSS3 Glowing Inputs
input[type=text], textarea {
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
padding: 3px 0px 3px 3px;
margin: 5px 1px 3px 0px;
border: 1px solid #ddd;
}
@mongoltolbo
mongoltolbo / CSS Fixed Footer
Created June 6, 2013 04:27
CSS Fixed Footer
@mongoltolbo
mongoltolbo / Drop-Cap Paragraphs
Created June 6, 2013 04:25
Drop-Cap Paragraphs
p:first-letter{
display: block;
margin: 5px 0 0 5px;
float: left;
color: #ff3366;
font-size: 5.4em;
font-family: Georgia, Times New Roman, serif;
}
@mongoltolbo
mongoltolbo / Stitched CSS3 Elements
Created June 6, 2013 04:24
Stitched CSS3 Elements
p {
position:relative;
z-index:1;
padding: 10px;
margin: 10px;
font-size: 21px;
line-height: 1.3em;
color: #fff;
background: #ff0030;
-webkit-box-shadow: 0 0 0 4px #ff0030, 2px 1px 4px 4px rgba(10,10,0,.5);
@mongoltolbo
mongoltolbo / Vertically Centered Content
Created June 6, 2013 04:24
Vertically Centered Content
.container {
min-height: 6.5em;
display: table-cell;
vertical-align: middle;
}
@mongoltolbo
mongoltolbo / Fullscreen Backgrounds With CSS3
Created June 6, 2013 04:22
Fullscreen Backgrounds With CSS3
html {
background: url('images/bg.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
@mongoltolbo
mongoltolbo / Fancy CSS3 Pull-Quotes
Created June 6, 2013 04:22
Fancy CSS3 Pull-Quotes
.has-pullquote:before {
/* Reset metrics. */
padding: 0;
border: none;
/* Content */
content: attr(data-pullquote);
/* Pull out to the right, modular scale based margins. */
float: rightright;
@mongoltolbo
mongoltolbo / Anchor Link Pseudo Classes
Created June 6, 2013 04:21
Anchor Link Pseudo Classes
@mongoltolbo
mongoltolbo / logo
Created June 6, 2013 04:20
Hiding H1 Text For Logo
@mongoltolbo
mongoltolbo / Modern Font Stacks
Created June 6, 2013 04:19
Modern Font Stacks
/* Times New Roman-based serif */
font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
/* A modern Georgia-based serif */
font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif," "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
/*A more traditional Garamond-based serif */
font-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
/*The Helvetica/Arial-based sans serif */