This repository has been archived by the owner on Dec 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitbubble.css
112 lines (100 loc) · 1.9 KB
/
gitbubble.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
.bubble {
display: flex;
justify-content: space-around;
border-radius: 64px;
background-color: white;
border: none;
color: black;
font-size: 0pt;
padding: 5px;
width: 64px;
height: 64px;
transition: all 0.5s;
cursor: pointer;
position: fixed;
right: 25px;
bottom: 25px;
z-index: 5;
}
.bubble span {
cursor: pointer;
display: inline-block;
transition: 0.5s;
color: black;
font-size: 0px;
position: relative;
margin-top: auto;
margin-bottom: auto;
font-family: 'Comfortaa', cursive;
}
.bubble span:after {
content: 'View On GitHub';
position: relative;
opacity: 0;
top: 0;
right: 0px;
transition: 0.5s;
}
.bubble:hover {
width: 190px;
}
.bubble:hover span {
padding-right: 25px;
vertical-align: middle;
font-size: 23px;
}
.bubble:hover span:after {
opacity: 1;
right: 0;
}
/* Cookie Bubble*/
.cookie {
display: flex;
justify-content: space-around;
border-radius: 64px;
background-color: #2b99c4;
border: none;
color: black;
font-size: 0pt;
padding: 5px;
width: 64px;
height: 64px;
transition: all 0.5s;
cursor: pointer;
position: fixed;
left: 25px;
bottom: 25px;
z-index: 5;
}
.cookie span {
cursor: pointer;
display: inline-block;
transition: 0.5s;
color: black;
font-size: 0px;
position: relative;
margin-top: auto;
margin-bottom: auto;
font-family: 'Comfortaa', cursive;
}
.cookie span:after {
content: 'Cookies';
position: relative;
opacity: 0;
top: 0;
left: 0px;
transition: 0.5s;
}
.cookie:hover {
width: 190px;
background-color: white;
}
.cookie:hover span {
padding-left: 25px;
vertical-align: middle;
font-size: 23px;
}
.cookie:hover span:after {
opacity: 1;
left: 0;
}