-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbubble.css
More file actions
62 lines (55 loc) · 816 Bytes
/
bubble.css
File metadata and controls
62 lines (55 loc) · 816 Bytes
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
header{
background-color:rgb(139,197,231);
}
h1
{
font-family:"Acumin Variable Concept";
font-size: 55px;
text-align: center;
}
.split {
height: 100%;
width: 40%;
position: absolute;
z-index: 1;
top: 0;
overflow-x: hidden;
padding-top: 20px;
}
.right {
right: 0;
top: 300px;
right: 2000;
}
.filterDiv {
float: left;
background-color: #2196F3;
color: #ffffff;
width: 100px;
line-height: 100px;
text-align: center;
margin: 2px;
display: none;
}
.show {
display: block;
}
.container {
margin-top: 20px;
overflow: hidden;
}
/* Style the buttons */
.btn {
border: none;
outline: none;
padding: 12px 16px;
background-color: #f1f1f1;
cursor: pointer;
}
.btn:hover {
background-color: #ddd;
}
.btn.active {
background-color: #666;
color: white;
}