blob: cf63c987cff18b5206591a47140cb620e5da1ddd (
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
39
40
41
42
|
.timeline-container {
height: 100px;
width: 500px;
background-color: rgb(160, 226, 243);
position: absolute;
left: 15%;
top: 1%;
font-size: 75%;
.timeline {
height: 60px;
width: 500px;
bottom: 0px;
background-color: grey;
position: absolute;
}
.inner {
height: 44px;
width: 484px;
background-color: black;
//opacity: 0.5;
position: absolute;
margin: 8px;
z-index: 10;
}
button {
height: 30px;
width: 100px;
font-size: 1em;
position: relative;
margin: 5px;
}
input {
height: 30px;
width: 100px;
font-size: 1em;
margin: 5px;
}
}
|