nakarte

Source code of https://map.sikmir.ru (fork)
git clone git://git.sikmir.ru/nakarte
Log | Files | Refs | LICENSE

westraPasses.css (2695B)


      1 .westra-pass-tooltip {
      2     visibility: hidden;
      3     position: absolute;
      4     z-index: 1000000;
      5     top: -30px;
      6     left: 0;
      7     transition-property: visibility;
      8     transition-delay: 0.2s;
      9 }
     10 
     11 .westra-pass-tooltip div {
     12     margin-left: -50%;
     13     margin-right: 50%;
     14     white-space: nowrap;
     15     background-color: white;
     16     border: 1px solid #333;
     17     border-radius: 3px;
     18     margin-top: -1px;
     19     opacity: 1;
     20     padding: 0 2px;
     21 }
     22 
     23 
     24 .westra-pass-marker {
     25     width: 14px;
     26     height: 14px;
     27     margin-left: -7px;
     28     margin-top: -7px;
     29     background-repeat: no-repeat;
     30 }
     31 
     32 .westra-pass-marker-summit {
     33     background-image: url("summit.png");
     34 }
     35 
     36 .westra-pass-marker-1a {
     37     background-image: url("pass-1a.png");
     38 }
     39 
     40 .westra-pass-marker-1b {
     41     background-image: url("pass-1b.png");
     42 }
     43 
     44 .westra-pass-marker-2a {
     45     background-image: url("pass-2a.png");
     46 }
     47 
     48 .westra-pass-marker-2b {
     49     background-image: url("pass-2b.png");
     50 }
     51 
     52 .westra-pass-marker-3a {
     53     background-image: url("pass-3a.png");
     54 }
     55 
     56 .westra-pass-marker-3b {
     57     background-image: url("pass-3b.png");
     58 }
     59 
     60 .westra-pass-marker-unknown {
     61     background-image: url("pass-unknown-notconfirmed.png");
     62 }
     63 
     64 .westra-pass-marker-nograde {
     65     background-image: url("pass-nograde.png");
     66 }
     67 
     68 .westra-region-label {
     69     white-space: nowrap;
     70     width: auto !important;
     71     height: auto !important;
     72 }
     73 
     74 .westra-region-label span {
     75     margin-left: -50%;
     76     color: #c55;
     77     font-family: sans-serif;
     78     font-size: 14px;
     79     /*font-weight: bold;*/
     80     text-shadow: 1px 0 0 #eee,
     81     1px 1px 0 #eee,
     82     0 1px 0 #eee,
     83     -1px 1px 0 #eee,
     84     -1px 0 0 #eee,
     85     -1px -1px 0 #eee,
     86     0 -1px 0 #eee,
     87     1px -1px 0 #eee;
     88 
     89 }
     90 
     91 .westra-coverage-polygon {
     92     stroke-width: 10;
     93     stroke-opacity: 1;
     94     fill-opacity: 1;
     95     stroke: #c55;
     96     fill: #c55;
     97     opacity: 0.6;
     98 
     99 }
    100 
    101 .pass-details {
    102     border-collapse: collapse;
    103 }
    104 
    105 .pass-details > tbody > tr > td {
    106     border-bottom: 1px solid #ccc;
    107     padding: 1mm 0;
    108 }
    109 
    110 .pass-details > tbody > tr > td:last-child {
    111     padding-left: 1em;
    112 }
    113 
    114 .pass-details > tbody > tr:last-child > td {
    115     border-bottom: none;
    116 }
    117 
    118 .pass-details .coords {
    119     border-collapse: collapse;
    120 }
    121 
    122 .pass-details .coords > tbody > tr > td {
    123     padding: 0;
    124     padding-left: 1em;
    125 }
    126 
    127 .pass-details .coords td:first-child {
    128     padding-left: 0;
    129 }
    130 
    131 .pass-details .coords .header {
    132     color: #999;
    133     font-size: 9px;
    134 }
    135 
    136 
    137 .pass-details .coords a {
    138     color: #000;
    139     border-bottom: 1px dashed #000;
    140     text-decoration: none;
    141     cursor: pointer;
    142 }
    143 
    144 
    145 
    146 .westra-passes-description-comment {
    147     margin: 0 !important;
    148 }
    149 
    150 .westra-passes-description-comment-author {
    151     font-weight: bold;
    152     color: #777;
    153     margin-right: 1em !important;
    154 }