Send this to a friend
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
Send this to a friend
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 }
a {
transition: all .2s linear;
-o-transition: all .2s linear;
-moz-transition: all .2s linear;
-webkit-transition: all .2s linear;
}
Send this to a friend
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 }
a {
color: #fff;
-webkit-transition: color .5s ease-in;
-moz-transition: color .5s ease-in;
-o-transition: color .5s ease-in;
transition: color .5s ease-in;
}
a:hover {
color: #ccc;
}
Send this to a friend
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 }
@-webkit-keyframes fade-in {
0% { opacity: 0; }
50% { opacity: 0; }
100% { opacity: 1; }
}
body {
-webkit-animation-name: fade-in;
-webkit-animation-duration: 1.5s;
}
Send this to a friend
1 .test {
2 color: #000000;
3 color: #FFF000\9;
4 *color: #FFFF00;
5 color: #0000FF\0;
6 color: #00FFFF!important;
7 _color: #FF0000;
8 [color: #000000;
9 }
.test {
color: #000000;
color: #FFF000\9;
*color: #FFFF00;
color: #0000FF\0;
color: #00FFFF!important;
_color: #FF0000;
[color: #000000;
}
Send this to a friend
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 }
body {
scrollbar-face-color: #hex;
scrollbar-shadow-color: #hex;
scrollbar-highlight-color: #hex;
scrollbar-3dlight-color: #hex;
scrollbar-darkshadow-color: #hex;
scrollbar-track-color: #hex;
scrollbar-arrow-color: #hex;
}
Send this to a friend
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 }
textarea {
padding: 5px;
font-size: 15px;
text-shadow: 0px 1px 0px #fff;
outline: none;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #ccc;
-webkit-transition: .3s ease-in-out;
-moz-transition: .3s ease-in-out;
}
textarea:focus {
border: 1px solid #fafafa;
-webkit-box-shadow: 0px 0px 6px #007eff;
-moz-box-shadow: 0px 0px 5px #007eff;
box-shadow: 0px 0px 5px #007eff;
}
Send this to a friend
http://www.zurb.com/playground/google-buttons
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 }
button.g-button, a.g-button, input[type=submit].g-button {
padding: 6px 10px;
-webkit-border-radius: 2px 2px;
border: solid 1px rgb(153, 153, 153);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(255, 255, 255)), to(rgb(221, 221, 221)));
color: #333;
text-decoration: none;
cursor: pointer;
display: inline-block;
text-align: center;
text-shadow: 0px 1px 1px rgba(255,255,255,1);
line-height: 1;
}
Send this to a friend
1 * {
2 -webkit-user-select: none;
3 }
* {
-webkit-user-select: none;
}
Send this to a friend
1 * html #selector {property:value;}
2 *+html #selector {property:value;}
* html #selector {property:value;}
*+html #selector {property:value;}