Some design fixes
This commit is contained in:
parent
1ba6f64ee2
commit
84d1840b92
@ -8,8 +8,7 @@
|
|||||||
}
|
}
|
||||||
function createButton($btname,$class,$func,$title) {
|
function createButton($btname,$class,$func,$title) {
|
||||||
?>
|
?>
|
||||||
<div class="btn <?=$class?>" onclick="<?=$func?>;" title="<?=$title?>"><?=$btname?></div>
|
<input class="btn <?=$class?>" onclick="<?=$func?>;" type="submit" value="<?=$btname;?>">
|
||||||
<!-- <input name="stack" type="submit" value="<?=$btname;?>" class="btn <?=$class?>" onclick="<?=$func?>;"> -->
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
@ -21,6 +20,7 @@
|
|||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
|
<!-- Yandex.Metrika counter --> <script type="text/javascript" > (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)}; m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)}) (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym"); ym(67775113, "init", { clickmap:true, trackLinks:true, accurateTrackBounce:true, webvisor:true, trackHash:true }); </script> <noscript><div><img src="https://mc.yandex.ru/watch/67775113" style="position:absolute; left:-9999px;" alt="" /></div></noscript> <!-- /Yandex.Metrika counter -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="calc">
|
<div class="calc">
|
||||||
|
|||||||
@ -18,8 +18,6 @@ body{
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: #324a5e;
|
background: #324a5e;
|
||||||
font-family: "Comic Sans MS";
|
|
||||||
/*overflow: hidden;*/
|
|
||||||
}
|
}
|
||||||
#prompt{
|
#prompt{
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -36,6 +34,7 @@ body{
|
|||||||
color: #324a5e;
|
color: #324a5e;
|
||||||
text-shadow: 0 0 5px white;
|
text-shadow: 0 0 5px white;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
font-family: "Comic Sans MS";
|
||||||
}
|
}
|
||||||
.hidd{
|
.hidd{
|
||||||
display: none;
|
display: none;
|
||||||
@ -58,6 +57,7 @@ body{
|
|||||||
color: #293c4d;
|
color: #293c4d;
|
||||||
background: white;
|
background: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
outline: 0;
|
||||||
}
|
}
|
||||||
.btn:hover{
|
.btn:hover{
|
||||||
box-shadow: 0 0 10px white;
|
box-shadow: 0 0 10px white;
|
||||||
|
|||||||
Reference in New Issue
Block a user