-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmcpe.css
More file actions
63 lines (52 loc) · 1.08 KB
/
Copy pathmcpe.css
File metadata and controls
63 lines (52 loc) · 1.08 KB
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
@font-face {
font-family: minecraft;
src: url("res/minecraft.ttf");
}
body {
background-image: url("res/bg.png");
background-repeat: repeat;
color: white;
font-family: minecraft;
}
a {
color: white;
text-decoration: none;
}
#mcpe_pi_header {
text-align: center;
font-size: 150%;
}
#mcpe_project_index {
display: block;
position: absolute;
left: 50%;
transform: translate(-50%);
width: 70em;
}
.mcpe_project:hover {
background-image: url("res/entry_selected.png");
background-repeat: no-repeat;
background-size: 100% 100%;
}
.mcpe_project {
background-image: url("res/entry.png");
background-repeat: no-repeat;
background-size: 100% 100%;
white-space: nowrap;
padding-top: 2em;
padding-left: 3em;
padding-right: 3em;
padding-bottom: 2em;
margin: 2em;
text-align: center;
/* nearest neighbour rendering.. */
-ms-interpolation-mode: nearest-neighbor;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
.mcpe_project_name {
font-size: 160%;
}
.mcpe_project_desc {
font-size: 120%;
}