-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (84 loc) · 1.38 KB
/
style.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
#header {
width: 400px;
position: fixed;
z-index: 2;
}
.colourBoxContainer {
width: 5%;
display: block;
float: left;
}
.colourBox {
cursor: pointer;
width: 100%;
padding-bottom: 100%;
display: block;
float: left;
transition: all 0.375s cubic-bezier(0.4, 0, 0.2, 1);
-moz-transition: all 0.375s cubic-bezier(0.4, 0, 0.2, 1);
}
.colourBox:hover {
transform:scale(1.5);
-moz-transform:scale(1.5);
border-radius:3px;
z-index:4;
}
#svg-root {
position: fixed;
width: 100%;
height: 100%;
}
#svg-container {
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
max-width: 99%;
max-height: 99%;
overflow: auto;
}
#countryMenu {
display: none;
overflow-y: scroll;
max-height: 99%;
height: 800px;
width: 350px;
}
.countryMenuItem {
height: 35px;
}
#countryMenuOpener {
text-align: center;
color: red;
cursor: pointer;
}
::-webkit-scrollbar {
width 0px;
background: transparent;
}
html {
overflow: hidden;
}
button {
box-shadow:inset 0px 1px 0px 0px #fbafe3;
background-color:#f57595;
/*border-radius:6px;*/
border:1px solid #ee1eb5;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:13px;
font-weight:bold;
padding:2px;
text-decoration:none;
text-shadow:0px 1px 0px #c70067;
}
button:hover {
background-color:#f558ac;
}
button:active {
position:relative;
top:1px;
}