metamaps--metamaps/app/assets/stylesheets/application.css

1197 lines
22 KiB
CSS
Raw Normal View History

2012-09-23 02:39:12 +00:00
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the top of the
* compiled file, but it's generally better to create a new file per style scope.
*
*= require_self
*= require_tree ../../../vendor/assets/stylesheets
2012-09-23 02:39:12 +00:00
*= require_tree .
*= require base
*= require ForceDirected
*= require jquery.mCustomScrollbar
2012-12-14 07:16:17 +00:00
*= require jquery-ui
2012-09-23 02:39:12 +00:00
*/
@font-face {
font-family: 'LatoLight';
src: url('/assets/Fonts/Lato-Lig-webfont.eot');
src: url('/assets/Fonts/Lato-Lig-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/Fonts/Lato-Lig-webfont.woff') format('woff'),
url('/assets/Fonts/Lato-Lig-webfont.ttf') format('truetype'),
url('/assets/Fonts/Lato-Lig-webfont.svg#LatoLight') format('svg');
font-weight: normal;
font-style: normal;
}
2012-09-23 02:39:12 +00:00
/* clear styles */
2012-12-21 01:19:55 +00:00
html, body, div, h1, h2, h3, h4, h5, h6,
ul, ol, dl, li, dt, dd, p, blockquote,
pre, form, fieldset, table, th, td, legend {
margin: 0;
padding: 0;
}
img {
border:0;
padding:0;
margin:0;
display:block;
text-indent:-9999px;
}
2012-09-23 02:39:12 +00:00
2012-12-21 01:19:55 +00:00
html,
body,
.main,
.wrapper,
#container {
height: 100%;
2013-01-06 23:40:48 +00:00
overflow:hidden;
2012-12-21 01:19:55 +00:00
}
2012-12-21 01:19:55 +00:00
html {
}
2012-09-23 02:39:12 +00:00
2012-12-21 01:19:55 +00:00
body {
background:#031924 url(background2-for-repeating.jpg) repeat 0 0;
font-family: 'LatoLight', helvetica, sans-serif;
2012-12-21 01:19:55 +00:00
background-attachment:fixed;
color:#FFF;
}
2012-09-23 02:39:12 +00:00
2012-12-21 01:19:55 +00:00
h1,h2,h3,h4,h5,h6 {
font-weight:normal;
}
2012-09-23 02:39:12 +00:00
2012-12-21 01:19:55 +00:00
h1 {
display:block;
text-align:left;
font-family: "vinyl",sans-serif;
}
2012-12-21 01:19:55 +00:00
h2 {
display:block;
text-align:center;
font-family: "katarine-web",sans-serif;
background: url('black_bg.png');
2012-12-21 01:19:55 +00:00
font-size:24px;
line-height:35px;
2012-12-21 01:19:55 +00:00
}
2012-12-21 01:19:55 +00:00
a {
color:#2d6a5d;
text-decoration:none;
}
button.button, a.button, input[type="submit"] {
border: none;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
box-shadow: 0 1px 2px rgba(0,0,0,.2);
border: none;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
height: 30px;
outline: none;
padding: 0 0;
width: 60px;
-webkit-box-shadow: none;
box-shadow: none;
background: #69a3a4;
background: -webkit-linear-gradient(top,#69a3a4,#69a3aF);
background: linear-gradient(top,#4387fd,#4683ea);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=1);
vertical-align: top;
color: #fff!important;
margin: 0px;
cursor: default!important;
display: inline-block;
font-weight: bold;
line-height: 29px;
min-width: 54px;
text-align: center;
text-decoration: none!important;
-webkit-border-radius: 2px;
border-radius: 2px;
-webkit-user-select: none;
}
button.button:hover, a.button:hover, input[type="submit"]:hover {
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);
box-shadow: 0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);
}
/*
* Utility
*/
2012-12-21 01:19:55 +00:00
.clearfloat {
clear:both;
}
2013-01-08 04:40:58 +00:00
.leaveSpace {
display:block;
height:50px;
}
.hidden {
display: none;
}
/*
* Layout stuffs
*/
#barometer_tab {
display:none;
}
#saveMapLayout {
display:none;
}
#error_explanation {
background: #612127;
padding: 30px;
color: #FFF;
}
#error_explanation h2 {
display:none;
}
#error_explanation ul {
list-style:none;
}
.profile {
height:100%;
margin-bottom:50px;
}
.centeredProfile {
margin:0 auto;
display: block;
width: 845px;
}
.requestInvite {
display:block;
margin:-720px auto 0;
}
2012-12-21 01:19:55 +00:00
.new_session,
.new_user,
.new_map,
.edit_topic,
2012-12-21 01:19:55 +00:00
.edit_synapse,
.edit_map,
.invite {
display: block;
width: 350px;
position:absolute;
left:50%;
top:0;
margin:200px 0 0 -195px;
background: url('bg.png');
padding: 20px;
2013-07-10 18:02:38 +00:00
border-radius: 5px;
2012-12-21 01:19:55 +00:00
color: #000;
2013-07-10 18:02:38 +00:00
border:1px solid #000;
box-shadow: 6px 6px 8px rgba(0,0,0,0.4);
2012-12-21 01:19:55 +00:00
}
.edit_user{
display: block;
width: 800px;
position:absolute;
left:50%;
top:0;
margin:50px 0 0 -420px;
background: url('bg.png');
padding: 20px;
border-radius: 15px;
color: #000;
border:2px solid #000;
}
.onConsole .new_map {
display:none;
}
.onConsole .new_map button, .onConsole .new_map input.add {
float:left;
margin-top:5px;
}
2012-12-21 01:19:55 +00:00
.invite p {
margin:10px 0;
}
.invite strong {
text-align:center;
display:block;
color:#67AF9F;
}
#closenewtopic,
#closenewsynapse {
position:absolute;
top: 3px;
right:3px;
}
.anypage .new_topic {
width:300px;
margin:-40px 0 0 -50px;
}
.anypage .new_topic,
2012-12-21 01:19:55 +00:00
.anypage .new_synapse {
display: block;
position: absolute;
}
#new_topic .twitter-typeahead {
position:absolute !important;
top:40px;
left:50px;
z-index:9999;
width:202px;
height: 37px;
font-family: 'katarine-web';
}
.anypage #topic_name, .anypage .tt-hint {
width:190px;
background: rgba(0,0,0,0.8);
height: 25px;
margin: 0;
padding: 5px 5px;
border: 1px solid black;
outline: none;
font-size: 25px;
line-height: 35px;
color: rgba(255,255,255,0.7);
font-family: 'katarine-web';
}
#metacodeImg {
height:120px;
}
#metacodeImgTitle {
color:#000;
float:left;
width:120px;
text-align:center;
margin-left:90px;
}
2012-12-21 01:19:55 +00:00
label, select, input, textarea {
display:block;
}
label {
margin-top:10px;
margin-bottom:4px;
2012-12-21 01:19:55 +00:00
}
input[type="submit"] {
margin-top:5px;
}
2012-09-24 01:30:48 +00:00
#user_remember_me {
margin-top:11px;
}
#user_remember_me, label[for="user_remember_me"] {
float:left;
}
2012-12-21 01:19:55 +00:00
.contentarea p,
.contentarea ul,
.contentarea ol,
.contentarea table {
font-size:14px;
line-height:1.55em;
padding:0.5em 0
}
.contentarea ul li {
padding:0.2em 0;
}
2012-09-24 01:30:48 +00:00
2012-12-21 01:19:55 +00:00
.contentarea ol li {
padding:0.2em 0;
}
2012-09-24 01:30:48 +00:00
2012-12-21 01:19:55 +00:00
.contentarea ul {
margin:0 0 0 1em;
}
.contentarea ol {
margin:0 0 0 1.3em;
}
2012-09-23 02:39:12 +00:00
2012-12-21 01:19:55 +00:00
.main {
/*overflow:hidden; */
2012-12-21 01:19:55 +00:00
}
2012-09-23 02:39:12 +00:00
2013-03-29 06:38:13 +00:00
#infovis-canvas {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* --- top options --*/
2013-07-10 18:02:38 +00:00
.notice.metamaps, .alert.metamaps {
position: absolute;
margin: 20px;
background: url(/assets/black_bg.png);
padding: 10px;
border-radius: 5px;
box-shadow: 6px 6px 8px rgba(0,0,0,0.4);
border:1px solid #000;
}
2012-12-21 01:19:55 +00:00
.headertop {
display:block;
position:fixed;
2013-07-10 18:02:38 +00:00
top:20px;
2012-12-21 01:19:55 +00:00
z-index:10;
2013-07-10 18:02:38 +00:00
border-radius:5px;
margin: 10px 0px 10px 10px;
2013-07-10 18:02:38 +00:00
background:#111614;
padding:5px 10px;
box-shadow: 6px 6px 8px rgba(0,0,0,0.4);
2012-12-21 01:19:55 +00:00
}
2013-07-10 18:02:38 +00:00
.headertop .tab {
background: url(tab.png) no-repeat 0 0;
position:absolute;
top:-11px;
right:-2px;
display:block;
width:45px;
height:15px;
cursor:move;
}
2013-01-08 04:40:58 +00:00
.headertop button, .headertop input {
height: 30px;
2013-07-10 18:02:38 +00:00
background: none;
color: #717474;
font-family: 'LatoLight';
font-size: 17px;
border: none;
border-right:1px solid #717474;
2013-01-08 04:40:58 +00:00
cursor: pointer;
margin:3px 0;
clear:both;
2013-07-10 18:02:38 +00:00
float:right;
2013-01-08 04:40:58 +00:00
}
.headertop button:hover, .headertop input:hover {
2013-07-10 18:02:38 +00:00
border-right: 1px solid #6d7310;
color: #6d7310;
2012-12-21 01:19:55 +00:00
}
2012-10-22 01:10:43 +00:00
2012-12-21 01:19:55 +00:00
.wrapper {
display:block;
height:100%;
margin:0 0;
}
/* bottom right corner stuffs */
.wrapper div.index {
2013-01-06 23:40:48 +00:00
position: fixed;
bottom: 9px;
right: 0px;
2013-01-06 23:40:48 +00:00
z-index: 9999;
width: auto;
background: rgba(0,0,0,0.7);
padding: 1px 10px 0px 10px;
font-family: "vinyl",sans-serif;
2013-07-10 18:02:38 +00:00
font-style:italic;
height: 35px;
2013-01-06 23:40:48 +00:00
font-size: 30px;
line-height: 38px;
2013-07-10 18:02:38 +00:00
border:1px solid #000;
border-right:none;
border-bottom-left-radius:5px;
border-top-left-radius:5px;
2012-12-21 01:19:55 +00:00
}
.wrapper div.index .openCheatsheet {
position:absolute;
2012-12-21 01:19:55 +00:00
top:0;
left:-45px;
background: rgba(0,0,0,0.3) url('MMCCicon_help.png') no-repeat center center;
background-size: 32px 32px;
2012-12-21 01:19:55 +00:00
border:1px solid #000;
border-radius:5px;
height:36px;
width:36px;
cursor:pointer;
2012-12-21 01:19:55 +00:00
}
.wrapper div.index .openCheatsheet:hover {
background-color: rgba(0,0,0,0.5);
}
.wrapper div.index span {
2012-12-21 01:19:55 +00:00
float:left;
}
.wrapper div.index span.mapName {
text-transform:uppercase;
margin-right:9px;
2012-12-21 01:19:55 +00:00
}
.wrapper div.index span.mapInfo {
width: 24px;
height: 24px;
line-height: 24px;
text-align: center;
margin-top: 5px;
font-size: 27px;
background: url('MMCCicon_info.png') no-repeat center center;
background-size:24px 24px;
cursor:pointer;
2012-12-21 01:19:55 +00:00
}
.wrapper h1.index {
position: fixed;
bottom: 9px;
right: 0;
z-index: 9999;
width: auto;
background: rgba(0,0,0,0.7);
padding: 1px 10px 0px 20px;
text-transform:uppercase;
font-style:italic;
height: 35px;
font-size: 30px;
line-height: 38px;
border:1px solid #000;
border-right:none;
border-bottom-left-radius:5px;
border-top-left-radius:5px;
2012-12-21 01:19:55 +00:00
}
/* account */
2012-12-21 01:19:55 +00:00
.sidebarAccount {
position:absolute;
top:5px;
right:0;
z-index:200;
width: 35px;
height:35px;
2012-12-21 01:19:55 +00:00
}
.sidebarAccountIcon {
position:absolute;
width: 35px;
height: 35px;
background: rgba(0,0,0,0.7) url('MMCCicon_mapper.png') no-repeat center center;
background-size: 28px 28px;
cursor:pointer;
2012-12-21 01:19:55 +00:00
}
.sidebarAccountBox {
position:absolute;
display:none;
height:auto;
background: rgba(0,0,0,0.9);
top: 35px;
right:0;
padding: 10px;
border: 1px solid black;
min-width:120px;
font-family: 'LatoLight', helvetica, sans-serif;
}
.sidebarAccountBox.loggedin {
width:auto;
2012-12-21 01:19:55 +00:00
}
.sidebarAccountBox.loggedout {
width:200px;
2012-12-21 01:19:55 +00:00
}
.sidebarAccountBox h3 {
font-family: 'vinyl', helvetica, sans-serif;
text-transform:uppercase;
font-style:italic;
2012-12-21 01:19:55 +00:00
}
.sidebarAccountBox ul {
list-style:none;
2012-12-21 01:19:55 +00:00
}
.sidebarAccountBox li.accountIcon {
padding: 0;
background-size: 18px 18px;
background-repeat: no-repeat;
background-position: 0px 6px;
font-size: 18px;
line-height: 20px;
2012-12-21 01:19:55 +00:00
}
li.accountIcon:hover {
background-position: 4px 6px;
}
li.accountMaps {
background-image: url('MMCCicon_map.png');
2012-12-21 01:19:55 +00:00
}
li.accountSettings {
background-image: url('MMCCicon_settings.png');
2012-12-21 01:19:55 +00:00
}
li.accountInvite{
background-image: url('MMCCicon_invite.png');
2012-12-21 01:19:55 +00:00
}
li.accountLogout {
background-image: url('MMCCicon_logout.png');
2012-12-21 01:19:55 +00:00
}
li.accountIcon a {
display:block;
padding: 6px 0 6px 25px;
2012-12-21 01:19:55 +00:00
}
.sidebarAccountBox a {
color:white;
}
.sidebarAccountBox input[type="email"], .sidebarAccountBox input[type="password"] {
width: 200px;
height: 32px;
font-size: 15px;
direction: ltr;
-webkit-appearance: none;
appearance: none;
display: inline-block;
margin: 0;
padding: 0 8px;
background: #fff;
border: 1px solid #d9d9d9;
border-top: 1px solid #c0c0c0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
font: -webkit-small-control;
color: initial;
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display: inline-block;
text-align: start;
}
.sidebarAccountBox .links a {
2012-12-21 01:19:55 +00:00
display:block;
margin-top:5px;
2012-12-21 01:19:55 +00:00
}
/* collaborate */
.sidebarCollaborate {
position:absolute;
top:5px;
right:35px;
z-index:200;
width: 35px;
height:35px;
border-right:1px solid black;
}
.sidebarCollaborateIcon {
position:absolute;
width: 35px;
height: 35px;
background: rgba(0,0,0,0.7) url('MMCCicon_realtime_junto.png') no-repeat -3px -1px;
background-size: 40px 40px;
cursor:pointer;
}
.sidebarCollaborateBox {
position:absolute;
display:none;
height:auto;
width:auto;
background: rgba(0,0,0,0.9);
top: 36px;
right:0;
padding: 10px;
border: 1px solid black;
min-width:120px;
font-family: 'LatoLight', helvetica, sans-serif;
}
/* end collaborate */
/* wand */
.sidebarWand {
position:absolute;
top:5px;
right:71px;
z-index:200;
width: 35px;
height:35px;
border-right:1px solid black;
}
.sidebarWand.topicView {
right:35px;
}
.sidebarWand.topicView .sidebarWandBox {
right:-36px;
}
.sidebarWandIcon {
position:absolute;
width: 35px;
height: 35px;
background: rgba(0,0,0,0.7) url('MMCCicon_wand.png') no-repeat center center;
background-size: 28px 28px;
cursor:pointer;
}
.sidebarWandBox {
position:absolute;
display:none;
height:auto;
width:169px;
background: rgba(0,0,0,0.9);
top: 35px;
right:-72px;
padding: 10px;
border: 1px solid black;
min-width:120px;
font-family: 'LatoLight', helvetica, sans-serif;
}
.sidebarWandBox ul {
list-style:none;
}
.sidebarWandBox li.wandIcon {
padding: 6px 0 6px 25px;
background-size: 18px 18px;
background-repeat: no-repeat;
background-position: 0px 6px;
font-size: 18px;
line-height: 20px;
color:white;
cursor:pointer;
}
li.wandIcon:hover {
background-position: 4px 6px;
}
li.wandSaveLayout {
background-image: url('MMCCicon_save_layout.png');
}
li.wandForkMap {
background-image: url('MMCCicon_save_new_map.png');
}
li.wandFilter{
background-image: url('MMCCicon_filter.png');
}
/* end wand */
/* search */
.sidebarSearch {
position:absolute;
top:5px;
left:0;
height: 35px;
z-index:200;
}
.sidebarSearchIcon {
float:left;
width: 35px;
height: 35px;
background: rgba(0,0,0,0.7) url('search_icon_32x32.png') no-repeat center center;
background-size: 25px 25px;
cursor:pointer;
}
.sidebarSearch .twitter-typeahead {
float:left;
}
.sidebarSearchField, .sidebarSearch .tt-hint {
height:25px;
padding:5px 0;
width:0px;
margin: 0;
border: 0;
outline: none;
font-size: 25px;
line-height:35px;
background:rgba(0,0,0,0.7);
color: rgba(255,255,255,0.6);
font-family: 'katarine-web';
}
.sidebarSearch .tt-dropdown-menu {
left:-35px !important;
background: rgba(0,0,0,0.7);
min-width: 440px;
border: 1px solid black;
2012-12-21 01:19:55 +00:00
}
.sidebarSearch .tt-dropdown-menu h3 {
font-family:'vinyl',helvetica,sans-serif;
text-transform:uppercase;
font-style:italic;
font-size:20px;
line-height:20px;
margin: 10px 0 3px 10px;
2012-12-22 08:32:12 +00:00
}
.sidebarSearch .tt-suggestions {
font-family:'LatoLight', helvetica, sans-serif;
2012-12-22 08:32:12 +00:00
}
.sidebarSearch .tt-suggestion {
background: rgba(0,0,0,0.5);
border: 1px solid black;
}
.sidebarSearch .tt-is-under-cursor {
background:black;
2012-12-21 01:19:55 +00:00
}
.sidebarSearch .tt-suggestion .icon {
float:left;
width:36px;
height:36px;
margin-right:5px;
2012-12-21 01:19:55 +00:00
}
.sidebarSearch .tt-dataset-mappers .tt-suggestion .icon {
width:28px;
height:28px;
padding:4px;
2012-12-21 01:19:55 +00:00
}
.sidebarSearch .resultText {
width: 280px;
2012-12-21 01:19:55 +00:00
display: block;
float: left;
2012-12-21 01:19:55 +00:00
}
2012-12-16 20:00:43 +00:00
.sidebarSearch .resultTitle {
font-weight:bold;
font-size:20px;
line-height:22px;
width:100%;
padding-top:8px;
}
.sidebarSearch .resultDesc {
font-style:italic;
font-size:16px;
line-height:16px;
width:100%;
padding: 6px 0;
}
.sidebarSearch .tip {
2012-12-21 01:19:55 +00:00
display:none;
}
.sidebarSearch div.autoOptions {
width: 117px;
float: left;
position:relative;
2012-12-21 01:19:55 +00:00
display:none;
}
.sidebarSearch .tt-is-under-cursor .autoOptions {
2012-12-21 01:19:55 +00:00
display:block;
}
.sidebarSearch .autoOptions button, .sidebarSearch .autoOptions a, .sidebarSearch .autoOptions div {
position: absolute;
padding: 0;
margin: 0;
border: none;
outline: none;
}
.sidebarSearch button.addToMap {
width: 20px;
height: 20px;
background: url(/assets/MMCCicon_add.png) no-repeat center center;
background-size: 15px 15px;
top: 10px;
left: 0px;
}
.sidebarSearch a.goTo {
width: 20px;
height: 20px;
background: url(/assets/MMCCicon_pop-out.png) no-repeat center center;
background-size: 15px 15px;
top: 11px;
left: 22px;
}
.sidebarSearch div.mapCount {
width: 20px;
height: 20px;
background: url(/assets/MMCCicon_map.png) no-repeat 0px center;
background-size: 14px 14px;
top: 0px;
left: 50px;
padding-left: 18px;
font-size: 12px;
line-height: 20px;
}
.sidebarSearch div.topicCount {
width: 20px;
height: 20px;
background: url(/assets/MMCCicon_topic.png) no-repeat 0px center;
background-size: 14px 14px;
top: 0px;
left: 50px;
padding-left: 18px;
font-size: 12px;
line-height: 20px;
}
.sidebarSearch div.synapseCount {
width: 20px;
height: 20px;
background: url(/assets/MMCCicon_synapse.png) no-repeat 0px center;
background-size: 14px 14px;
top: 0px;
left: 83px;
padding-left: 15px;
font-size: 12px;
line-height: 20px;
}
.sidebarSearch div.topicOriginatorIcon {
width: 20px;
height: 20px;
background: url(/assets/MMCCicon_mapper.png) no-repeat center center;
background-size: 16px 16px;
top: 21px;
left: 52px;
}
.sidebarSearch div.mapContributorsIcon {
width: 20px;
height: 20px;
background: url(/assets/MMCCicon_mapper.png) no-repeat 0px center;
background-size: 16px 16px;
top: 21px;
left: 50px;
padding-left: 18px;
font-size: 12px;
line-height: 20px;
}
.sidebarSearch div.topicPermission, .sidebarSearch div.mapPermission {
width: 20px;
height: 20px;
background-size: 20px 20px !important;
top: 20px;
left: 84px;
}
.sidebarSearch div.topicPermission.commons, .sidebarSearch div.mapPermission.commons {
background: url(/assets/MMCCicon_commons.png) no-repeat center center;
}
.sidebarSearch div.topicPermission.public, .sidebarSearch div.mapPermission.public {
background: url(/assets/MMCCicon_public.png) no-repeat center center;
}
.sidebarSearch div.topicPermission.private, .sidebarSearch div.mapPermission.private {
background: url(/assets/MMCCicon_private.png) no-repeat center center;
}
.sidebarSearch .tt-dataset-mappers a.goTo {
top:7px;
}
.sidebarSearch .tt-dataset-mappers div.mapCount {
top:8px;
}
2012-12-21 01:19:55 +00:00
/* end search */
2012-12-21 01:19:55 +00:00
.nodemargin {
padding-top:120px;
2012-12-21 01:19:55 +00:00
}
.divider {
margin: 20px 50px 20px 50px;
border-bottom:2px solid #FFF;
2012-12-21 01:19:55 +00:00
}
.empty {
margin-left:50px;
2012-12-21 01:19:55 +00:00
}
2012-12-16 20:00:43 +00:00
#menus {
margin:0 7px;
2012-12-21 01:19:55 +00:00
}
2012-10-22 01:10:43 +00:00
#cards {
height:100%;
2012-10-22 01:10:43 +00:00
}
#cards p.empty {
margin-left:50px;
}
/* right click menu */
.rightclickmenu {
position:absolute;
background:white;
z-index: 20;
border-radius: 2px;
color: black;
}
.rightclickmenu ul li {
list-style: none;
padding: 2px 7px;
}
.rightclickmenu ul li:hover {
background: #e4e4e4;
cursor:pointer;
}
.rightclickmenu p {
padding:7px;
}
/* end right click menu */
/* --- styling the logo button ---*/
/*.footer {
2013-01-06 23:40:48 +00:00
width: 188px;
display: block;
position: fixed;
bottom: 9px;
height: 38px;
background: rgba(0,0,0,0.5);
border-bottom-right-radius: 5px;
border-top-right-radius: 5px;
2013-01-06 23:40:48 +00:00
z-index: 15000;
border:1px solid #000;
2013-01-06 23:40:48 +00:00
}
2012-12-21 01:19:55 +00:00
.logo {
position:fixed;
bottom:6px;
left:10px;
z-index:12;
display:block;
width:auto;
padding: 3px 8px;
margin: -0.75em 0 0;
}
*/
.footer {
display: block;
position: fixed;
bottom: 9px;
height: 35px;
z-index: 15000;
border:1px solid #000;
border-bottom-right-radius:5px;
border-top-right-radius:5px;
}
.addMap {
position: absolute;
right: -50px;
top: -1px;
width: 44px;
height: 35px;
background: rgba(185,182,237,0.3) url('MMCCicon_add_map.png') no-repeat 3px -4px;
background-size: 40px 40px;
border-left: 1px solid rgba(255,255,255,0.6);
border-radius: 5px;
border: 1px solid black;
cursor:pointer;
}
.addMap:hover {
background-color: rgba(185,182,237,0.5);
}
.logo {
z-index:12;
display:block;
width: 136px;
background: rgba(0,0,0,0.7) url(menu_icon_32.png) no-repeat -10px 8px;
padding: 5px 0px 1px 15px;
background-size: 22px 20px;
}
2012-12-21 01:19:55 +00:00
#mainTitle {
padding: 0 5px;
}
2012-12-21 01:19:55 +00:00
#mainTitle a {
color:#FFF;
font-family: "vinyl",sans-serif;
font-style: italic;
text-transform:uppercase;
font-weight: 400;
font-size:30px;
line-height:30px;
2012-12-21 01:19:55 +00:00
}
.footer .menu {
display:none;
position:absolute;
border:none;
bottom:36px;
left:-1px;
height:124px;
z-index:12;
width:151px;
color: #67AF9F;
white-space: nowrap;
text-align: center;
font-size: 16px;
overflow: hidden;
padding: 0;
margin: 0;
/*border-radius: 6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
box-shadow: 0 2px rgba(0, 0, 0, 0.05), 0 -2px rgba(0, 0, 0, 0.05) inset;
-webkit-box-shadow: 0 2px rgba(0, 0, 0, 0.05), 0 -2px rgba(0, 0, 0, 0.05) inset;
-moz-box-shadow: 0 2px rgba(0, 0, 0, 0.05), 0 -2px rgba(0, 0, 0, 0.05) inset;*/
background: rgba(0,0,0,0.7);/*url('black_bg.png'); */
border-left:1px solid #000;
border-right:1px solid #000;
}
.footer ul li {
margin:0;
clear:both;
float:none;
list-style-type:none;
display:block;
padding:0;
text-align:center;
}
li.beta {
border-top: 1px solid black;
border-bottom: 1px solid black;
position: relative;
height: 30px;
}
.inBeta {
background: rgba(0,0,0,0.6);
display: inline-block;
color: white;
height: 30px;
padding: 0 5px;
font-family: 'LatoLight';
font-size: 30px;
position: absolute;
top: 0;
left: 0;
line-height: 30px;
}
li.beta button {
position: absolute;
top: 0;
right: 0;
width: 84px;
border-radius: 0;
font-size: 12px;
margin: 0;
}
li.meta, li.tutorial, li.exploreMaps {
height:30px;
line-height:30px;
font-size:20px;
}
li.meta a, li.tutorial a, li.exploreMaps a {
display:block;
}
li.tutorial, li.exploreMaps {
border-top:1px solid white;
}
.footer ul li a {
2013-01-06 23:40:48 +00:00
color: #FFF;
}
.home_bg {
display:block;
height:100%;
}
2013-12-02 01:47:28 +00:00
#homeMap {
height: 350px;
width: 510px;
margin: 0 auto;
transform: rotate(18deg);
-ms-transform: rotate(18deg);
-webkit-transform: rotate(18deg);
}
#homeMap-label div.node{
transform: rotate(-18deg);
-ms-transform: rotate(-18deg);
-webkit-transform: rotate(-18deg);
font-family: 'vinyl';
text-transform: uppercase;
}
.home_content {
width: 830px;
margin:0 auto;
}
span.blue {
color: #36bbe8;
}
.home_desc {
font-style: oblique;
text-transform: uppercase;
font-family: 'vinyl';
font-size: 40px;
2013-12-02 01:47:28 +00:00
margin: 40px 20px 25px;
text-align:center;
2013-12-02 01:47:28 +00:00
background: url('home_bg2.png') no-repeat center -46px;
}
.contact {
text-align: center;
margin: 1em 0 1em 0;
}
.contact a {
color: #36bbe8;
}
#edit_synapse label,
#edit_synapse_left,
#edit_synapse_right {
display: inline-block;
}
#edit_synapse label.left {
margin-right: 0.5em;
}
.templates {
display:none;
}