0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-06-16 14:21:21 +02:00
doodle3d-connect/css/main.css
peteruithoven 4a8af79661 Added hint
2013-10-18 11:58:26 +02:00

50 lines
812 B
CSS

a {
color: #5491D2;
text-decoration: none;
}
#preloader {
position: absolute;
top: 50%;
left: 50%;
width: 50px;
height: 50px;
margin: -25px 0 0 -25px;
}
#list {
padding: 0;
}
#list li {
list-style-type: none;
float: left;
}
#list a {
margin: 0 15px 15px 0;
padding: 25px 0 0 0;
display: block;
width: 200px;
height: 175px;
border: 2px solid #333;
border-radius: 25px;
-moz-box-shadow: 0px 2px 7px 0px rgba(16, 16, 16, 0.60);
-webkit-box-shadow: 0px 2px 7px 0px rgba(16, 16, 16, 0.60);
box-shadow: 0px 2px 7px 0px rgba(16, 16, 16, 0.60);
text-align: center;
vertical-align: middle;
cursor: pointer;
transition:background-color 0.1s, color 0.1s;
}
#list a:hover {
background-color: #5491D2;
color: #fff;
}
#hint {
display:none;
position: absolute;
bottom: 1em;
}