-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
54 lines (47 loc) · 1005 Bytes
/
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
@import "./new.css";
body {
background-image: linear-gradient(to right bottom, #2e2e2e, #4f4f4f);
background-attachment: fixed;
}
a#back {
font-size: 1.5rem;
color: white;
left: 50%;
transform: translateX(-50%);
text-shadow: 3px 1px var(--theme-clr);
position: absolute;
top: 0;
z-index: 99999;
transition: color 300ms, text-shadow 300ms, transform 300ms;
}
a#back:hover {
color: var(--theme-clr);
text-shadow: 0 0 4px;
transform: translateX(-50%) scale(1.05);
}
div.gameboy > a {
font-size: 1.5rem;
color: white;
text-decoration: transparent;
text-shadow: 3px 1px var(--theme-clr);
width: max-content;
display: block;
margin: 0 auto;
transition: color 300ms, text-shadow 300ms, transform 300ms;
}
div.gameboy > a:hover {
color: var(--theme-clr);
text-shadow: 0 0 4px;
transform: scale(1.05);
}
.container {
margin: 0 auto;
}
iframe {
margin: 3rem auto 0 auto;
padding: 0;
width: 80dvw;
height: 80dvh;
display: block;
border: none;
}