-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaltstyles.css
95 lines (80 loc) · 1.53 KB
/
altstyles.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
body {
background-color: rgb(36, 33, 33);
}
.title_img {
/* border-radius: 15pt; */
width: 100%;
height: auto;
max-width: 1000pt;
}
.video-container {
position: relative;
overflow: hidden;
display: block;
height: 100%;
max-width: 100%;
/* calculate by aspect ratio (h / w * 100%) */
/* padding-bottom: 56.25%; */
/* width: 200px; */
/* max-height: 500px; */
/* margin-left: -12%; */
}
#video {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
transform: translateX(calc((100% - 100vw) / 2));
filter: sepia(0.8);
pointer-events: none;
}
.inner {
display: flex;
align-items: center;
justify-content: center;
flex-flow: column nowrap;
height: 100%;
position: relative;
z-index:1
}
.overlay {
display: flex;
align-items: center;
justify-content: center;
flex-flow: column nowrap;
position: absolute;
top: -5vh;
height: 100%;
width: 100%;
z-index:1;
}
.large{
font-size: 7vw;
}
.medium {
font-size: 2.5vw;
}
.white {
color: rgba(255, 255, 255, 0.88);
}
.shadowed {
text-shadow: black 1px 0 10px;
}
.small-margin {
margin: 15px;
}
header {
background: var(--base00);
background-color: rgba(25, 24, 24, 0.94);
top: 0;
left: 0;
width: 100%;
height: 40px;
position: absolute;
z-index: 10;
border-style: solid;
/* border-bottom-color: rgba(63, 58, 58, 0.645); */
border-width: 0;
/* border-bottom-width: 1px; */
}