Browse Source

removed global stylesheet from the original template

mj-deploy
Vašek Šraier 4 years ago
parent
commit
48743d936e
  1. 13
      frontend/public/editor.html
  2. BIN
      frontend/public/favicon.png
  3. 60
      frontend/public/global.css
  4. 13
      frontend/public/grafik.html

13
frontend/public/editor.html

@ -7,7 +7,18 @@
<title>Editor úloh</title>
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/global.css'>
<style>
html, body {
height: 100%;
}
body {
color: #333;
margin: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
</style>
<link rel='stylesheet' href='/build/editor.css'>
<script type="module" src='/build/editor.js'></script>

BIN
frontend/public/favicon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

60
frontend/public/global.css

@ -1,60 +0,0 @@
html, body {
height: 100%;
}
body {
color: #333;
margin: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
a {
color: rgb(0,100,200);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited {
color: rgb(0,80,160);
}
label {
display: block;
}
input, button, select, textarea {
font-family: inherit;
font-size: inherit;
-webkit-padding: 0.4em 0;
padding: 0.4em;
margin: 0 0 0.5em 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 2px;
}
input:disabled {
color: #ccc;
}
button {
color: #333;
background-color: #f4f4f4;
outline: none;
}
button:disabled {
color: #999;
}
button:not(:disabled):active {
background-color: #ddd;
}
button:focus {
border-color: #666;
}

13
frontend/public/grafik.html

@ -5,9 +5,18 @@
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>Graulohík</title>
<style>
html, body {
height: 100%;
}
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/global.css'>
body {
color: #333;
margin: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
</style>
<link rel='stylesheet' href='/build/bundle.css'>
<script type="module" src='/build/bundle.js'></script>