1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
.links
{
float: right;
}
.docLink
{
background: url(../../images/$.geo-logo-small.png) right no-repeat;
color: #7f0000;
display: block;
font-size: 24px;
font-weight: bold;
padding-right: 24px;
text-decoration: none;
text-transform: uppercase;
}
.fiddleLink
{
display: block;
font-weight: bold;
margin: 4px;
text-align: right;
text-decoration: none;
}
.fiddleLink img
{
border: none;
vertical-align: middle;
}
.mobile-shrink
{
font-size: .6em;
}
.not-mobile
{
display: none;
}
@media only screen and (min-width: 800px)
{
.info
{
width: 45% !important;
position: fixed;
right: 16px;
top: 16px;
}
.mobile-shrink
{
font-size: 1em;
}
.not-mobile
{
display: block;
}
}
html
{
font:13px/1.231 Calibri,Arial,sans-serif; *font-size:small;
}
.info
{
background: #fff;
border-radius: 8px;
box-shadow: -4px 4px #444;
opacity: .8;
padding: 8px;
width: 90%;
}
fieldset { border: none; }
legend {
font-size: 14px;
font-weight: bold;
}
|