Embed window border style into html

This commit is contained in:
GHOSCHT 2021-06-30 13:44:03 +02:00
parent 39f2202c6a
commit ff3d51255d
2 changed files with 12 additions and 11 deletions

View file

@ -1,8 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<html
lang="en"
style="
border-style: solid;
border-color: #363636;
border-width: 1px;
box-sizing: border-box;
height: 100%;
border-bottom-style: hidden;
border-right-style: hidden;
"
>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<title>Light Control</title>
</head>
<body>

View file

@ -1,9 +0,0 @@
html {
border-style: solid;
border-color: #363636;
border-width: 1px;
box-sizing: border-box;
height: 100%;
border-bottom-style: hidden;
border-right-style: hidden;
}