-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtelemachy.component.css
More file actions
executable file
·117 lines (110 loc) · 1.82 KB
/
telemachy.component.css
File metadata and controls
executable file
·117 lines (110 loc) · 1.82 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.overlay {
position: absolute;
background: rgba(0, 0, 0, 0.5);
z-index: 9000000;
transition: all 0.25s ease;
}
.explanation {
position: absolute;
min-width: 400px;
z-index: 9000000;
transition: all 0.25s ease;
border-width: 1px;
border-color: inherit;
border-style: solid;
background-color: white;
margin-top: 0.5em;
}
.explanation .content {
padding: 1em;
}
.explanation .controls {
margin-top: 1em;
}
.popup {
position: fixed;
width: 50%;
left: 25%;
top: 35vh;
height: 30vh;
border-width: 1px;
border-color: inherit;
border-style: solid;
background-color: white;
z-index: 9000000;
}
.popup .content {
padding: 1em;
height: calc(100% - 2em);
position: relative;
}
.popup .content .body {
overflow-y: auto;
height: calc(100% - 29px);
}
.popup .controls {
bottom: 1em;
}
.controls a {
cursor: pointer;
font-size: 1.2em;
font-weight: 100;
margin-left: 0.5em;
margin-right: 0.5em;
}
.controls span {
margin-left: 0.5em;
margin-right: 0.5em;
}
.video {
position: fixed;
top: calc((100vh - 480px)/2);
left: calc((100% - 853px)/2);
z-index: 9000000;
}
.ytpopup {
position: fixed;
bottom: calc((100vh - 480px)/2 - 63px - 1em);
left: calc((100% - 853px)/2);
z-index: 9000000;
background-color: white;
border-width: 1px;
border-color: inherit;
border-style: solid;
width: 853px;
}
.ytpopup .content {
padding: 1em;
}
.flex-container{
display: flex;
}
.step-button {
flex: 1;
display: flex;
align-items: center;
justify-content: flex-start;
flex-grow: 2;
}
.step-counter {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
flex-grow: 2;
padding-right: 15%;
}
.end-button {
flex: 1;
display: flex;
align-items: center;
justify-content: flex-end;
}
.horizontal-line {
margin-top: 20px;
height: 2px;
border: none;
color: #333;
background-color: #269189;
text-align: center;
}