Update index.html
This commit is contained in:
parent
78f650a66c
commit
614c4a5760
56
index.html
56
index.html
@ -6,6 +6,34 @@
|
||||
|
||||
</head>
|
||||
|
||||
<style>
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(6, 200px);
|
||||
grid-auto-rows: 32px;
|
||||
}
|
||||
|
||||
span {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
body {background: #222;}
|
||||
|
||||
a::before {
|
||||
content: "./";
|
||||
}
|
||||
|
||||
a {color: #ccc;
|
||||
border: 1px solid #666;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<body>
|
||||
|
||||
<span>
|
||||
@ -121,32 +149,4 @@
|
||||
|
||||
</body>
|
||||
|
||||
<style>
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(6, 200px);
|
||||
grid-auto-rows: 32px;
|
||||
}
|
||||
|
||||
span {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
body {background: #222;}
|
||||
|
||||
a::before {
|
||||
content: "./";
|
||||
}
|
||||
|
||||
a {color: #ccc;
|
||||
border: 1px solid #666;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user