-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (158 loc) · 4.87 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="bedrock/button.css" />
<link rel="stylesheet" type="text/css" href="bedrock/card.css" />
<link rel="stylesheet" type="text/css" href="bedrock/checkbox.css" />
<link rel="stylesheet" type="text/css" href="bedrock/dropdown.css" />
<link rel="stylesheet" type="text/css" href="bedrock/input.css" />
<link rel="stylesheet" type="text/css" href="bedrock/radio.css" />
<link rel="stylesheet" type="text/css" href="bedrock/range.css" />
<link rel="stylesheet" type="text/css" href="bedrock/select.css" />
<link rel="stylesheet" type="text/css" href="common/font.css" />
<link rel="stylesheet" type="text/css" href="common/format.css" />
<script src="bedrock/script.js"></script>
<style>
body {
background: url(https://i.imgur.com/sfgRkHH.png);
font-family: Minecraft, Monospace;
color: white;
}
.row + .row {
margin-top: 30px;
}
code {
display: block;
margin-bottom: 8px;
}
</style>
</head>
<body class="bedrock">
<h1>selkit</h1>
<h3>Pixel perfect CSS for Minecraft websites.</h3>
<hr>
<h4>Examples</h4>
<div class="row">
<h5>Buttons</h5>
<div class="row">
<code><button>Button</button></code>
<button class="bedrock">Button</button>
</div>
<div class="row">
<code><button disabled>Button</button></code>
<button class="bedrock" disabled>Button</button>
</div>
<div class="row">
<code><button class="selected">Button</button></code>
<button class="bedrock selected">Button</button>
</div>
<div class="row">
<code><button class="dark">Button</button></code>
<button class="bedrock dark">Button</button>
</div>
</div>
<div class="row">
<h5>Inputs</h5>
<div class="row">
<code><input type="text" /></code>
<input class="bedrock" type="text" />
</div>
<div class="row">
<code><input type="text" placeholder="With a placeholder" /></code>
<input class="bedrock" type="text" placeholder="With a placeholder" />
</div>
<div class="row">
<code><input type="text" value="Disabled" disabled /></code>
<input class="bedrock" type="text" value="Disabled" disabled />
</div>
<div class="row">
<code><input type="password" /></code>
<input class="bedrock" type="password" />
</div>
<div class="row">
<code><input type="checkbox" /></code>
<input class="bedrock" type="checkbox" />
</div>
<div class="row">
<code><input type="checkbox" checked /></code>
<input class="bedrock" type="checkbox" checked />
</div>
<div class="row">
<code><input type="checkbox" disabled /></code>
<input class="bedrock" type="checkbox" disabled />
</div>
<div class="row">
<code><input type="radio" /></code>
<form>
<input class="bedrock" type="radio" name="radio" checked />
<input class="bedrock" type="radio" name="radio" />
<input class="bedrock" type="radio" name="radio" />
</form>
</div>
</div>
<div class="row">
<h5>Cards</h5>
<div class="card">
Title of the card
<div class="content">
<p class="light-purple">Content of the card</p>
<p class="red">Content of the card but red</p>
<p class="blue shadow">Blue with shadow</p>
</div>
</div>
<div class="card" style="margin-top:72px">
<ul class="tabs">
<li class="selected">First Tab</li>
<li>Second Tab</li>
<li>Third Tab</li>
</ul>
Title of the card
<div class="content">
Content of the card
</div>
</div>
</div>
<div class="row">
<h5>Dropdown</h5>
<div class="row dropdown">
<div class="bedrock-btn dropdown-toggle" style="width:100%" data-toggle="dropdown1">Dropdown</div>
<div id="dropdown1" class="dropdown-menu">
<p>Some data</p>
<p>Some more data</p>
</div>
</div>
<div class="row dropdown">
<div class="bedrock-btn dropdown-toggle" data-toggle="dropdown2">Choose an option</div>
<div id="dropdown2" class="dropdown-menu">
<form>
<div>
<input class="bedrock" id="option-a" type="radio" name="radio" checked />
<label for="option-a">Option A</label>
</div>
<div>
<input class="bedrock" id="option-b" type="radio" name="radio" />
<label for="option-b">Option B</label>
</div>
<div>
<input class="bedrock" id="option-c" type="radio" name="radio" />
<label for="option-c">Option C</label>
</div>
</form>
</div>
</div>
</div>
<div class="row">
<h5>Select</h5>
<select class="bedrock">
<option value="1">Option A</option>
<option value="2" disabled>Option B</option>
<option value="3">Option C</option>
</select>
</div>
<div class="row">
<h5>Range</h5>
<input type="range" class="bedrock" min="0" max="10" />
</div>
</body>
</html>