-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.css
127 lines (126 loc) · 2.22 KB
/
theme.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:[email protected]&display=swap");
a:link {
color: cyan;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: pink;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: hotpink;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
body {
/* Because I can*/
font-family: "Pixelify Sans";
margin: 0;
padding: 0;
color: white;
z-index: 3;
}
header {
color: white;
padding: 10px 0;
text-align: center;
}
.half-dark {
background: #0000007f;
position: fixed;
z-index: 0;
left: 0;
right: 0;
bottom: 0;
top: 0;
}
.image-container {
text-align: center;
size: cover;
position: relative;
z-index: 1;
}
.text {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 20px;
position: relative;
z-index: 1;
padding: 5px;
p {
text-align: center;
}
&:has(.pages) {
padding: 0;
}
}
.tile {
width: 100px;
height: 100px;
background-size: cover;
overflow: hidden;
}
#background-container {
grid-template-columns: repeat(auto-fill, 100px);
grid-template-rows: repeat(auto-fill, 100px);
width: 100%;
height: 100%;
background-size: cover;
position: fixed;
top: 0;
left: 0;
z-index: 0;
pointer-events: none;
overflow: visible;
display: flex;
flex-wrap: nowrap;
}
#title {
max-width: 100%;
height: auto;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.pages {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
button[class$="button"] {
font-family: "Pixelify Sans";
margin: 10px;
width: 190px;
height: 80px;
font-size: 20px;
padding: 7.5px 15px;
background-repeat: repeat;
border-width: 4px;
cursor: pointer;
background-size: 36px 36px;
text-decoration: bold;
}
.bpbutton {
background: url("others/deepslate.png");
}
.ctbutton {
background: url("others/plank.png");
}
.docbutton {
background: url("others/bookshelf.png");
}
.rpbutton {
background: url("others/stone.png");
}
.discobutton {
background: url("others/discord.png");
}