-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (70 loc) · 1.46 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
* {
-webkit-font-smoothing: antialiased;
-webkit-user-select: none;
-moz-user-select: -moz-none;
user-select: none;
margin: 0 auto;
font-family: sans-serif;
overflow: hidden;
}
body {
background-color: none;
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
height: 100%;
place-items: center center;
margin: 0 auto;
font-family: 'Roboto Mono', monospace;
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
z-index: -100;
}
#botonmenu{
position: absolute;
top: 45%;
left: 30%;
max-width: fit-content;
display: block;
background-color: transparent;
border: none;
z-index: 900;
}
#botonmenu:hover{
filter: drop-shadow(0 0 0.5rem rgb(255, 255, 255));
}
.readinglink{
position: absolute;
top: 1%;
right: 1%;
display: block;
background-color: transparent;
border: none;
z-index: 900;
max-width: 100%;
height: auto;
}
.hover {
pointer-events: none;
display: inline-block;
position: absolute;
}
.readingimg {
display: none;
width: 40%;
}
.readinglink:hover+.readingimg {
display: inline-block;
position:absolute;
right: 0%;
z-index: 1000;
width: auto;
height: 100%;
}