diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-29 21:33:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 21:33:57 -0500 |
commit | 773d67e75a3d01df5ad492896e19f5029e6e35d2 (patch) | |
tree | 3970596a45461adc739cef7b1017ac871bd71db2 /ext/bg/welcome.html | |
parent | a23c94fb02d22f1dad9a65d54a819561cce9f053 (diff) |
Split material css (#1175)
* Separate material styles into a separate file
* Improve action button styles
* Rename --font-size-default to --font-size
* Remove px units
* Remove some material vars
* Fix some variable names
* Define variables
* Remove --shadow-vertical
* Revert name change
* Move var
* Rename var
* Update vars
* Remove redundant vars
* Update search styles
* Update styles
* Update colors
* Update variable names
* Include material.css on float.html page
Diffstat (limited to 'ext/bg/welcome.html')
-rw-r--r-- | ext/bg/welcome.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/bg/welcome.html b/ext/bg/welcome.html index 98a3167a..86c8ee83 100644 --- a/ext/bg/welcome.html +++ b/ext/bg/welcome.html @@ -11,13 +11,14 @@ <link rel="icon" type="image/png" href="/mixed/img/icon48.png" sizes="48x48"> <link rel="icon" type="image/png" href="/mixed/img/icon64.png" sizes="64x64"> <link rel="icon" type="image/png" href="/mixed/img/icon128.png" sizes="128x128"> + <link rel="stylesheet" type="text/css" href="/mixed/css/material.css"> <link rel="stylesheet" type="text/css" href="/bg/css/settings2.css"> <style> .inline-icon { position: relative; - width: calc(1em * (16 / var(--font-size-default-no-units))); - height: calc(1em * (16 / var(--font-size-default-no-units))); - top: calc(1em * (3 / var(--font-size-default-no-units))); + width: calc(1em * (16 / var(--font-size-no-units))); + height: calc(1em * (16 / var(--font-size-no-units))); + top: calc(1em * (3 / var(--font-size-no-units))); } </style> </head> |