-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.html
65 lines (64 loc) · 1.73 KB
/
style.html
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
<style>
.column {
display: flex;
}
.todo{
height: 385.06px;
width: 400px;
position: absolute;
box-sizing: content-box;
border: solid rgb(189, 199, 207);
border-width: 1px;
border-radius: 13px;
top: 225px;
left: 15%;
transform: translate(-50%, -50%);
}
.column {
width: 100%;
height: 100%;
flex-direction: column;
}
.element{
width: 100%;
height: 100px;
}
.elementrow {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
height: 100px;
}
.textdata {
width: 250px;
text-align: left;
}
.decktitle {
font: 1.2rem "Fira Sans", sans-serif;
margin: 15px;
margin-bottom: 0px;
margin-left: 25px;
}
.remainingtime {
font: 0.95rem "Fira Sans", sans-serif;
margin: 15px;
margin-top: 8px;
margin-left: 25px;
}
.example{
visibility: hidden;
display: flex;
height: 100%;
width: 150px;
justify-content: space-around;
align-items: center;
}
.firstelementprogressbar {
display: flex;
height: 100%;
width: 150px;
justify-content: space-around;
align-items: center;
}
</style>