-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (109 loc) · 2.04 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
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
#mapid { height: 400px; }
.ukiyoe_image {
object-fit: contain;
height: 100vh;
width: 100wh;
display: block;
margin: auto;
}
.ukiyoe_image_text {
color: white;
text-align: center;
font-family: "Tahoma", Geneva, sans-serif;
}
.ukiyoe_image_text .title {
font-size: 75px;
}
.ukiyoe_image_text .jp-title {
font-size: 20px;
}
.ukiyoe_image_text .artist-title {
font-size: 50px;
}
.ukiyoe_image_text .jp-artist-title {
font-size: 20px;
}
.ukiyoe_image_text .table-name {
font-size: 25px;
}
.ukiyoe_image_text .table-value {
font-size: 25px;
}
.legend {
position: relative;
margin-left: 10px;
margin-top: 85px;
width: 15vw;
height: auto;
background-color: rgba(0,0,0,0.5);
z-index: 5000;
display: flex;
flex-direction: column;
min-width: 130px;
}
.itemContainer {
position: relative;
width: 100%;
border-color: white;
border-width: 1px;
display: flex;
}
.itemContainer:after {
content: "";
display: block;
padding-bottom: 15%;
}
.itemSquare {
width: 15%;
float:left;
padding-left: 2.5%;
display: flex;
align-items: center;
}
.itemCircle {
position: relative;
width: 80%;
margin: 10%;
background: rgba(var(--r),var(--g),var(--b), 0.3);
float:left;
border-radius: 50%;
box-sizing: border-box;
border: 3px solid rgba(var(--r),var(--g),var(--b), 1);
}
.itemCircle:after {
content: "";
display: block;
padding-top: 50%;
padding-bottom: 50%;
}
.itemText {
position: relative;
width: 85%;
float:left;
color: white;
font-size: 100%;
font-weight: bold;
padding: 2.5%;
display: flex;
align-items: center; /* align vertical */
}
.itemText:after {
display: block;
padding-bottom: 17.6%;
}
.image_container {
width: 100%;
height: 100%;
display: flex;
flex-direction:row;
}
.arrow_buffer {
width: 10%;
display: flex;
justify-content: center;
align-items: center;
}
img {
max-width: 100%;
max-height: 100%;
}