9e3a61f149
web app files into the VM binary. create_resources.py takes a list of resources and writes each as a byte array, then builds a resource table. resources.h defines a simple lookup for these arrays, which vmstats uses. Review URL: https://codereview.chromium.org//12377099 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@19569 260f80e4-7a28-3924-810f-c04153c831b5
47 lines
616 B
CSS
47 lines
616 B
CSS
|
|
body {
|
|
background-color: #F8F8F8;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
line-height: 1.2em;
|
|
margin: 15px;
|
|
}
|
|
|
|
h1, p {
|
|
color: #333;
|
|
}
|
|
|
|
#vmstats {
|
|
width: 100%;
|
|
height: 500px;
|
|
position: relative;
|
|
border: 1px solid #ccc;
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
}
|
|
|
|
#dashboard {
|
|
font-size: 12pt;
|
|
text-align: left;
|
|
margin: 20px;
|
|
}
|
|
|
|
#graph {
|
|
font-size: 12pt;
|
|
text-align: left;
|
|
}
|
|
|
|
.isolate_list {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.isolate_details {
|
|
visibility:visible;
|
|
}
|
|
|
|
.isolate_details_hidden {
|
|
visibility:hidden;
|
|
}
|