blob: be2a4f0a89ae959d96b21c286bb7b9dd8ffdceb8 (
plain)
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
|
.fixedButton {
overflow: hidden;
white-space: nowrap;
position: fixed;
padding: 5px;
border-radius: 50px;
width: 100px;
height: 100px;
border: none;
background-color: #2871e2;
color: white;
font-size: 45px;
transition-property: width;
transition-duration: 0.6s;
}
.fixedButton:hover {
width: 300px;
font-size: 30px;
background-color: #286bd6;
}
.fixedButton:focus {
background-color: #2861c3;
}
.newEntryBtn {
bottom: 50px;
left: 50px;
}
.uploadFileBtn {
bottom: 175px;
left: 50px;
}
|