summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/welcome/shared/splash_pages_shared_css.html
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/welcome/shared/splash_pages_shared_css.html')
-rw-r--r--chromium/chrome/browser/resources/welcome/shared/splash_pages_shared_css.html95
1 files changed, 44 insertions, 51 deletions
diff --git a/chromium/chrome/browser/resources/welcome/shared/splash_pages_shared_css.html b/chromium/chrome/browser/resources/welcome/shared/splash_pages_shared_css.html
index 3d662b4dac4..8d2c1b78f0d 100644
--- a/chromium/chrome/browser/resources/welcome/shared/splash_pages_shared_css.html
+++ b/chromium/chrome/browser/resources/welcome/shared/splash_pages_shared_css.html
@@ -1,55 +1,48 @@
-<link rel="import" href="chrome://resources/html/polymer.html">
+<template>
+ <style include="navi-colors-css">
+ #container {
+ align-items: center;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ margin: auto;
+ min-height: 100%;
+ min-width: 800px;
+ position: relative;
+ }
-<link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
-<link rel="import" href="navi_colors_css.html">
+ h1 {
+ color: var(--cr-primary-text-color);
+ font-size: 4rem;
+ margin-bottom: 40px;
+ margin-top: 16px;
+ text-align: center;
+ }
-<dom-module id="splash-pages-shared-css">
- <template>
- <style include="navi-colors-css">
- #container {
- align-items: center;
- display: flex;
- flex-direction: column;
- justify-content: center;
- margin: auto;
- min-height: 100%;
- min-width: 800px;
- position: relative;
- }
+ h2 {
+ color: var(--cr-secondary-text-color);
+ font-size: 1.5rem;
+ font-weight: 500;
+ line-height: 2.25rem;
+ margin: 0;
+ opacity: 0.8;
+ text-align: center;
+ }
- h1 {
- color: var(--cr-primary-text-color);
- font-size: 4rem;
- margin-bottom: 40px;
- margin-top: 16px;
- text-align: center;
- }
+ cr-button {
+ font-size: 1rem;
+ height: 3rem;
+ padding-bottom: 12px;
+ padding-top: 12px;
+ text-align: center;
+ white-space: nowrap;
+ width: 256px;
+ }
- h2 {
- color: var(--cr-secondary-text-color);
- font-size: 1.5rem;
- font-weight: 500;
- line-height: 2.25rem;
- margin: 0;
- opacity: 0.8;
- text-align: center;
- }
-
- cr-button {
- font-size: 1rem;
- height: 3rem;
- padding-bottom: 12px;
- padding-top: 12px;
- text-align: center;
- white-space: nowrap;
- width: 256px;
- }
-
- .action-link {
- font-size: 1rem;
- font-weight: 500;
- margin-top: 24px;
- }
- </style>
- </template>
-</dom-module>
+ .action-link {
+ font-size: 1rem;
+ font-weight: 500;
+ margin-top: 24px;
+ }
+ </style>
+</template>