-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesktop.css
128 lines (111 loc) · 2.28 KB
/
desktop.css
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body
{
background-image: url(background.png);
background-size:cover;
height: 100%;
/*can be added at this point again when the map positioning gets fixed*/
/*width: 100vw;*/
/*Make user not be able to select text(because looks shitty)*/
-webkit-user-select: none; /* Chrome/Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+ */
/* Rules below not implemented in browsers yet */
-o-user-select: none;
user-select: none;
}
.main
{
margin: 0 auto;
width: 50%;
background-color: rgba(92,211,250,0.77);
overflow: auto;
/*background-image: url('images/woodtexture.jpg');*/
/*background-size:cover;*/
text-align: center;
font-family: Headliner;
font-size: 200%;
}
#content
{
padding-top: 5%;
}
#leftsection
{
float: left;
width: 50%;
}
#rightsection
{
float: right;
width: 49%;
padding-bottom: 1%;
padding-right: 1%;
}
#mapsection
{
/*position: fixed;*/
/*min-width: 500px;
min-height: 500px;*/
/*transform: translate(510px, -390px);
border-width: 5%;
border-style: solid;
border-color: rgba(92,211,250,0.77);*/
/*border-image: url(images/woodtexture.jpg);*/
}
@font-face
{
font-family: Headliner;
src: url("Headliner.ttf");
}
table
{
margin: 0 auto;
padding-top: 5%;
}
td:nth-child(2)
{
width: 60%;
}
button
{
font-family: Headliner;
font-size: 100%;
background-color: rgba(251,167,39,1);
border-style: inset;
border-width: thin;
border-color: rgba(255,170,40,1);
/*background-color: Transparent;
background-repeat:no-repeat;*/
}
button:hover
{
background-color: rgba(255,190,0,1);
}
.smooth_zoom_preloader {
background-image: url(zoom_assets/preloader.gif);
}
.smooth_zoom_icons {
background-image: url(zoom_assets/icons.png);
}
#mapsection .landmarks{
position:absolute;
z-index:10;
top:0px;
left:0px;
font-family: Helvetica, Arial, Verdana;
font-size:12px;
color: #ffffff;
}
#mapsection .landmarks .item {
position:absolute;
text-align:center;
display: none;
}
#mapsection .landmarks .lable div {
width: 100px;
padding: 4px;
}
#mapsection .landmarks .mark .text{
background-color:#000000;
padding:2px 6px;
}