-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (76 loc) · 1.64 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
/* Start Fonts from Google Fonts */
/*Google Fonts*/
@import url('https://fonts.googleapis.com/css?family=Arapey|Cantarell|Comfortaa|Khand|Russo+One|Ubuntu');
/*End Fonts*/
body {
margin: 0px;
}
/*
canvas {
border: 1px solid cyan;
} */
#wrapper_menu{
line-height: 0;
position: relative;
}
#wrapper{
line-height: 0;
position: relative;
}
#menu0{
position: relative; left: 0; top: 0; z-index: 4; background-color: black;
}
#menu1{
position: absolute; left: 0; top: 0; z-index: 5; background-color: transparent;
}
#lay00{
position: relative; left: 0; top: 0; z-index: 0; background-color: black;
}
#lay01{
position: absolute; left: 0; top: 0; z-index: 1; background-color: transparent;
}
#lay02{
position: absolute; left: 0; top: 0; z-index: 2; background-color: transparent;
}
#lay03{
position: absolute; left: 0; top: 0; z-index: 3; background-color: transparent;
}
.tooltip {
padding: 1.3vw;
box-sizing: border-box;
border-style: solid;
border-radius: 1vw;
border-width: 0.2vw;
border-color: #aaa8;
height: 3vw;
background-color: rgba(0, 50, 50, 0.5);
font-size:1.5vw;
font-family: 'Comfortaa', cursive;
align-items: baseline;
z-index: 6;
}
.tooltip .tooltiptext {
visibility: hidden;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 7;
top: -5px;
left: 110%;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 50%;
right: 100%;
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent black transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}