From 1fa792d4c1c41ce070bfb727c335ba032e202640 Mon Sep 17 00:00:00 2001 From: D4708 Date: Wed, 26 May 2021 19:04:12 +0300 Subject: [PATCH] implement installation page --- css/common.css | 64 +++++++++++++++++++- index.html | 14 ++--- install.html | 159 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 228 insertions(+), 9 deletions(-) create mode 100644 install.html diff --git a/css/common.css b/css/common.css index c23f803..2c462d3 100644 --- a/css/common.css +++ b/css/common.css @@ -44,6 +44,14 @@ a, a:hover { background-color: #596374 } +.bg-c-101 { + background-color: #596a74 /* branding namespace reserved from 100-199 */ +} + +.bg-c-102 { + background-color: #5e5974 /* branding namespace reserved from 100-199 */ +} + .bg-img-1 { background-image: url('/image/bg-1.png') } @@ -65,6 +73,10 @@ a, a:hover { text-align: left } +.f-size-16 { + font-size: 16px +} + .f-size-18 { font-size: 18px } @@ -113,6 +125,16 @@ a.c-2:hover { color: #fff } +.c-3, +a.c-3:active, +a.c-3:visited { + color: #becae0 +} + +a.c-3:hover { + color: #fff +} + /* dimensions */ .w-33-100 { width: 33% @@ -131,6 +153,9 @@ a.c-2:hover { } /* paddings */ +.mw-680 { + max-width: 680px +} .mw-1024 { max-width: 1024px } @@ -140,6 +165,16 @@ a.c-2:hover { margin-right: auto } +.my-36 { + margin-top: 36px; + margin-bottom: 36px +} + +.my-48 { + margin-top: 48px; + margin-bottom: 48px +} + .my-100 { margin-top: 100px; margin-bottom: 100px @@ -183,6 +218,10 @@ a.c-2:hover { } /* positioning */ +.o-h { + overflow: hidden +} + .d-inline-block { display: inline-block } @@ -218,8 +257,8 @@ a.c-2:hover { } /* borders */ -.b-radius-4 { - border-radius: 4px +.b-r-3 { + border-radius: 3px } .b-1 { @@ -227,6 +266,11 @@ a.c-2:hover { border-style: solid } +.b-2 { + border-width: 1px; + border-style: dashed +} + .bb-1 { border-bottom-width: 1px; border-bottom-style: solid @@ -235,3 +279,19 @@ a.c-2:hover { .b-c-0 { border-color: #fff } + +.b-c-4 { + border-color: #ccc +} + +.b-c-101 { /* branding namespace reserved from 100-199 */ + border-color: #c7ffe9 +} + +.b-c-102 { /* branding namespace reserved from 100-199 */ + border-color: #dd92e4; +} + +.b-c-103 { /* branding namespace reserved from 100-199 */ + border-color: #9bb6da; +} diff --git a/index.html b/index.html index 44281a8..24e3d30 100644 --- a/index.html +++ b/index.html @@ -18,8 +18,8 @@