HTML fixes: close a tag, replace 0px with 0

This commit is contained in:
tophf 2015-03-15 06:35:30 +03:00
parent 3dd8eb1fc6
commit 6b710e9f56
2 changed files with 13 additions and 13 deletions

View File

@ -34,19 +34,19 @@
<style type="text/css"> <style type="text/css">
body { body {
margin: 0px; margin: 0;
font: 12px arial,sans-serif; font: 12px arial,sans-serif;
} }
#header { #header {
height: 100%; height: 100%;
width: 250px; width: 250px;
position: fixed; position: fixed;
top: 0px; top: 0;
padding: 15px; padding: 15px;
border-right: 1px dashed #AAA; border-right: 1px dashed #AAA;
} }
.notmac #header { .notmac #header {
-webkit-box-shadow: 0px 0px 50px -18px black; -webkit-box-shadow: 0 0 50px -18px black;
} }
#sections { #sections {
padding-left: 290px; padding-left: 290px;
@ -62,7 +62,7 @@
} }
#sections > div { #sections > div {
margin: 10px; margin: 10px;
padding: 0px 15px; padding: 0 15px;
} }
#sections > div:not(:first-child) { #sections > div:not(:first-child) {
border-top: 2px solid black; border-top: 2px solid black;
@ -157,11 +157,11 @@
} }
#sections { #sections {
padding-left: 0px; padding-left: 0;
} }
#sections > div { #sections > div {
padding: 0px; padding: 0;
} }
#sections-heading { #sections-heading {
@ -193,7 +193,7 @@
<div id="header"> <div id="header">
<h1 id="heading"></h1> <h1 id="heading"></h1>
<section id="basic-info"> <section id="basic-info">
<div><label for="name" id="name-label"></label><input id="name"><div> <div><label for="name" id="name-label"></label><input id="name"></div>
<div><label for="enabled" id="enabled-label"></label><input type="checkbox" id="enabled"></div> <div><label for="enabled" id="enabled-label"></label><input type="checkbox" id="enabled"></div>
</section> </section>
<button id="to-mozilla"></button><img id="to-mozilla-help" src="help.png"><br><br> <button id="to-mozilla"></button><img id="to-mozilla-help" src="help.png"><br><br>

View File

@ -3,7 +3,7 @@
<title></title> <title></title>
<style> <style>
body { body {
margin: 0px; margin: 0;
font: 12px arial,sans-serif; font: 12px arial,sans-serif;
} }
a, a:visited { a, a:visited {
@ -17,12 +17,12 @@
height: 100%; height: 100%;
width: 250px; width: 250px;
position: fixed; position: fixed;
top: 0px; top: 0;
padding: 15px; padding: 15px;
border-right: 1px dashed #AAA; border-right: 1px dashed #AAA;
} }
#header { #header {
-webkit-box-shadow: 0px 0px 50px -18px black; -webkit-box-shadow: 0 0 50px -18px black;
} }
#installed { #installed {
position: relative; position: relative;
@ -30,7 +30,7 @@
} }
[style-id] { [style-id] {
margin: 10px; margin: 10px;
padding: 0px 15px; padding: 0 15px;
} }
[style-id] { [style-id] {
border-top: 2px solid gray; border-top: 2px solid gray;
@ -102,11 +102,11 @@
} }
#installed { #installed {
margin-left: 0px; margin-left: 0;
} }
[style-id] { [style-id] {
margin: 0px; margin: 0;
} }
} }