blob: 2c72ef7c1d7813e456fc51cb98b35f7a0e390bce (
plain) (
blame)
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
|
@font-face {
font-family: "unifont";
src: url("unifont-12.0.01.woff2");
}
body {
font-family: "unifont";
background-color: var(--background);
color: var(--foreground);
padding: 0;
margin: 0;
font-size: 1vw;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.content {
flex: 0 1 auto;
border: 1px solid var(--color1);
padding: 45.5px;
}
@media screen and (max-width: 957px) {
.content {
padding: 50px;
}
.waifu {
height: 316px !important;
}
}
@media screen and (max-width: 749px) {
.content {
padding: 50px;
}
.waifu {
display: none;
}
}
.waifu {
flex: 0 2 0;
height: 416px;
border: 1px solid var(--color1);
}
.link-collection {
border-bottom: 1px solid var(--color1);
padding-bottom: 10px;
margin-bottom: 5px;
}
img {
height: 100%;
}
.weather {
border-bottom: 1px solid var(--color1);
padding-bottom: 5px;
margin-bottom: 10px;
}
a {
color: var(--color2);
}
|