you are in: codestackercodes [RSS] → tag: css [RSS]

Exciting startup seeking skilled coding talent for a new mobile app Delicious Email

We are a new startup that’s focused on building innovative mobile apps that turn watching live sports into an interactive experience. We are working on our first product which will be a social game played in realtime during live football broadcasts.

We are looking for motivated technical people to come on board to develop an initial Facebook App prototype, with a view to becoming a key member of the team for later stages of the product development. You will have some experience of building web applications, with skills either in front-end or back-end, including processing XML data feeds and server-side.

This is a fantastic opportunity to develop your skills and expertise, working for a highly motivated startup where you will play an important role in the development of the product.

Depending on experience – Paid hourly rates available to the successful candidate

Contact: Sohail Godall

hello@rtsports.co.uk

Check us out at www.rtsports.co.uk

show/hide lines
   1  www.rtsports.co.uk
created by Realtime_Sports — 10 October 2011 — get a short url — tags: Android OS Apple OS Facebook gaming interactive mobile realtime embed

transition to link highlighting Delicious Email

show/hide lines
   1  a {
   2          transition: all .2s linear; 
   3          -o-transition: all .2s linear;
   4          -moz-transition: all .2s linear;
   5          -webkit-transition: all .2s linear;
   6  }
created by leozera — 11 July 2011 — get a short url — tags: css3 embed

[css3] link animation Delicious Email

show/hide lines
   1  a {     
   2  	color: #fff;
   3  	-webkit-transition: color .5s ease-in;  
   4  	-moz-transition: color .5s ease-in;  
   5  	-o-transition: color .5s ease-in;  
   6  	transition: color .5s ease-in;  
   7  }
   8  
   9  a:hover {
  10  	color: #ccc;     
  11  }
created by leozera — 05 February 2011 — get a short url — tags: css3 embed

[css3] fade in page Delicious Email

show/hide lines
   1  @-webkit-keyframes fade-in {
   2  	0%   { opacity: 0; }
   3  	50%   { opacity: 0; }
   4  	100% { opacity: 1; }
   5  }
   6  
   7  body {
   8  	-webkit-animation-name: fade-in;
   9  	-webkit-animation-duration: 1.5s;
  10  }
created by leozera — 05 February 2011 — get a short url — tags: css3 embed

css hacks for everyone Delicious Email

show/hide lines
   1  .test {
   2       color: #000000; /* All Browsers */
   3       color: #FFF000\9; /* All IEs */
   4       *color: #FFFF00; /* IE6 and IE7 */
   5       color: #0000FF\0; /* Only IE8 */
   6       color: #00FFFF!important; /* Only IE7 */
   7       _color: #FF0000; /* Only IE6 */
   8       [color: #000000; /* Safari, Chrome */
   9  }
created by leozera — 27 January 2011 — get a short url — tags: browser css embed

color scrollbars for ie 5.5 Delicious Email

show/hide lines
   1  body {
   2  scrollbar-face-color: #hex; 
   3  scrollbar-shadow-color: #hex; 
   4  scrollbar-highlight-color: #hex; 
   5  scrollbar-3dlight-color: #hex; 
   6  scrollbar-darkshadow-color: #hex; 
   7  scrollbar-track-color: #hex; 
   8  scrollbar-arrow-color: #hex;
   9  }
created by leozera — 23 January 2011 — get a short url — tags: css ie scroll embed

twitter-like input using css 3 Delicious Email

show/hide lines
   1  textarea {  
   2  	padding: 5px;  
   3  	font-size: 15px;  
   4  	text-shadow: 0px 1px 0px #fff;  
   5  	outline: none;  
   6  	-webkit-border-radius: 3px;  
   7  	-moz-border-radius: 3px;  
   8  	border-radius: 3px;  
   9  	border: 1px solid #ccc;  
  10  	-webkit-transition: .3s ease-in-out;  
  11  	-moz-transition: .3s ease-in-out;  
  12  }  
  13  
  14  textarea:focus {  
  15  	border: 1px solid #fafafa;  
  16  	-webkit-box-shadow: 0px 0px 6px #007eff;  
  17  	-moz-box-shadow: 0px 0px 5px #007eff;  
  18  	box-shadow: 0px 0px 5px #007eff;  
  19  }
created by leozera — 21 January 2011 — get a short url — tags: css css3 twitter embed

google-like css 3 button Delicious Email

http://www.zurb.com/playground/google-buttons

show/hide lines
   1  button.g-button, a.g-button, input[type=submit].g-button {
   2  padding: 6px 10px;
   3  -webkit-border-radius: 2px 2px;
   4  border: solid 1px rgb(153, 153, 153);
   5  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(255, 255, 255)), to(rgb(221, 221, 221)));
   6  color: #333;
   7  text-decoration: none;
   8  cursor: pointer;
   9  display: inline-block;
  10  text-align: center;
  11  text-shadow: 0px 1px 1px rgba(255,255,255,1);
  12  line-height: 1;
  13  }
created by leozera — 02 January 2011 — get a short url — tags: css3 google embed

iphone: prevent copy paste Delicious Email

show/hide lines
   1  * {
   2     -webkit-user-select: none;  /* prevent copy paste for all elements */
   3  } 
created by leozera — 14 November 2010 — get a short url — tags: css iPhone embed

ie 6 and 7 selectors hack Delicious Email

show/hide lines
   1  * html #selector {property:value;} /* Only IE6 and lower will see this */
   2  *+html #selector {property:value;} /* Only IE7 will see this */
created by leozera — 22 August 2009 — get a short url — tags: browser hack ie ie6 ie7 embed
Displaying records 1 - 10 of 25