Update index.html

This commit is contained in:
hossein s. borhani 2022-03-14 15:00:05 +03:30 committed by GitHub
parent 78f650a66c
commit 614c4a5760
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>