-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (58 loc) · 1.05 KB
/
Copy pathindex.html
File metadata and controls
59 lines (58 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>Mario</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
.row, .column {
padding: 0px;
margin: 0px;
height: 45px;
}
.red {
background-color: red;
}
.blue {
background-color: blue;
}
.beige {
background-color: beige;
}
.black {
background-color: black;
}
.yellow {
background-color: yellow;
}
.brown {
background-color: brown;
}
.none {
background-color: transparent;
}
@media (min-width: 576px) {
.row, .column {
height: 45px;
}
}
@media (min-width: 768px) {
.row, .column {
height: 60px;
}
}
@media (min-width: 992px) {
.row, .column {
height: 80px;
}
}
@media (min-width: 1200px) {
.row, .column {
height: 95px;
}
}
</style>
</head>
<body>
<!-- USE BOOTSTRAP'S CONTAINER, ROW, AND COLUMN CLASSES TO DRAW YOUR PIXEL ART! -->
</body>
</html>