-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (88 loc) · 1.5 KB
/
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
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
body {
background-color: white;
font-family: 'Work Sans', sans-serif;
font-weight: 400;
margin: 0;
}
a {
text-decoration: none;
color: white;
}
.container {
position: absolute;
background-color: grey;
width: 100%;
height: 600px;
top: 0px;
left: 0px;
margin-left: auto;
margin-right: auto;
color: white;
font-style: italic;
overflow: hidden;
}
.floating-text-container {
position: relative;
top: -604px;
height: 100%;
float: right;
margin-right: 10px;
}
@media (min-width: 600px) {
.container {
width: 600px;
left: calc(50% - 300px);
}
}
@media (min-height: 600px) {
.container {
top: calc(50% - 300px);
}
}
.links-bar {
position: absolute;
bottom: 10px;
font-size: 0.8em;
font-style: normal;
display: flex;
justify-content: space-between;
width: 100%;
}
h1 {
margin: 10px 0 10px 0;
font-weight: 500;
}
.bar {
width: 100%;
clear: both;
margin-bottom: 20px;
}
.bar-contents {
text-align: right;
}
.title {
float: right;
width: 220px;
border-top: 5px solid white;
border-bottom: 5px solid white;
text-align: center;
margin-top: 10px;
margin-bottom: 20px;
}
.toggle-text {
position: absolute;
bottom: 0px;
font-size: 0.8em;
font-style: normal;
margin: 10px;
visibility: hidden;
}
li {
list-style: none;
padding-top: 10px;
}
video {
height: 600px;
width: 600px;
opacity: 0.7;
}