-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.css
56 lines (50 loc) · 968 Bytes
/
content.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
@font-face {
font-family: "Bitter", sans-serif;
src: url(https://fonts.googleapis.com/css?family=Bitter);
}
#angles-floater-content {
position: relative;
width: 300px;
height: 350px;
background: #c4c4c4;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 15px;
z-index: 998;
}
#collapse-button {
all: initial;
position: absolute;
transform: translate(-20px, 0);
}
#angles-floater.collapsed {
border-radius: 15px 0px 0px 15px;
width: 50px;
height: 200px;
color: black;
background-color: #f9aa33;
cursor: pointer;
}
#angles-floater.collapsed:hover {
background-color: #c28529;
}
#angles-floater.collapsed > * {
transform: rotate(-90deg);
text-align: center;
margin-top: 95px;
font-family: "Bitter", sans-serif;
font-size: 2em;
}
#angles-floater {
position: fixed;
top: 110px;
right: 0;
}
#floater-name {
margin-top: 80px;
}
#collapse-button {
}
#collapse-button:hover {
cursor: pointer;
}