chromium/chrome/browser/resources/chromeos/remote_maintenance_curtain/main.html

<!--
Copyright 2023 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<!doctype html>
<html dir="$i18n{textdirection}" lang="$i18n{language}" class="jelly-enabled">


<head>
  <meta charset="utf-8">

  <link rel="stylesheet"
    href="chrome://resources/chromeos/colors/cros_styles.css">
  <link rel="stylesheet" href="chrome://theme/colors.css?sets=sys">
  <link rel="stylesheet" href="./oobe.css">
  <link rel="stylesheet" href="./oobe_screen.css">

  <script type="module" src='./curtain_screen.js'></script>
</head>

<custom-style>
  <style include="oobe-flex-layout-styles"></style>
</custom-style>

<body class="oobe-display chromeos" style="font-family:$i18n{fontfamily}">
  <div id="scroll-container">
    <div id="outer-container" class="layout vertical">
      <div class="oobe-vertical-margin"></div>
      <div id="oobe" class="">
        <div id="inner-container" class="down">
          <curtain-screen></curtain-screen>
        </div>
      </div>
      <div class="oobe-vertical-margin"></div>
    </div>
  </div>
</body>

</html>