initial commit
[map.git] / honeymap-master / static / main.css
1 body {
2   margin: 0px;
3   padding: 0px;
4   background-color: #021320;
5   color: white;
6   background: -moz-linear-gradient(top, #021320, #03244b, #021320);
7   background: -webkit-linear-gradient(top, #021320, #03244b, #021320);
8 }
9
10 a {
11   color: white;
12 }
13
14 #world-map {
15   margin: 0px auto 0px auto;
16 }
17
18 #log {
19   margin: 1% auto 0px auto;
20   overflow: auto;
21   overflow-x: hidden;
22   white-space: nowrap;
23   background-color: black;
24   color: white;
25   border: 1px solid white;
26   padding: 5px;
27   font-family: 'Ubuntu Mono', monospace, fixed, sans-serif;
28   font-size: 70%;
29 }
30
31 #log div {
32   display: inline;
33 }
34
35 .log_timestamp, .log_info, .log_info a {
36   color: silver;
37 }
38
39 .log_bracket {
40   color: red;
41 }
42
43 .log_bracket2 {
44   color: #4b81db;
45 }
46
47 .log_country {
48   font-weight: bold;
49 }
50
51 #logo1 {
52   position: absolute;
53   left: 1%;
54   bottom: 1%;
55   max-width: 20%;
56 }
57
58 #logo1 img, #logo2 img {
59   width: 100%;
60 }
61
62 #logo2 {
63   position: absolute;
64   right: 1%;
65   bottom: 1%;
66   max-width: 20%;
67 }
68
69 #helpbtn {
70   position: absolute;
71   left: 1px;
72   top: 1px;
73 }
74
75 #helpbtn img {
76   border: 0;
77 }
78
79 .modal {
80   color: black;
81   font-family: "Trebuchet MS", sans-serif;
82   display: none;
83 }
84
85 .modal a {
86   color: blue;
87 }
88
89 /*************************** ANIMATION STUFF ************************************/
90
91 .marker_animation {
92   position: absolute;
93   opacity: 0;
94   border-radius: 100px;
95   -moz-border-radius: 100px;
96   /* 40px radius, move origin to center */
97   height: 80px;
98   width: 80px;
99   margin-top: -40px;
100   margin-left: -40px;
101   pointer-events: none; /* dont kill the hover event of markers */
102   -webkit-transform: translateZ(0); /* little trick to force GPU acceleration */
103 }
104
105 .markerdst {
106   background-color: yellow;
107   z-index: 10;
108 }
109
110 .markersrc {
111   background-color: red;
112   z-index: 20;
113 }
114
115 .jvectormap-label {
116   z-index: 30;
117 }