blob: 1df641794c3d07c4b6b1a06e6e9083d6ed76937b (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
@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;
opacity: 0;
transition: 0.5s;
}
.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;
display: flex;
justify-content: space-between;
}
.link-collection a {
flex: 1;
text-align: center;
margin-right: 20px;
}
.link-collection a:last-child {
margin-right: 0;
}
img {
height: 100%;
}
.weather {
border-bottom: 1px solid var(--color1);
padding-bottom: 5px;
margin-bottom: 10px;
}
a {
color: var(--color2);
text-decoration: none;
}
|