0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-06-26 01:21:22 +02:00
doodle3d-connect/css/main.css

50 lines
812 B
CSS
Raw Normal View History

2013-10-03 16:59:40 +02:00
a {
color: #5491D2;
text-decoration: none;
}
2013-10-02 17:24:40 +02:00
#preloader {
position: absolute;
2013-10-03 16:59:40 +02:00
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;
2013-10-18 11:58:26 +02:00
}
#hint {
display:none;
position: absolute;
bottom: 1em;
2013-10-02 17:24:40 +02:00
}