Added rough SVG support. Added doctypes to all of my HTML, and tried to fix some CSS issues that happened as a result.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3223 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2016-04-30 18:28:33 +00:00
parent 25d97e5e3b
commit 0bd836e915
5 changed files with 57 additions and 38 deletions

View File

@ -1,24 +1,29 @@
html {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
body {
font-family: monospace;
background-color: #002b36;
color: #eee8d5;
}
#body {
display: flex;
flex-flow: column;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
.navigation {
height: auto;
width: 100%;
margin: 4px;
}
#terminals {
flex: 1;
flex-flow: column;
margin: 4px;
}
#logo {