Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/le0pard/pgtune.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorAlexey Vasiliev <leopard.not.a@gmail.com>2022-02-12 16:28:04 +0300
committerAlexey Vasiliev <leopard.not.a@gmail.com>2022-02-12 16:28:04 +0300
commitaf1cd2cf3e6c5a3b934580f30e55566c510fa68c (patch)
treea13d5f6bae5da2c30090474b595238a157c99a1a /assets
parentc6d4ac16f5f0a2bb20b39012de6a3ac94555077e (diff)
remove postcss-browser-reporter and rucksack-css
Diffstat (limited to 'assets')
-rw-r--r--assets/css/app.css17
1 files changed, 15 insertions, 2 deletions
diff --git a/assets/css/app.css b/assets/css/app.css
index e6f8648..a4c3b1f 100644
--- a/assets/css/app.css
+++ b/assets/css/app.css
@@ -28,9 +28,22 @@
--buttonHover: #021014;
}
+:root {
+ font-size: 18px;
+}
+
+@media (min-width: 420px) and (max-width: 980px) {
+ :root {
+ font-size: calc( 18px + (22 - 18) * ( (100vw - 420px) / ( 980 - 420) ));
+ }
+}
+@media (min-width: 980px) {
+ :root {
+ font-size: 22px;
+ }
+}
+
html {
- font-size: responsive 18px 22px;
- font-range: 420px 980px;
background-color: var(--headsColor);
color: var(--baseColor);
}