-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
188 lines (166 loc) · 3.55 KB
/
Copy pathstyle.css
File metadata and controls
188 lines (166 loc) · 3.55 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/* Reset and Base Styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@font-face {
font-family: minecraft;
src: url(Minecraft.ttf);
}
body {
font-family: 'minecraft', sans-serif;
color: #fff;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
/* Uses a standard Minecraft dirt texture URL. Replace with your own image if preferred. */
background-image: url('https://textures.minecraft.net/texture/5135e07bd6a71ec999eb3fa43df65ef9b039cc6bc585e156475fb98939c4d9');
background-repeat: repeat;
background-size: 64px; /* Keeps the pixelated block look */
image-rendering: pixelated;
position: relative;
background-image: url("dirt.png");
background-repeat: repeat;
}
/* Dark overlay to make text highly readable over the busy background */
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.65);
z-index: 1;
}
/* Content Container */
.container {
position: relative;
z-index: 2;
max-width: 900px;
width: 90%;
text-align: center;
padding: 20px;
}
/* Typography */
header h1 {
font-size: 3rem;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'minecraft', sans-serif;
}
.highlight {
color: #5c8e32; /* Minecraft green grass color */
text-shadow: 2px 2px 0px #000;
}
.tagline {
font-size: 1.2rem;
color: #ddd;
margin-bottom: 40px;
}
/* IP Box Section */
.ip-box {
background: rgba(40, 30, 20, 0.85); /* Dark brown block feel */
border: 4px solid #4a3b2c;
border-radius: 8px;
padding: 30px;
display: inline-block;
margin-bottom: 40px;
box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}
.ip-box p {
font-size: 1.1rem;
margin-bottom: 10px;
color: #aaa;
vertical-align: middle;
}
.ip-address {
font-size: 2rem;
letter-spacing: 1px;
color: #fff;
margin-bottom: 20px;
background: rgba(0,0,0,0.4);
padding: 10px 20px;
border-radius: 4px;
}
.players {
vertical-align: middle;
}
.player-wrapper {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 1rem;
letter-spacing: 1px;
color: #fff;
margin-bottom: 20px;
background: rgba(0,0,0,0.4);
padding: 10px 20px;
border-radius: 4px;
vertical-align: middle;
}
img.default {
vertical-align: middle;
}
/* Button */
.btn {
background-color: #5c8e32;
color: white;
border: none;
border-bottom: 4px solid #3b5c20;
padding: 12px 30px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
border-radius: 4px;
text-transform: uppercase;
transition: background 0.2s ease;
}
.btn:hover {
background-color: #6da73b;
}
.btn:active {
border-bottom-width: 0px;
margin-top: 4px;
}
/* Features Grid */
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.card {
background: rgba(0, 0, 0, 0.5);
border: 2px solid rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 6px;
transition: transform 0.2s ease;
}
.card:hover {
transform: translateY(-5px);
border-color: #5c8e32;
}
.card h3 {
margin-bottom: 10px;
color: #5c8e32;
font-family: 'Monserrat', sans-serif;
}
.card p {
font-size: 0.95rem;
color: #ccc;
line-height: 1.5;
}
.info {
font-size: 0.95rem;
color: #ccc;
line-height: 1.5;
}
/* Footer */
footer {
font-size: 0.85rem;
color: #777;
margin-top: 20px;
}