Commit 8b363701 authored by Alex Beregszaszi's avatar Alex Beregszaszi

Fix 0px -> 0 in css

parent 63706605
body {
padding: 0px;
padding: 0;
font-size: 12px;
color: #111111;
font-weight: normal;
......@@ -142,7 +142,7 @@ body {
width: 37em;
max-width: 80vw;
right: 0;
bottom: 0px;
bottom: 0;
overflow: auto;
box-sizing: border-box;
}
......
......@@ -157,9 +157,9 @@ header ul a:hover {
}
header ul a:active {
-webkit-box-shadow: inset 0px 2px 2px 0px #ddd;
-moz-box-shadow: inset 0px 2px 2px 0px #ddd;
box-shadow: inset 0px 2px 2px 0px #ddd;
-webkit-box-shadow: inset 0 2px 2px 0 #ddd;
-moz-box-shadow: inset 0 2px 2px 0 #ddd;
box-shadow: inset 0 2px 2px 0 #ddd;
}
strong {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment