-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (75 loc) · 2.67 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="minecraft.css">
</head>
<body>
<main class="mc-font">
<div class="chatbox mc-white mc-shadow">
<goldstargloww> this is a chatbox!<br>
<goldstargloww> this is just a div that's the width of chat
</div>
<ul class="chatlist mc-white mc-shadow">
<li class="fade25">
<goldstargloww> this is a chatlist!
</li>
<li class="fade50">
<goldstargloww> this more closely resembles minecraft chat
</li>
<li class="fade75">
<goldstargloww> you can make things fade out as if they've been there for a while
</li>
<li>
<goldstargloww> (there's only three opacities, but feel free to add your own)
</li>
<li>
<goldstargloww> and each message is a list item
</li>
<li>
<goldstargloww> i can't think of anything that'd be particularly useful for (apart from the fading)
</li>
<li>
<goldstargloww> but do with it what you will
</li>
</ul>
<div class="chat mc-white mc-shadow">
this is just chat!<br>
this one's a div with the background color and padding, and no restriction on width
</div>
<p class="mc-shadow center">
<span class="mc-black">black</span>
<span class="mc-dark_blue">dark_blue</span>
<span class="mc-dark_green">dark_green</span>
<span class="mc-dark_aqua">dark_aqua</span>
<br>
<span class="mc-dark_red">dark_red</span>
<span class="mc-dark_purple">dark_purple</span>
<span class="mc-gold">gold</span>
<span class="mc-gray">gray</span>
<br>
<span class="mc-dark_gray">dark_gray</span>
<span class="mc-blue">blue</span>
<span class="mc-green">green</span>
<span class="mc-aqua">aqua</span>
<br>
<span class="mc-red">red</span>
<span class="mc-light_purple">light_purple</span>
<span class="mc-yellow">yellow</span>
<span class="mc-white">white</span>
</p>
<div class="mc-shadow center">
<p class="mc-title mc-white">Title</p>
<p class="mc-subtitle mc-white">Subtitle</p>
</div>
<p class="mc-shadow center mc-white mc-title">
<i>italic text</i><br>
<b>bold text</b><br>
<s>strikethrough</s><br>
<u>underline</u><br>
</p>
</main>
</body>
</html>