Summary: * Sections on main page. * Use std algorithm for equality check in example. * Add tree view on left side. * Add extra CSS sheet to restrict content width. * Add mild background color. * Restrict alphabetic indexes to 1 column. * Round corners of content boxes. * Rename example to CUDASaxpy.cpp. * Add CUDASaxpy.cpp to "Examples" section. Reviewers: jprice Subscribers: parallel_libs-commits Differential Revision: https://reviews.llvm.org/D24198 llvm-svn: 280511
21 lines
304 B
CSS
21 lines
304 B
CSS
body {
|
|
background-color: #e0e0eb;
|
|
}
|
|
|
|
div.header {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 60em;
|
|
padding-left: 2em;
|
|
padding-right: 2em;
|
|
}
|
|
|
|
div.contents {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 60em;
|
|
background-color: white;
|
|
padding: 2em;
|
|
border-radius: 1em;
|
|
}
|