-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
57 lines (57 loc) · 991 Bytes
/
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
body {
background-color: black;
display: flex;
justify-content: center;
}
.container {
position: relative;
}
.container canvas {
position: absolute;
left: 0;
top: 0;
}
.key {
display: inline-block;
background-color: whitesmoke;
color: black;
/* vertical-align: super; */
padding: 3px;
border-radius: 5px;
margin-left: 3px;
margin-right: 3px;
}
#ui {
display: none;
color: white;
padding: 30px;
}
.block-in-timeline {
background-color: whitesmoke;
border: 1px solid black;
border-radius: 4px;
color: black;
padding: 20px;
margin: 5px;
}
.time-selected {
background-color: red
}
#timeline, #website-info, #page-info {
border: 1px solid white;
border-radius: 4px;
padding: 10px;
margin: 10px;
}
.clicker {
position: absolute;
cursor: pointer;
}
#write-preventer {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}