PairDrop/app/styles/main.css

43 lines
665 B
CSS
Raw Normal View History

html,
body {
height: 100%;
width: 100%;
2016-01-01 18:06:27 +01:00
padding: 0;
margin: 0;
}
2015-12-18 16:50:36 +01:00
body {
background: #fafafa;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #333;
-webkit-font-smoothing: antialiased;
2016-01-01 18:06:27 +01:00
overflow-x: hidden;
2015-12-18 16:50:36 +01:00
}
2016-05-05 07:13:07 +02:00
#ads,
#ads2 {
display: none;
}
@media screen and (min-width: 520px) {
#ads {
display: block;
position: absolute;
top: 8px;
left: 50%;
margin-left: -150px;
}
}
@media screen and (min-width: 720px) {
#ads{
display: none;
}
#ads2 {
display: block;
position: absolute;
bottom: 4px;
left: 4px;
}
}