Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.18 KB | None | 0 0
  1.  html.Div(
  2.                 className="row header",
  3.                 id="app-header",
  4.                 style={"background-color": "#149739",
  5.                        "overflow": "hidden"},
  6.                 children=[
  7.                     html.Div(
  8.                         [
  9.                             html.Img(
  10.                                 src=app.get_asset_url("chuv-logo.png"),
  11.                                 className="logo",
  12.                                 style={"height": "80px"},
  13.                                 id="plotly-image",
  14.                             )
  15.                         ],
  16.                         className="three columns header_img",
  17.                     ),
  18.                     html.Div(
  19.                         [
  20.                             html.H3(
  21.                                 "CAM-AD t-SNE Explorer",
  22.                                 style={"color": "#f2f3f4"},
  23.                                 className="header_title",
  24.                                 id="app-title",
  25.                             )
  26.                         ],
  27.                         className="nine columns header_title_container",
  28.                     ),
  29.                 ],
  30.             ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement