-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
147 lines (122 loc) · 2.27 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
body {
font-family: Sans-serif;
font-size: 11px;
background-color: rgb(247, 247, 247);
}
.title{
font-size: 35px;
margin-bottom: 15px;
}
#sunburst{
background-color: rgba(255, 255, 255, 0.829);
border-radius: 2%;
padding: 0 30px;
box-shadow: 1px 1px 15px rgba(197, 197, 197, 0.288);
}
#movies-list{
background-color: rgba(255, 255, 255, 0.829);
border-radius: 2%;
padding:0 10px 10px 10px !important;
box-shadow: 1px 1px 15px rgba(197, 197, 197, 0.288);
}
#bubble-area{
background-color: rgba(255, 255, 255, 0.829);
border-radius: 2%;
padding: 10px 20px 0 20px;
box-shadow: 1px 1px 15px rgba(197, 197, 197, 0.288);
}
#similarity{
background-color: rgba(255, 255, 255, 0.829);
border-radius: 2%;
padding: 10px 20px 0 20px;
box-shadow: 1px 1px 15px rgba(197, 197, 197, 0.288);
}
.slice {
cursor: pointer;
}
.slice .main-arc {
stroke: #fff;
stroke-width: 1px;
}
.slice .hidden-arc {
fill: none;
}
.slice text {
pointer-events: none;
dominant-baseline: middle;
text-anchor: middle;
}
.bubbles {
stroke-width: 1.1px;
stroke: white;
}
.bubbles-hover {
stroke: black !important;
}
.bubbles-left-hover {
stroke: white !important;
}
.bubbles:hover {
stroke: black;
}
#movies-list{
padding: 0 10em;
}
.range-wrap {
position: relative;
margin: 0 auto 2.5em;
}
.range {
width: 100%;
}
.bubble {
background: rgb(0, 153, 255);
color: white;
padding: 4px 12px;
position: absolute;
border-radius: 4px;
left: 50%;
margin-top: 1.5em;
transform: translateX(-50%);
}
.bubble::after {
content: "";
position: absolute;
width: 2px;
height: 2px;
background: rgb(0, 153, 255);
top: -1px;
left: 50%;
}
body {
margin: 2rem;
}
.dott {
height: 8px;
width: 8px;
border-radius: 50%;
display: inline-block;
margin-right: 5px;
}
.card{
padding: 1em;
width: 45em;
margin-bottom: 0.5em;
box-shadow: 1px 1px 5px rgba(228, 228, 228, 0.39);
}
hr{
margin: 0.5em;
}
.card-title{
font-size: 15px;
margin-bottom: 0;
}
.card-body{
padding: 0;
}
#movie-cards{
max-height: 30rem;
overflow: scroll;
background-color: rgb(247, 247, 247);
padding: 1em 1em;
}